/* Tun Tun Recovery — base styles */
:root {
  --bg: #f4efe6;
  --bg-deep: #ebe3d3;
  --paper: #faf6ee;
  --ink: #1f2a22;
  --ink-soft: #3d4a40;
  --muted: #6f7a6f;
  --line: #d8cfbb;
  --line-soft: #e6dfcd;
  --accent: #2d4a35;        /* jungle green */
  --accent-deep: #1a2e21;
  --accent-soft: #4a6b51;
  --clay: #b8643e;          /* warm terracotta */
  --clay-soft: #d68a5e;
  --sand: #d9c9a8;
  --gold: #b69552;
  --display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* TYPE */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--clay);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
h1.display { font-size: clamp(56px, 7.5vw, 124px); }
h2.display { font-size: clamp(40px, 5.4vw, 80px); }
h3.display { font-size: clamp(28px, 3vw, 44px); }

.body-lg { font-size: 19px; line-height: 1.55; color: var(--ink-soft); font-weight: 380; }
.body { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.small { font-size: 13px; color: var(--muted); }

/* LAYOUT */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
.wrap-narrow { max-width: 1100px; margin: 0 auto; padding: 0 56px; }
section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* PHOTO PLACEHOLDER */
.photo {
  position: relative;
  background: linear-gradient(135deg, #c9bda3 0%, #a89c80 100%);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(135deg, #c9bda3 0%, #8c8268 100%);
  overflow: hidden;
  border-radius: 2px;
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,240,210,0.25), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(40,60,40,0.25), transparent 60%);
  pointer-events: none;
}
.photo .caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}
.photo .caption .tag { opacity: 0.7; }
.photo.jungle {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px),
    linear-gradient(160deg, #2d4a35 0%, #15291c 100%);
}
.photo.water {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(180deg, #6a8d9a 0%, #2e4a55 100%);
}
.photo.sand {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(160deg, #e0cfa8 0%, #b09775 100%);
}
.photo.dusk {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px),
    linear-gradient(160deg, #c87e52 0%, #5a3a2d 100%);
}
.photo.deep {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 14px),
    linear-gradient(160deg, #3d4a40 0%, #1f2a22 100%);
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-clay {
  background: var(--clay);
  color: var(--paper);
}
.btn-clay:hover { background: #a35633; }
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo .mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .mark::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--clay);
  position: absolute;
  bottom: 4px; right: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 450;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* CARDS / GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--paper);
  border-radius: 4px;
  padding: 36px;
  border: 1px solid var(--line-soft);
}

/* PATHWAY CARD */
.pathway {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  padding: 44px;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pathway:hover { transform: translateY(-4px); }
.pathway::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.pathway > * { position: relative; z-index: 2; }
.pathway .photo {
  position: absolute; inset: 0; z-index: 0;
  border-radius: 0;
}
.pathway-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: auto;
  padding-bottom: 280px;
}
.pathway h3.display {
  color: var(--paper);
  margin: 0 0 14px 0;
  max-width: 90%;
}
.pathway p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 480px;
  margin: 0 0 24px 0;
}
.pathway .pathway-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: gap 0.25s;
}
.pathway:hover .pathway-link { gap: 16px; }

/* AMENITY */
.amenity {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.amenity .photo { aspect-ratio: 4/3; border-radius: 0; }
.amenity-body { padding: 24px 26px 28px; }
.amenity-body .name {
  font-family: var(--display);
  font-size: 26px;
  margin: 0 0 6px 0;
  line-height: 1.1;
}
.amenity-body .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* PROGRAM ROW */
.program-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 80px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  transition: padding 0.3s;
}
.program-row:hover {
  padding-left: 12px;
  padding-right: 12px;
}
.program-row .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.program-row .title {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  margin: 0;
}
.program-row .desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.program-row .chevron {
  font-family: var(--display);
  font-size: 28px;
  color: var(--accent);
  text-align: right;
  transition: transform 0.25s;
}
.program-row:hover .chevron { transform: translateX(6px); }

/* STAT */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.stat .num sup { font-size: 24px; vertical-align: super; }
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* TESTIMONIAL */
.quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.quote::before { content: '“'; color: var(--clay); margin-right: 4px; }
.quote::after { content: '”'; color: var(--clay); margin-left: 2px; }

/* TEAM */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-card .photo { aspect-ratio: 4/5; }
.team-card .name {
  font-family: var(--display);
  font-size: 22px;
  margin: 0;
}
.team-card .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 0 0;
}

/* SECTION HEADER */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .lede { color: var(--ink-soft); font-size: 17px; line-height: 1.5; max-width: 460px; }

/* DARK SECTION */
.dark {
  background: var(--accent-deep);
  color: var(--paper);
}
.dark .display { color: var(--paper); }
.dark .display em { color: var(--clay-soft); }
.dark .eyebrow { color: var(--clay-soft); }
.dark .body-lg { color: rgba(255,255,255,0.78); }
.dark .body { color: rgba(255,255,255,0.7); }
.dark .small { color: rgba(255,255,255,0.55); }
.dark .stat-row { border-color: rgba(255,255,255,0.18); }
.dark .stat { border-color: rgba(255,255,255,0.18); }
.dark .stat .num { color: var(--clay-soft); }
.dark .stat .label { color: rgba(255,255,255,0.6); }
.dark .program-row { border-color: rgba(255,255,255,0.16); }
.dark .program-row .num { color: rgba(255,255,255,0.5); }
.dark .program-row .desc { color: rgba(255,255,255,0.72); }
.dark .program-row .chevron { color: var(--clay-soft); }
.dark .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.dark .btn-ghost:hover { border-color: var(--clay-soft); color: var(--clay-soft); }
.dark .divider { background: rgba(255,255,255,0.18); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .photo {
  width: 100%; height: 100%;
  border-radius: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,42,34,0.25) 0%, rgba(31,42,34,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  color: var(--paper);
}
.hero-content .eyebrow {
  color: rgba(255,255,255,0.85);
}
.hero-content .eyebrow .dot { background: var(--clay-soft); }
.hero h1 {
  margin: 24px 0 32px 0;
  color: var(--paper);
  max-width: 16ch;
}
.hero h1 em { color: var(--clay-soft); font-style: italic; }
.hero-sub {
  font-size: 19px;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 44px 0;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  bottom: 40px;
  right: 56px;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.hero-meta .coords { display: block; margin-bottom: 6px; }
.hero-meta .loc { color: var(--paper); font-size: 13px; }

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 64px;
  animation: marquee 50s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink-soft);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee span::after {
  content: '✦';
  color: var(--clay);
  font-style: normal;
  font-size: 12px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FEATURE STRIP */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-strip .feat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.feature-strip .feat:last-child { border-right: none; }
.feature-strip .feat .ico {
  width: 28px; height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 14px;
}
.feature-strip .feat h4 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 6px 0;
  font-weight: 400;
}
.feature-strip .feat p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* DAY / SCHEDULE */
.schedule {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.schedule-row {
  display: contents;
}
.schedule-row .time {
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.schedule-row .activity {
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}
.schedule-row .activity h5 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 4px 0;
  font-weight: 400;
}
.schedule-row .activity p {
  margin: 0; font-size: 13px; color: var(--muted);
}
.dark .schedule-row .time { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
.dark .schedule-row .activity { border-color: rgba(255,255,255,0.12); }
.dark .schedule-row .activity p { color: rgba(255,255,255,0.6); }

/* FORM */
.form {
  display: grid;
  gap: 18px;
}
.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input, .form textarea, .form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-bottom-color: var(--accent);
}
.form textarea { resize: vertical; min-height: 80px; }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* FOOTER */
footer {
  background: var(--accent-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
footer .display { color: var(--paper); }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
footer a:hover { color: var(--clay-soft); }
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px 0;
  font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer li a { font-size: 14px; }
footer .legal {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* CONTINUUM (clinical -> sober living arrow) */
.continuum {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.continuum .step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}
.continuum .step h4 {
  font-family: var(--display);
  font-size: 28px;
  margin: 12px 0 10px 0;
  font-weight: 400;
}
.continuum .arrow-mid {
  align-self: center;
  font-family: var(--display);
  font-size: 56px;
  color: var(--clay);
  font-style: italic;
}

/* ACCOMM HERO IMAGE STACK */
.image-stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 640px;
}
.image-stack .photo:nth-child(1) {
  grid-row: 1 / 3;
}

/* MOSAIC */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  grid-auto-rows: 180px;
}
.mosaic .photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic .photo:nth-child(2) { grid-column: span 2; }
.mosaic .photo:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.mosaic .photo:nth-child(4) { grid-column: span 2; }
.mosaic .photo:nth-child(5) { grid-column: span 3; }
.mosaic .photo:nth-child(6) { grid-column: span 3; }

/* SUBTLE TEXTURE */
.bg-paper { background: var(--paper); }
.bg-deep { background: var(--bg-deep); }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}
.faq-q h4 {
  font-family: var(--display);
  font-size: 26px;
  margin: 0;
  font-weight: 400;
}
.faq-q .plus {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-a.open { max-height: 400px; margin-top: 16px; }
.faq-a p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 70ch; margin: 0; }

/* RESPONSIVE (basic) */
@media (max-width: 900px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 80px 0; }
  .image-stack { grid-template-columns: 1fr; height: auto; grid-auto-rows: 280px; }
  .image-stack .photo:nth-child(1) { grid-row: auto; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip .feat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .program-row { grid-template-columns: 50px 1fr 30px; }
  .program-row .desc { grid-column: 2 / 4; }
  .continuum { grid-template-columns: 1fr; }
  .continuum .arrow-mid { transform: rotate(90deg); padding: 8px 0; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic .photo { grid-column: span 1 !important; grid-row: span 1 !important; }
  footer .grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { display: none; }
}
