:root {
  --bone: #F5F1EA;
  --bone-2: #ECE5D6;
  --bone-3: #DCD2BE;
  --jungle: #1F2D24;
  --jungle-2: #2C3A2E;
  --jungle-3: #3D4F40;
  --moss: #5A6E55;
  --terracotta: #C66B3D;
  --terracotta-deep: #A8552B;
  --bronze: #8A6428;
  --ink: #1A1A1A;
  --ink-soft: #4A4A48;
  --ink-mute: #7A7670;
  --line: rgba(26, 26, 26, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--terracotta); color: var(--bone); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 60, "WONK" 0;
}

a { color: var(--jungle); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

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

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1320px; margin: 0 auto;
  padding-left: max(40px, env(safe-area-inset-left));
  padding-right: max(40px, env(safe-area-inset-right));
}
@media (max-width: 720px) {
  .container { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
}

/* Lang visibility, only the active language is rendered */
[data-lang="en"] .lang-es,
[data-lang="es"] .lang-en { display: none; }

/* ============ NAV ============ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
nav.topbar .inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto;
  padding: 14px max(40px, env(safe-area-inset-left)) 14px max(40px, env(safe-area-inset-right));
  gap: 12px;
}
nav.topbar .brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  color: var(--jungle); letter-spacing: -0.01em; flex-shrink: 0;
}
nav.topbar .brand img { height: 44px; }
nav.topbar ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav.topbar ul a {
  color: var(--ink-soft); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
nav.topbar ul a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px; background: var(--terracotta); transition: all 0.25s;
}
nav.topbar ul a:hover { color: var(--jungle); }
nav.topbar ul a:hover::after { width: 100%; left: 0; }
nav.topbar ul a.nav-shop {
  color: var(--terracotta); font-weight: 600;
}
nav.topbar ul a.nav-shop:hover { color: var(--terracotta-deep); }
nav.topbar ul a.nav-shop::after { background: var(--terracotta); }
.mobile-menu a.nav-shop { color: var(--terracotta); font-weight: 600; }

.actions-cluster { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line);
  border-radius: 999px; overflow: hidden; padding: 2px;
  background: rgba(245, 241, 234, 0.6);
}
.lang-toggle button {
  background: none; border: none; cursor: pointer; font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; padding: 6px 11px; color: var(--ink-mute);
  letter-spacing: 0.06em; border-radius: 999px; font-weight: 500;
  transition: all 0.2s;
}
.lang-toggle button.active { background: var(--jungle); color: var(--bone); }

nav.topbar .cta {
  background: var(--jungle); color: var(--bone);
  padding: 11px 22px; border-radius: 999px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
nav.topbar .cta:hover { background: var(--terracotta); color: var(--bone); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; padding: 0;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--jungle);
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 21px; }

@media (max-width: 1080px) {
  nav.topbar ul { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  nav.topbar .inner { padding: 10px 16px; }
  nav.topbar .cta { display: none; }
  nav.topbar .brand img { height: 36px; }
  nav.topbar .brand span { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 22, 18, 0.4) 0%, rgba(15, 22, 18, 0.15) 35%, rgba(15, 22, 18, 0.5) 75%, rgba(15, 22, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 22, 18, 0.85) 0%, rgba(15, 22, 18, 0.55) 35%, rgba(15, 22, 18, 0.2) 60%, rgba(15, 22, 18, 0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 0 60px;
  color: var(--bone);
}
.hero-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 24px; font-weight: 500;
}
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); }
.hero h1 {
  font-size: clamp(36px, 9vw, 132px);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 28px;
  font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--terracotta);
  font-weight: 300;
}
.hero p.lead {
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(245, 241, 234, 0.95);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.25s;
  font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--bone); }
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); color: var(--bone); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid rgba(245, 241, 234, 0.4);
}
.btn-ghost:hover { background: var(--bone); color: var(--jungle); }
.btn-dark { background: var(--jungle); color: var(--bone); }
.btn-dark:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 30px; right: 40px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 241, 234, 0.65);
}
.hero-scroll-line { width: 60px; height: 1px; background: rgba(245, 241, 234, 0.4); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
  background: var(--terracotta);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }
@media (max-width: 720px) {
  .hero-scroll { display: none; }
  .hero-content { padding: 60px 0 50px; }
  .hero h1 { font-size: clamp(34px, 11vw, 56px); max-width: 100%; }
  .hero p.lead { margin-bottom: 28px; max-width: 100%; }
  .hero-meta { font-size: 10px; gap: 8px; }
  .btn { padding: 13px 22px; font-size: 12.5px; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--jungle); color: var(--bone);
  padding: 22px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  border-bottom: 1px solid rgba(245, 241, 234, 0.08);
}
.marquee-row {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 18px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 max(40px, env(safe-area-inset-left));
}
.cred {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: 0.04em; color: rgba(245, 241, 234, 0.85);
}
.cred strong {
  font-family: 'Fraunces', serif; font-weight: 500; color: var(--terracotta);
  font-style: italic; font-size: 16px;
}
.cred .divider { color: rgba(245, 241, 234, 0.3); }
@media (max-width: 720px) {
  .marquee-row { gap: 10px 18px; }
  .cred { font-size: 11.5px; gap: 6px; }
  .cred strong { font-size: 14px; }
  .divider { display: none; }
}

/* ============ SECTION FRAME ============ */
section { padding: 130px 0; position: relative; }
@media (max-width: 960px) { section { padding: 90px 0; } }
@media (max-width: 600px) { section { padding: 70px 0; } }

.eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13.5px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--terracotta); margin-bottom: 22px;
}
.section-head { max-width: 760px; margin-bottom: 70px; }
@media (max-width: 600px) { .section-head { margin-bottom: 44px; } }
.section-head .lede {
  font-size: clamp(30px, 4.6vw, 64px);
  color: var(--jungle);
  margin-bottom: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.section-head .lede em {
  font-style: italic; font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--terracotta);
}
.section-head .sub {
  font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-soft); line-height: 1.6;
  max-width: 600px;
}

/* ============ HERITAGE ============ */
.heritage { background: var(--bone); }
.heritage .layout {
  display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: center;
}
.heritage .photo-wrap { position: relative; }
.heritage .photo-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 4px; filter: contrast(1.05) saturate(1.05);
}
.heritage .quote-card {
  position: absolute; bottom: -40px; right: -40px;
  background: var(--bone); padding: 28px;
  max-width: 320px;
  border-left: 3px solid var(--terracotta);
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 17px; line-height: 1.5; color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(31, 45, 36, 0.18);
}
.heritage .quote-card cite {
  display: block; margin-top: 14px; font-size: 11px;
  font-family: 'IBM Plex Mono', monospace; font-style: normal;
  color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase;
}
.heritage .copy h2 {
  font-size: clamp(34px, 5vw, 72px);
  color: var(--jungle); margin-bottom: 28px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.heritage .copy h2 em {
  font-style: italic; font-weight: 300;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--terracotta);
}
.heritage .copy p {
  font-size: 16.5px; color: var(--ink-soft); margin-bottom: 18px;
  line-height: 1.65;
}
.heritage .stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line);
}
.heritage .stats .stat strong {
  display: block; font-family: 'Fraunces', serif; font-size: 42px;
  font-weight: 400; color: var(--jungle); line-height: 1; margin-bottom: 6px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.heritage .stats .stat span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 960px) {
  .heritage .layout { grid-template-columns: 1fr; gap: 56px; }
  .heritage .quote-card { bottom: -24px; right: 16px; max-width: 280px; padding: 22px; font-size: 15px; }
  .heritage .stats { gap: 14px; }
  .heritage .stats .stat strong { font-size: 30px; }
}

/* ============ INVENTORY ============ */
.inventory { background: var(--bone-2); }
.inv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1080px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .inv-grid { grid-template-columns: 1fr; gap: 14px; } }
.inv-card {
  position: relative; overflow: hidden;
  background: var(--bone); border-radius: 4px;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.inv-card:hover { transform: translateY(-4px); }
.inv-card .ph { aspect-ratio: 1; overflow: hidden; background: var(--bone-3); }
.inv-card .ph img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.inv-card:hover .ph img { transform: scale(1.06); }
.inv-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.inv-card .cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 12px; display: inline-block;
  font-weight: 500;
}
.inv-card h3 {
  font-size: 24px; font-weight: 500; color: var(--jungle);
  margin-bottom: 12px; line-height: 1.15;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.inv-card p {
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
  margin-bottom: 18px; flex: 1;
}
.inv-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.inv-card .tags span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; padding: 4px 10px;
  background: transparent; color: var(--jungle);
  border: 1px solid var(--line); border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============ SPECIALTY ============ */
.specialty { background: var(--jungle); color: var(--bone); position: relative; overflow: hidden; }
.specialty .eyebrow { color: var(--terracotta); }
.specialty .section-head .lede { color: var(--bone); }
.specialty .section-head .lede em { color: var(--terracotta); }
.specialty .section-head .sub { color: rgba(245, 241, 234, 0.7); }
.spec-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spec-list { list-style: none; counter-reset: morphs; }
.spec-list li {
  counter-increment: morphs;
  padding: 28px 0; border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  display: grid; grid-template-columns: 50px 1fr; gap: 22px;
  align-items: baseline;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li::before {
  content: counter(morphs, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--terracotta); letter-spacing: 0.1em;
  align-self: start; padding-top: 6px;
}
.spec-list li h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 400; color: var(--bone);
  margin-bottom: 8px; line-height: 1.2;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.spec-list li h4 em { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 60; }
.spec-list li p { color: rgba(245, 241, 234, 0.65); font-size: 14.5px; line-height: 1.6; }
.spec-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.spec-mosaic .frame {
  width: 100%; aspect-ratio: 1; background: #ffffff;
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.spec-mosaic .frame img { width: 100%; height: 100%; object-fit: contain; }
.spec-mosaic .frame.zoom { overflow: hidden; }
.spec-mosaic .frame.zoom img { object-fit: cover; object-position: 18% center; transform: scale(1.1); }
@media (max-width: 960px) {
  .spec-layout { grid-template-columns: 1fr; gap: 50px; }
  .spec-list li { grid-template-columns: 40px 1fr; gap: 14px; padding: 22px 0; }
  .spec-list li h4 { font-size: 20px; }
}

/* ============ INSTAGRAM FEED ============ */
.feed { background: var(--bone); }
.feed .head-row {
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 28px; margin-bottom: 60px;
}
.feed .head-row .left { max-width: 700px; }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 800px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
.feed-tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 4px; background: var(--bone-3);
  cursor: pointer; display: block;
}
.feed-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feed-tile:hover img { transform: scale(1.08); }
.feed-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 45, 36, 0.85) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.feed-tile:hover::after { opacity: 1; }
.feed-tile .caption {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  color: var(--bone); font-size: 12.5px; line-height: 1.4;
  z-index: 2; opacity: 0; transform: translateY(8px); transition: all 0.3s;
}
.feed-tile:hover .caption { opacity: 1; transform: translateY(0); }
.feed-tile .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(31, 45, 36, 0.7); color: var(--bone);
  padding: 4px 10px; border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ============ SUPPLIES ============ */
.supplies { background: var(--bone-2); }
.sup-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: stretch; }
.sup-photo { position: relative; }
.sup-photo img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; border-radius: 4px; }
.sup-photo .tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--bone); padding: 9px 14px; border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--jungle);
}
.sup-content h3 {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta); margin: 32px 0 16px; font-weight: 500;
}
.sup-content h3:first-child { margin-top: 0; }
.sup-content p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }
.sup-list { list-style: none; columns: 2; column-gap: 28px; }
.sup-list li {
  break-inside: avoid; padding: 12px 0;
  border-bottom: 1px dashed var(--bone-3);
  font-size: 15px; color: var(--jungle); font-weight: 500;
}
.sup-list li small {
  display: block; color: var(--ink-mute); font-size: 12px;
  font-family: 'IBM Plex Mono', monospace; margin-top: 2px; font-weight: 400;
}
.sup-note {
  margin-top: 26px; padding: 16px 20px;
  background: var(--bone); border-left: 2px solid var(--terracotta);
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.55;
}
.sup-note strong { color: var(--jungle); }
@media (max-width: 960px) {
  .sup-layout { grid-template-columns: 1fr; gap: 50px; }
  .sup-photo img { min-height: 320px; }
}
@media (max-width: 600px) {
  .sup-list { columns: 1; }
}

/* ============ VISIT ============ */
.visit { background: var(--bone); }
.visit .layout { display: grid; grid-template-columns: 5fr 6fr; gap: 70px; align-items: stretch; }
.visit-info { padding: 12px 0; }
.visit-info .row {
  padding: 22px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 130px 1fr; align-items: baseline; gap: 20px;
}
.visit-info .row:first-child { padding-top: 0; }
.visit-info .row:last-child { border-bottom: none; }
.visit-info .label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 500;
}
.visit-info .value {
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 400;
  color: var(--jungle); line-height: 1.3;
}
.visit-info .value small {
  display: block; font-family: 'Inter'; font-size: 14px;
  color: var(--ink-soft); margin-top: 4px; line-height: 1.5;
}
.visit-info .hours {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 22px;
  font-family: 'IBM Plex Mono', monospace; font-size: 14px;
}
.visit-info .hours .day { color: var(--ink-mute); }
.visit-info .hours .time { color: var(--jungle); font-weight: 500; }
.visit-info .socials { display: flex; flex-direction: column; gap: 6px; }
.visit-info .socials a {
  font-family: 'IBM Plex Mono', monospace; font-size: 14px;
  color: var(--jungle); display: inline-flex; align-items: center; gap: 8px;
}
.visit-info .socials a::before { content: '→'; color: var(--terracotta); }
.visit-photo img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; border-radius: 4px; }
.map-row { margin-top: 50px; border-radius: 4px; overflow: hidden; height: 360px; }
.map-row iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(1.05); }
@media (max-width: 960px) {
  .visit .layout { grid-template-columns: 1fr; gap: 44px; }
  .visit-photo img { min-height: 320px; }
  .visit-info .row { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
}

/* ============ FAQ ============ */
.faq { background: var(--bone-2); }
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq-item summary {
  padding: 24px 0; cursor: pointer; font-family: 'Fraunces', serif;
  font-weight: 500; color: var(--jungle); font-size: 21px;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; line-height: 1.3; gap: 20px;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋'; font-size: 20px; color: var(--terracotta);
  transition: transform 0.25s; flex-shrink: 0;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 24px; max-width: 720px;
  color: var(--ink-soft); font-size: 16px; line-height: 1.7;
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 17px; padding: 20px 0; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--jungle); color: var(--bone);
  padding: 90px 0 36px;
}
footer .layout {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}
footer h5 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 22px; font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; font-size: 14.5px; }
footer ul a { color: rgba(245, 241, 234, 0.7); }
footer ul a:hover { color: var(--bone); }
footer .brand-block img { height: 80px; margin-bottom: 22px; }
footer .brand-block p {
  font-size: 16px; color: rgba(245, 241, 234, 0.65);
  max-width: 360px; line-height: 1.6;
  font-family: 'Fraunces', serif; font-weight: 300; font-style: italic;
}
footer .socials { display: flex; gap: 12px; margin-top: 22px; }
footer .socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245, 241, 234, 0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bone); transition: all 0.2s;
}
footer .socials a:hover { background: var(--terracotta); color: var(--bone); transform: translateY(-2px); }
footer .socials svg { width: 16px; height: 16px; }
footer .legal {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(245, 241, 234, 0.45); letter-spacing: 0.06em;
}
footer .legal .credit a {
  color: rgba(245, 241, 234, 0.65); text-decoration: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.2); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
footer .legal .credit a:hover { color: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 960px) {
  footer .layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer .brand-block { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  footer .layout { grid-template-columns: 1fr; }
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 12px; right: 12px; z-index: 99;
  background: var(--bone); border-radius: 12px; padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(31, 45, 36, 0.25);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px; font-weight: 500; color: var(--jungle);
  padding: 10px 6px; letter-spacing: 0.02em;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============ CARE SHEETS, landing & detail ============ */
.care-hero {
  padding-top: 130px;
  padding-bottom: 50px;
  background: var(--bone);
}
.care-hero .container { max-width: 1320px; }
.care-hero .eyebrow { margin-bottom: 18px; }
.care-hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400; color: var(--jungle); margin-bottom: 20px;
  font-variation-settings: "SOFT" 100, "opsz" 144; line-height: 1;
  max-width: 16ch;
}
.care-hero h1 em { font-style: italic; font-weight: 300; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-hero p.lede {
  font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-soft); line-height: 1.6;
  max-width: 640px; margin-bottom: 24px;
}

.care-grid-section { padding: 30px 0 120px; background: var(--bone); }
.care-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 1080px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .care-grid { grid-template-columns: 1fr; gap: 14px; } }
.care-card {
  display: flex; flex-direction: column; background: var(--bone-2);
  border-radius: 4px; overflow: hidden; cursor: pointer; transition: all 0.3s;
  color: inherit; text-decoration: none;
}
.care-card:hover { transform: translateY(-4px); color: inherit; }
.care-card .ph { aspect-ratio: 1; overflow: hidden; background: var(--bone-3); }
.care-card .ph img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.care-card:hover .ph img { transform: scale(1.06); }
.care-card .body { padding: 22px 22px 24px; }
.care-card .cat {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 10px; font-weight: 500;
}
.care-card h3 {
  font-size: 24px; font-weight: 500; color: var(--jungle); line-height: 1.15;
  margin-bottom: 10px; font-variation-settings: "SOFT" 100, "opsz" 60;
}
.care-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.care-card .arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--terracotta);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}

/* ============ CARE DETAIL ============ */
.care-detail { background: var(--bone); padding: 130px 0 100px; }
.care-detail .back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 32px;
}
.care-detail .head-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 960px) { .care-detail .head-grid { grid-template-columns: 1fr; gap: 36px; } }
.care-detail .head-grid .image {
  aspect-ratio: 1; background: var(--bone-2); border-radius: 4px; overflow: hidden;
}
.care-detail .head-grid .image img { width: 100%; height: 100%; object-fit: cover; }
.care-detail .head-grid .cat {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 14px; font-weight: 500;
}
.care-detail h1 {
  font-size: clamp(40px, 5.5vw, 80px); font-weight: 400; color: var(--jungle);
  margin-bottom: 16px; font-variation-settings: "SOFT" 100, "opsz" 144; line-height: 1;
}
.care-detail h1 em { font-style: italic; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-detail .latin {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--ink-mute);
  font-size: 17px; margin-bottom: 22px;
}
.care-detail .summary { font-size: 17px; color: var(--ink-soft); line-height: 1.65; }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0; margin-bottom: 80px;
}
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px 0; } }
.stat-row .stat { padding: 0 20px; border-left: 1px solid var(--line); }
.stat-row .stat:first-child { border-left: none; padding-left: 0; }
@media (max-width: 720px) { .stat-row .stat { border-left: none; padding-left: 0; } }
.stat-row .stat .label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 6px;
}
.stat-row .stat .value {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--jungle); line-height: 1.2;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}

.care-section { margin-bottom: 64px; }
.care-section h2 {
  font-size: 30px; color: var(--jungle); margin-bottom: 16px;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.care-section p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.care-section ul { padding-left: 22px; margin: 12px 0; }
.care-section ul li { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }

.care-cta {
  background: var(--jungle); color: var(--bone); padding: 60px 50px;
  border-radius: 4px; margin-top: 80px; text-align: center;
}
.care-cta h3 {
  font-family: 'Fraunces', serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; margin-bottom: 14px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.care-cta h3 em { font-style: italic; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-cta p { font-size: 16px; color: rgba(245, 241, 234, 0.8); margin-bottom: 26px; max-width: 540px; margin-left: auto; margin-right: auto; }
.care-cta .btn { font-size: 13.5px; }

/* Care nav link now matches the rest of nav (was previously terracotta) */

/* ============ CARE DETAIL, EDITORIAL REDESIGN ============ */
.care-detail-v2 { background: var(--bone); }

/* Full-bleed hero */
.care-hero-v2 {
  position: relative; min-height: 78vh; min-height: 78svh;
  padding-top: 80px; overflow: hidden;
}
.care-hero-v2 .hero-bg { position: absolute; inset: 0; z-index: 0; }
.care-hero-v2 .hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.care-hero-v2 .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,12,0.5) 0%, rgba(10,15,12,0.1) 30%, rgba(10,15,12,0.55) 70%, rgba(10,15,12,0.95) 100%),
    linear-gradient(90deg, rgba(10,15,12,0.78) 0%, rgba(10,15,12,0.3) 50%, rgba(10,15,12,0) 100%);
}
.care-hero-v2 .inner {
  position: relative; z-index: 2;
  min-height: calc(78vh - 80px); min-height: calc(78svh - 80px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px 0 60px;
  color: var(--bone);
}
.care-hero-v2 .badge {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,241,234,0.85); margin-bottom: 24px;
}
.care-hero-v2 .badge .num { color: var(--terracotta); font-weight: 600; }
.care-hero-v2 .badge .sep { color: rgba(245,241,234,0.35); }
.care-hero-v2 h1 {
  font-size: clamp(44px, 8vw, 110px); font-weight: 400; color: var(--bone);
  margin-bottom: 14px; line-height: 1; max-width: 14ch;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.care-hero-v2 h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-hero-v2 .latin {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 18px;
  color: rgba(245,241,234,0.75); margin-bottom: 26px;
}
.care-hero-v2 .summary {
  font-size: clamp(15px, 1.3vw, 18px); color: rgba(245,241,234,0.92);
  max-width: 580px; line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.care-hero-v2 .back {
  position: absolute; top: 102px; left: 0; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding-left: max(40px, env(safe-area-inset-left));
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bone);
  background: rgba(10,15,12,0.4); padding: 8px 16px; border-radius: 999px;
  backdrop-filter: blur(8px); margin-left: max(40px, env(safe-area-inset-left));
}
.care-hero-v2 .back:hover { background: var(--terracotta); color: var(--bone); }
@media (max-width: 720px) {
  .care-hero-v2 { min-height: 70vh; min-height: 70svh; }
  .care-hero-v2 .inner { min-height: calc(70vh - 80px); padding: 40px 0 40px; }
  .care-hero-v2 .back { top: 92px; }
}

/* Stat bar (visual icons) */
.stat-bar-v2 {
  background: var(--jungle); color: var(--bone);
  padding: 26px 0;
  position: sticky; top: 70px; z-index: 50;
  transition: transform 0.3s;
}
.stat-bar-v2 .row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1320px; margin: 0 auto;
  padding: 0 max(40px, env(safe-area-inset-left));
}
.stat-bar-v2 .stat {
  display: flex; align-items: center; gap: 14px;
  padding: 0 22px; border-left: 1px solid rgba(245,241,234,0.12);
}
.stat-bar-v2 .stat:first-child { border-left: none; padding-left: 0; }
.stat-bar-v2 .stat .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(198,107,61,0.15); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}
.stat-bar-v2 .stat .icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.stat-bar-v2 .stat .label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,241,234,0.55); margin-bottom: 3px;
}
.stat-bar-v2 .stat .value {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500;
  color: var(--bone); line-height: 1.1;
}
.diff-meter { display: inline-flex; gap: 3px; }
.diff-meter span {
  width: 8px; height: 16px; background: rgba(245,241,234,0.18); border-radius: 1px;
}
.diff-meter span.on { background: var(--terracotta); }
@media (max-width: 960px) {
  .stat-bar-v2 .row { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .stat-bar-v2 .stat { padding: 0 14px; }
  .stat-bar-v2 .stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 600px) {
  .stat-bar-v2 .stat .icon { width: 32px; height: 32px; }
  .stat-bar-v2 .stat .value { font-size: 15px; }
  .stat-bar-v2 .stat { gap: 10px; }
}

/* Two-column body with TOC */
.care-body {
  padding: 70px 0 100px;
  display: grid; grid-template-columns: 250px 1fr; gap: 80px;
  max-width: 1320px; margin: 0 auto;
  padding-left: max(40px, env(safe-area-inset-left));
  padding-right: max(40px, env(safe-area-inset-right));
}
@media (max-width: 960px) {
  .care-body { grid-template-columns: 1fr; gap: 50px; padding-top: 60px; }
}

.toc-wrap { position: sticky; top: 160px; align-self: start; }
@media (max-width: 960px) { .toc-wrap { position: static; } }
.toc {
  border-left: 1px solid var(--line); padding-left: 22px;
}
.toc h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 18px; font-weight: 500;
}
.toc ul { list-style: none; padding: 0; }
.toc ul li { margin-bottom: 11px; }
.toc ul a {
  font-size: 14.5px; color: var(--ink-soft); display: inline-flex; gap: 10px; align-items: baseline;
}
.toc ul a:hover { color: var(--terracotta); }
.toc ul a .n {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--ink-mute);
}

.essentials-card {
  margin-top: 32px; padding: 22px; background: var(--bone-2); border-radius: 4px;
}
.essentials-card h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 12px; font-weight: 500;
}
.essentials-card p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px;
}
.essentials-card a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--jungle);
  font-weight: 500;
}

/* Care main content */
.care-main .intro {
  font-family: 'Fraunces', serif; font-size: 21px; color: var(--jungle);
  line-height: 1.5; margin-bottom: 28px; font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.care-main .intro::first-letter {
  font-size: 72px; float: left; line-height: 0.95; margin: 4px 14px -6px 0;
  color: var(--terracotta); font-weight: 600;
  font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144;
}

.care-block {
  padding: 0 0 20px 0 !important;
  margin: 0 0 20px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.care-block:last-of-type { border-bottom: none; padding-bottom: 8px !important; margin-bottom: 0; }
.care-block p:last-child { margin-bottom: 0; }
.care-block .block-head { margin-bottom: 10px; }
.care-block h2 { margin-bottom: 10px; }

.care-block .block-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.care-block .block-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(198,107,61,0.12); display: inline-flex; flex-shrink: 0;
  align-items: center; justify-content: center; color: var(--terracotta);
}
.care-block .block-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.care-block .block-cat {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  font-weight: 500;
}
.care-block h2 {
  font-size: clamp(26px, 2.8vw, 34px); color: var(--jungle); margin-bottom: 10px;
  font-variation-settings: "SOFT" 100, "opsz" 144; font-weight: 500;
  line-height: 1.1;
}
.care-block h2 em { font-style: italic; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-block p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.care-block ul { padding-left: 22px; margin: 12px 0; }
.care-block ul li { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }

/* Pull quote */
.pull-quote {
  margin: 32px 0; padding: 40px 32px 36px;
  border-top: 1px solid var(--terracotta); border-bottom: 1px solid var(--terracotta);
  font-family: 'Fraunces', Georgia, serif; font-style: normal; font-weight: 500;
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.45; color: var(--jungle);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  text-align: center; position: relative;
}
.pull-quote::before {
  content: open-quote; display: block; font-size: 56px; color: var(--terracotta);
  line-height: 0.2; margin-bottom: 18px; font-weight: 700;
  font-family: 'Fraunces', Georgia, serif;
}
.pull-quote::after {
  content: close-quote; display: block; font-size: 56px; color: var(--terracotta);
  line-height: 0.2; margin-top: 22px; font-weight: 700;
  font-family: 'Fraunces', Georgia, serif;
}

/* Warning callout for common issues */
.care-warning {
  margin: 20px 0 0;
  padding: 28px 32px; background: #FBF2EB;
  border-left: 3px solid var(--terracotta-deep); border-radius: 0 4px 4px 0;
}
.care-warning .top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.care-warning .top .icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--terracotta-deep); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--bone);
}
.care-warning .top .icon svg { width: 14px; height: 14px; stroke-width: 2.2; }
.care-warning .top h3 {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta-deep);
  font-weight: 600;
}
.care-warning p { font-size: 16px; color: var(--ink); line-height: 1.7; margin: 0; }

/* Setup essentials grid */
.essentials-grid-section {
  background: var(--bone-2); padding: 90px 0;
}
.essentials-grid-section .section-head { margin-bottom: 40px; }
.essentials-grid-section .section-head .lede { font-size: clamp(28px, 3.6vw, 44px); }
.ess-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 960px) { .ess-grid { grid-template-columns: repeat(2, 1fr); } }
.ess-card {
  background: var(--bone); padding: 28px 24px; border-radius: 4px;
  text-align: left; display: flex; flex-direction: column; gap: 12px;
}
.ess-card .icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(198,107,61,0.12); display: inline-flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}
.ess-card .icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.ess-card h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--jungle); font-weight: 500; }
.ess-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* Related species */
.related-section { background: var(--bone); padding: 90px 0 110px; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px;
}
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex; gap: 16px; padding: 20px;
  background: var(--bone-2); border-radius: 4px;
  align-items: center; transition: all 0.3s; color: inherit; text-decoration: none;
}
.related-card:hover { transform: translateY(-3px); background: var(--bone-3); color: inherit; }
.related-card .thumb {
  width: 80px; height: 80px; flex-shrink: 0; border-radius: 4px;
  overflow: hidden; background: var(--bone-3);
}
.related-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-card .info { flex: 1; min-width: 0; }
.related-card .info .cat {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 4px;
}
.related-card .info h4 {
  font-family: 'Fraunces', serif; font-size: 18px; color: var(--jungle);
  font-weight: 500; line-height: 1.15;
}
.related-card .arrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: var(--terracotta);
  flex-shrink: 0;
}


/* ============ CARE LANDING, UPGRADED HERO ============ */
.care-landing-hero {
  position: relative; min-height: 540px;
  padding-top: 80px; overflow: hidden; background: var(--jungle);
}
.care-landing-hero .bg { position: absolute; inset: 0; z-index: 0; }
.care-landing-hero .bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(1.05); }
.care-landing-hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,22,18,0.4) 0%, rgba(15,22,18,0.0) 30%, rgba(15,22,18,0.85) 100%),
    linear-gradient(90deg, rgba(15,22,18,0.85) 0%, rgba(15,22,18,0.35) 50%, rgba(15,22,18,0.1) 100%);
}
.care-landing-hero .inner {
  position: relative; z-index: 2;
  min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 0 60px; color: var(--bone);
}
.care-landing-hero .eyebrow { color: var(--terracotta); margin-bottom: 22px; }
.care-landing-hero h1 {
  font-size: clamp(46px, 7vw, 100px); font-weight: 400; color: var(--bone);
  line-height: 1; margin-bottom: 24px; max-width: 16ch;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.care-landing-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-landing-hero p.lede {
  font-size: clamp(15px, 1.3vw, 18px); color: rgba(245,241,234,0.92);
  max-width: 640px; line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.care-meta-bar {
  background: var(--bone-2); padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.care-meta-bar .row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1320px; margin: 0 auto;
  padding: 0 max(40px, env(safe-area-inset-left));
}
.care-meta-bar .stat {
  padding: 0 20px; border-left: 1px solid var(--line);
}
.care-meta-bar .stat:first-child { border-left: none; padding-left: 0; }
.care-meta-bar .stat .num {
  font-family: 'Fraunces', serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; color: var(--jungle); line-height: 1; margin-bottom: 6px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.care-meta-bar .stat .num em { font-style: italic; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.care-meta-bar .stat .label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
@media (max-width: 720px) {
  .care-meta-bar .row { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .care-meta-bar .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* Filter chips */
.care-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 60px 0 36px;
}
.care-filter button {
  background: var(--bone-2); color: var(--jungle); border: 1px solid transparent;
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: all 0.2s;
}
.care-filter button:hover { background: var(--bone-3); }
.care-filter button.active {
  background: var(--jungle); color: var(--bone);
}
.care-filter button .count {
  display: inline-block; margin-left: 6px;
  font-size: 10.5px; color: var(--terracotta);
}
.care-filter button.active .count { color: var(--terracotta); opacity: 0.85; }

.care-card[data-hidden="true"] { display: none; }

/* Featured card variation for landing */
.care-card .body .meta-pills {
  display: inline-flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap;
}
.care-card .body .meta-pills span {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(198,107,61,0.12); color: var(--terracotta);
  padding: 3px 9px; border-radius: 999px; font-weight: 500;
}

/* Remove old simpler care-hero (used by previous landing) so the new layout owns the space */
.care-hero { display: none; }

/* Filter row layout */
.care-filter-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin: 60px 0 36px;
}
.care-filter-row .filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.care-filter-row .filter-spacer { flex: 1; min-width: 8px; }

/* Difficulty dropdown */
.care-dropdown {
  position: relative; display: inline-block;
}
.care-dropdown select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background: var(--bone-2); color: var(--jungle); border: 1px solid transparent;
  padding: 10px 38px 10px 18px; border-radius: 999px; cursor: pointer;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: all 0.2s;
}
.care-dropdown select:hover { background: var(--bone-3); }
.care-dropdown select:focus { outline: none; border-color: var(--terracotta); }
.care-dropdown::after {
  content: ''; position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--jungle); border-bottom: 1.5px solid var(--jungle);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.care-dropdown.active select { background: var(--jungle); color: var(--bone); }
.care-dropdown.active::after { border-color: var(--bone); }

/* ============ DAYCARE — main page section ============ */
.daycare-teaser {
  background: var(--bone);
  padding: 100px 0;
}
.daycare-teaser .layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
@media (max-width: 960px) { .daycare-teaser .layout { grid-template-columns: 1fr; gap: 40px; } }
.daycare-teaser .photo img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 4px;
  filter: contrast(1.05) saturate(1.05);
}
.daycare-teaser .copy h2 { font-size: clamp(30px, 4.2vw, 52px); color: var(--jungle); margin-bottom: 16px; font-variation-settings: "SOFT" 100, "opsz" 144; font-weight: 500; line-height: 1.1; }
.daycare-teaser .copy h2 em { font-style: italic; font-weight: 500; color: var(--terracotta-deep); font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144; }
.daycare-teaser .copy p {
  font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px;
}
.daycare-teaser .copy .points {
  list-style: none; margin: 24px 0 32px; padding: 0;
}
.daycare-teaser .copy .points li {
  font-size: 15px; color: var(--jungle); padding: 8px 0 8px 28px;
  position: relative; line-height: 1.5;
}
.daycare-teaser .copy .points li::before {
  content: '✓'; position: absolute; left: 0; top: 7px;
  color: var(--terracotta); font-weight: 600; font-size: 16px;
}

/* ============ DAYCARE — dedicated page ============ */
.dc-hero {
  position: relative; min-height: 70vh; min-height: 70svh;
  padding-top: 80px; overflow: hidden; background: var(--jungle);
}
.dc-hero .bg { position: absolute; inset: 0; z-index: 0; }
.dc-hero .bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(1.05); }
.dc-hero .bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,22,18,0.4) 0%, rgba(15,22,18,0.0) 30%, rgba(15,22,18,0.85) 100%),
    linear-gradient(90deg, rgba(15,22,18,0.85) 0%, rgba(15,22,18,0.4) 50%, rgba(15,22,18,0.15) 100%);
}
.dc-hero .inner {
  position: relative; z-index: 2;
  min-height: calc(70vh - 80px); min-height: calc(70svh - 80px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 0 60px; color: var(--bone);
}
.dc-hero .eyebrow { color: var(--terracotta); margin-bottom: 22px; }
.dc-hero h1 {
  font-size: clamp(44px, 7vw, 100px); font-weight: 400; color: var(--bone);
  line-height: 1; margin-bottom: 24px; max-width: 16ch;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.dc-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.dc-hero p.lede {
  font-size: clamp(16px, 1.4vw, 19px); color: rgba(245,241,234,0.92);
  max-width: 660px; line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  margin-bottom: 32px;
}
.dc-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.dc-section { padding: 100px 0; }
.dc-section.bone { background: var(--bone); }
.dc-section.bone2 { background: var(--bone-2); }
.dc-section.jungle { background: var(--jungle); color: var(--bone); }
.dc-section.jungle .section-head .lede { color: var(--bone); }
.dc-section.jungle .section-head .lede em { color: var(--terracotta); }
.dc-section.jungle .section-head .sub { color: rgba(245,241,234,0.75); }
.dc-section.jungle .eyebrow { color: var(--terracotta); }

.dc-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px;
}
@media (max-width: 800px) { .dc-compare { grid-template-columns: 1fr; gap: 18px; } }
.dc-compare .card {
  background: var(--bone); border-radius: 4px; padding: 36px 32px;
  border-top: 3px solid var(--bone-3);
}
.dc-compare .card.ours { border-top-color: var(--terracotta); background: #FFF8EE; }
.dc-compare .card h3 {
  font-family: 'Fraunces', serif; font-size: 24px; color: var(--jungle);
  margin-bottom: 16px; font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.dc-compare .card ul { list-style: none; padding: 0; margin: 0; }
.dc-compare .card ul li {
  padding: 10px 0 10px 26px; position: relative;
  font-size: 15px; color: var(--ink-soft); line-height: 1.5;
}
.dc-compare .card.theirs ul li::before {
  content: '✕'; position: absolute; left: 0; top: 11px;
  color: var(--ink-mute); font-weight: 600;
}
.dc-compare .card.ours ul li::before {
  content: '✓'; position: absolute; left: 0; top: 9px;
  color: var(--terracotta); font-weight: 700; font-size: 16px;
}

.dc-included {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 50px;
}
@media (max-width: 800px) { .dc-included { grid-template-columns: 1fr; } }
.dc-included .item {
  background: rgba(245,241,234,0.05); padding: 28px 24px;
  border-radius: 4px; border: 1px solid rgba(245,241,234,0.1);
}
.dc-included .item .num {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  letter-spacing: 0.14em; color: var(--terracotta); margin-bottom: 12px;
}
.dc-included .item h4 {
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--bone);
  margin-bottom: 10px; font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
}
.dc-included .item p { font-size: 14.5px; color: rgba(245,241,234,0.75); line-height: 1.55; }

.dc-pricing {
  text-align: center; padding: 80px 40px;
  background: var(--bone-2); border-radius: 4px; max-width: 880px;
  margin: 0 auto;
}
.dc-pricing .eyebrow { color: var(--terracotta); }
.dc-pricing h2 {
  font-family: 'Fraunces', serif; font-size: clamp(34px, 5vw, 58px);
  color: var(--jungle); margin: 14px 0 18px; font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.dc-pricing h2 em { font-style: italic; color: var(--terracotta); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.dc-pricing p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 580px; margin: 0 auto 30px; }
.dc-pricing .phone-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--jungle); color: var(--bone);
  padding: 18px 36px; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transition: all 0.25s;
}
.dc-pricing .phone-cta::before {
  content: '☎'; font-size: 18px; opacity: 0.85;
}
.dc-pricing .phone-cta:hover { background: var(--terracotta); color: var(--bone); transform: translateY(-2px); }
