@charset "UTF-8";

:root {
  --canvas: #f6f0e4;
  --canvas-deep: #eee4d1;
  --surface: #fffaf0;
  --surface-strong: #fffdf7;
  --ink: #261a4d;
  --ink-soft: #554c67;
  --muted: #786f63;
  --line: rgba(38, 26, 77, 0.14);
  --line-strong: rgba(38, 26, 77, 0.26);
  --amber: #d4a638;
  --amber-deep: #a86f19;
  --amber-wash: #f3e6c5;
  --olive: #9ca887;
  --olive-deep: #58654c;
  --indigo-wash: #e4e1ee;
  --pomegranate: #9a4d43;
  --serif: "Crimson Pro", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(38, 26, 77, 0.12);
  --shadow-soft: 0 10px 28px rgba(38, 26, 77, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 166, 56, 0.11), transparent 26rem),
    radial-gradient(circle at 92% 30%, rgba(156, 168, 135, 0.13), transparent 30rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--amber); color: var(--ink); }

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(38, 26, 77, 0.09);
  background: rgba(246, 240, 228, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand img { width: 29px; height: 29px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.site-nav a { transition: color 160ms ease; }
.site-nav a:hover { color: var(--amber-deep); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background: var(--surface);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber-deep);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--quiet { color: var(--olive-deep); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  line-height: 0.91;
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
  line-height: 1.02;
}

.lede {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
  line-height: 1.5;
}

.microcopy {
  color: var(--muted);
  font-size: 0.79rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  background: var(--ink);
  box-shadow: 0 9px 20px rgba(38, 26, 77, 0.17);
  color: var(--surface);
}

.button--primary:hover { background: #35245f; box-shadow: 0 13px 28px rgba(38, 26, 77, 0.23); }

.button--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 9px 20px rgba(168, 111, 25, 0.2);
}

.button--outline { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--surface); }

.button--text { min-height: 40px; padding: 0; color: var(--ink); }
.button--text::after { content: "→"; color: var(--amber-deep); font-size: 1.1rem; }

.hero {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
  align-items: center;
  gap: 70px;
  padding: 86px 0 94px;
}

.hero-copy { position: relative; z-index: 2; }

.hero-copy h1 { max-width: 640px; }

.hero-copy .lede { max-width: 590px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.proof-chip, .filter-chip, .tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.proof-chip::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  z-index: -2;
  top: 24px;
  right: 5%;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(38, 26, 77, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(38, 26, 77, 0.025), 0 0 0 92px rgba(38, 26, 77, 0.018);
  content: "";
}

.atlas-grid {
  position: absolute;
  inset: 4% 0 7% 12%;
  overflow: hidden;
  border: 1px solid rgba(38, 26, 77, 0.15);
  border-radius: 44% 18% 40% 24%;
  background:
    linear-gradient(30deg, transparent 48%, rgba(38, 26, 77, 0.09) 49%, transparent 50%) 0 0 / 110px 90px,
    linear-gradient(150deg, transparent 48%, rgba(38, 26, 77, 0.07) 49%, transparent 50%) 0 0 / 146px 108px,
    radial-gradient(circle at 72% 28%, rgba(212, 166, 56, 0.3), transparent 24%),
    var(--indigo-wash);
  transform: rotate(5deg);
}

.atlas-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 250, 240, 0.75), transparent 35%, rgba(156, 168, 135, 0.18));
  content: "";
}

.map-label {
  position: absolute;
  z-index: 1;
  color: rgba(38, 26, 77, 0.64);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.map-label--top { top: 17%; right: 12%; }
.map-label--bottom { bottom: 17%; left: 20%; }

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 5px solid rgba(255, 250, 240, 0.75);
  border-radius: 50% 50% 50% 0;
  background: var(--amber-deep);
  box-shadow: 0 4px 10px rgba(38, 26, 77, 0.18);
  transform: rotate(-45deg);
}

.map-pin::after { width: 4px; height: 4px; border-radius: 50%; background: var(--surface); content: ""; }
.map-pin--one { top: 29%; right: 29%; }
.map-pin--two { bottom: 25%; left: 31%; background: var(--pomegranate); transform: rotate(-45deg) scale(0.8); }
.map-pin--three { bottom: 35%; right: 16%; background: var(--olive-deep); transform: rotate(-45deg) scale(0.72); }

.phone-shell {
  position: absolute;
  z-index: 5;
  top: 1%;
  left: 17%;
  width: min(298px, 54%);
  padding: 9px;
  border: 1px solid rgba(255, 253, 247, 0.65);
  border-radius: 38px;
  background: #191326;
  box-shadow: 28px 35px 65px rgba(38, 26, 77, 0.25);
  transform: rotate(-7deg);
}

.phone-screen {
  min-height: 525px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px 10px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
}

.phone-content { padding: 20px 18px; }

.phone-greeting {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 650;
}

.phone-subtitle { margin: 0 0 18px; color: var(--muted); font-size: 0.67rem; line-height: 1.45; }

.study-card {
  padding: 17px;
  border-radius: 17px;
  background: var(--ink);
  color: var(--surface);
}

.study-card .tiny-label { color: #f1d989; }
.tiny-label { font-size: 0.59rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.study-card h3 { margin: 18px 0 8px; color: var(--surface); font-size: 1.45rem; }
.study-card p { margin-bottom: 22px; color: rgba(255, 250, 240, 0.75); font-size: 0.72rem; }

.study-progress { height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255, 250, 240, 0.18); }
.study-progress span { display: block; width: 38%; height: 100%; border-radius: inherit; background: var(--amber); }

.phone-rows { display: grid; gap: 9px; margin-top: 14px; }
.phone-row { display: flex; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-strong); font-size: 0.67rem; font-weight: 700; }
.phone-row i { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 8px; background: var(--amber-wash); color: var(--amber-deep); font-style: normal; }

.stage-note {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 14%;
  width: 210px;
  padding: 17px;
  border: 1px solid rgba(38, 26, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.91);
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
}

.stage-note strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 1.2rem; }
.stage-note p { margin: 0; color: var(--muted); font-size: 0.7rem; line-height: 1.45; }

.section { padding: 105px 0; }
.section--tight { padding: 70px 0; }
.section--dark { background: var(--ink); color: var(--surface); }
.section--dark .lede, .section--dark .microcopy { color: rgba(255, 250, 240, 0.68); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 0; }

.two-doors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.door-card {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.door-card--study { background: linear-gradient(140deg, var(--surface) 46%, #efe6d4); }
.door-card--places { background: linear-gradient(140deg, #e5e7db 0%, #f7f2e6 73%); }

.door-card p { max-width: 350px; color: var(--ink-soft); }
.door-card .button { position: absolute; bottom: 30px; left: 34px; }

.door-art { position: absolute; right: 23px; bottom: 22px; width: 170px; height: 170px; opacity: 0.98; }
.door-art--study::before { position: absolute; inset: 14px 32px 0; border-radius: 48% 48% 12px 12px; background: var(--ink); content: ""; }
.door-art--study::after { position: absolute; top: 50px; left: 67px; width: 36px; height: 62px; border-radius: 50% 50% 48% 48%; background: var(--amber); box-shadow: 0 0 32px rgba(212, 166, 56, 0.55); content: ""; }
.door-art--places { border: 1px solid rgba(38, 26, 77, 0.16); border-radius: 45% 20% 40% 18%; background: linear-gradient(28deg, transparent 48%, rgba(38, 26, 77, 0.14) 49%, transparent 51%) 0 0 / 50px 44px, #dfe4d2; transform: rotate(-7deg); }
.door-art--places::before, .door-art--places::after { position: absolute; width: 18px; height: 18px; border: 4px solid var(--surface); border-radius: 50% 50% 50% 0; background: var(--pomegranate); content: ""; transform: rotate(-45deg); }
.door-art--places::before { top: 43px; left: 52px; }
.door-art--places::after { right: 38px; bottom: 38px; background: var(--amber-deep); transform: rotate(-45deg) scale(0.78); }

.duration-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: center; gap: 80px; }

.duration-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 25px 0 20px; }

.duration-option {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  transition: background 180ms ease, border 180ms ease, transform 180ms ease;
}

.duration-option:hover { transform: translateY(-2px); }
.duration-option[aria-pressed="true"] { border-color: var(--amber); background: var(--amber-wash); color: var(--ink); }
.duration-option strong { display: block; padding: 13px 13px 3px; font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.duration-option span { display: block; padding: 0 13px; font-size: 0.67rem; font-weight: 750; }

.duration-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--surface);
}

.duration-visual::before { position: absolute; right: -18%; bottom: -45%; width: 70%; height: 90%; border-radius: 50%; background: rgba(212, 166, 56, 0.3); content: ""; }
.duration-visual > * { position: relative; z-index: 1; }
.duration-visual .tiny-label { color: #f1d989; }
.duration-visual h3 { max-width: 380px; margin-top: 35px; color: var(--surface); font-size: clamp(2.2rem, 5vw, 4rem); }
.duration-visual p { max-width: 420px; color: rgba(255, 250, 240, 0.7); }
.duration-mark { position: absolute; right: 38px; bottom: 31px; width: 86px; height: 86px; border: 1px solid rgba(255, 250, 240, 0.3); border-radius: 50%; }
.duration-mark::after { position: absolute; inset: 17px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 10px rgba(212, 166, 56, 0.11), 0 0 32px rgba(212, 166, 56, 0.55); content: ""; }

.directory-preview { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); align-items: start; gap: 60px; }
.directory-intro { position: sticky; top: 112px; }
.directory-intro h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }

.place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.place-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.place-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.place-art {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 15px;
  background: var(--indigo-wash);
}

.place-art::before { position: absolute; top: -22px; right: -25px; width: 155px; height: 155px; border: 1px solid rgba(38, 26, 77, 0.18); border-radius: 50%; box-shadow: 0 0 0 20px rgba(38, 26, 77, 0.035), 0 0 0 42px rgba(38, 26, 77, 0.025); content: ""; }
.place-art::after { position: absolute; right: 27px; bottom: 24px; width: 22px; height: 22px; border: 5px solid rgba(255, 250, 240, 0.7); border-radius: 50% 50% 50% 0; background: var(--amber-deep); box-shadow: 0 4px 10px rgba(38, 26, 77, 0.18); content: ""; transform: rotate(-45deg); }
.place-art--green { background: linear-gradient(145deg, #dfe6d5, #c6d1bd); }
.place-art--gold { background: linear-gradient(145deg, #f2e4c5, #e5c67e); }
.place-art--red { background: linear-gradient(145deg, #ead9d0, #d3aba0); }
.place-art-label { position: absolute; bottom: 14px; left: 15px; color: rgba(38, 26, 77, 0.65); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.place-body { padding: 18px; }
.place-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; color: var(--muted); font-size: 0.68rem; font-weight: 750; }
.place-body h3 { margin-bottom: 8px; font-size: 1.45rem; }
.place-body p { min-height: 65px; margin-bottom: 16px; color: var(--ink-soft); font-size: 0.79rem; line-height: 1.45; }
.place-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.68rem; }
.place-footer a { color: var(--ink); font-weight: 800; }

.atlas-note {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
}

.atlas-quote { padding: 42px; border: 1px solid rgba(255, 250, 240, 0.16); border-radius: var(--radius-lg); background: rgba(255, 250, 240, 0.05); }
.atlas-quote blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 0.98; }
.atlas-quote cite { color: rgba(255, 250, 240, 0.55); font-size: 0.72rem; font-style: normal; }
.principle-list { display: grid; gap: 17px; }
.principle { display: grid; grid-template-columns: 30px 1fr; gap: 16px; padding-bottom: 17px; border-bottom: 1px solid rgba(255, 250, 240, 0.15); }
.principle:last-child { border-bottom: 0; }
.principle-index { color: var(--amber); font-family: var(--serif); font-size: 1.4rem; }
.principle strong { display: block; margin-bottom: 4px; color: var(--surface); font-size: 0.92rem; }
.principle p { margin: 0; color: rgba(255, 250, 240, 0.63); font-size: 0.78rem; }

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--amber-wash);
}

.download-panel h2 { margin-bottom: 10px; font-size: clamp(2.3rem, 5vw, 4.4rem); }
.download-panel p { max-width: 580px; margin-bottom: 0; color: var(--ink-soft); }
.download-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }
.download-note { margin: 10px 0 0; color: var(--amber-deep); font-size: 0.7rem; font-weight: 750; }

.site-footer { padding: 34px 0 48px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.footer-copy { max-width: 390px; color: var(--muted); font-size: 0.72rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 15px; color: var(--ink-soft); font-size: 0.72rem; font-weight: 750; }

.page-hero { padding: 80px 0 58px; }
.page-hero h1 { max-width: 740px; font-size: clamp(3.2rem, 7vw, 6rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 25px; color: var(--muted); font-size: 0.71rem; font-weight: 750; }
.breadcrumbs span::after { margin-left: 9px; color: var(--line-strong); content: "/"; }
.breadcrumbs span:last-child::after { display: none; }

.directory-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin: 20px 0 28px; }
.search-box { display: flex; min-width: min(360px, 100%); align-items: center; gap: 10px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); }
.search-box span { color: var(--amber-deep); font-size: 1.1rem; }
.search-box input { width: 100%; min-height: 44px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 0.82rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chip { min-height: 36px; border-color: var(--line-strong); background: transparent; color: var(--ink); }
.filter-chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--surface); }

.directory-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr); align-items: start; gap: 22px; }
.directory-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.directory-results .place-card { height: 100%; }
.directory-results .place-body p { min-height: 75px; }
.map-panel { position: sticky; top: 104px; min-height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #e1e6d8; }
.map-panel::before { position: absolute; inset: -20% -10%; background: linear-gradient(35deg, transparent 48%, rgba(38, 26, 77, 0.12) 49%, transparent 51%) 0 0 / 120px 95px, linear-gradient(152deg, transparent 48%, rgba(38, 26, 77, 0.08) 49%, transparent 51%) 0 0 / 160px 130px; content: ""; transform: rotate(12deg); }
.map-panel::after { position: absolute; inset: 25% 10% 14% 25%; border: 1px solid rgba(38, 26, 77, 0.12); border-radius: 48% 28% 50% 25%; content: ""; transform: rotate(-18deg); }
.map-title { position: absolute; z-index: 2; top: 20px; left: 22px; color: var(--ink); font-family: var(--serif); font-size: 1.55rem; }
.map-subtitle { position: absolute; z-index: 2; top: 54px; left: 22px; color: var(--muted); font-size: 0.7rem; }
.map-route { position: absolute; z-index: 1; left: 18%; bottom: 14%; width: 58%; height: 1px; background: var(--amber-deep); box-shadow: 34px -63px 0 -0.2px var(--amber-deep), 110px -97px 0 -0.2px var(--amber-deep); transform: rotate(-26deg); }
.map-panel .map-pin--one { top: 40%; right: 23%; }
.map-panel .map-pin--two { top: 57%; left: 31%; }
.map-panel .map-pin--three { top: 24%; right: 38%; }
.map-legend { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 13px; border: 1px solid rgba(38, 26, 77, 0.13); border-radius: 14px; background: rgba(255, 250, 240, 0.8); color: var(--ink-soft); font-size: 0.68rem; }
.map-legend strong { display: block; margin-bottom: 3px; color: var(--ink); }

.source-note { margin-top: 26px; padding: 17px 19px; border-left: 3px solid var(--amber); background: rgba(255, 250, 240, 0.6); color: var(--muted); font-size: 0.74rem; }
.source-note strong { color: var(--ink); }

.detail-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); align-items: stretch; gap: 24px; padding: 76px 0 45px; }
.detail-art { position: relative; min-height: 410px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #d2d6c6, #efdfbe 55%, #d3aaa0); }
.detail-art--green { background: linear-gradient(145deg, #c6d0bd, #eee3c4 55%, #c5d2d0); }
.detail-art--red { background: linear-gradient(145deg, #ddc3b0, #efdfbe 55%, #c8c5d4); }
.detail-art::before { position: absolute; inset: 14% -10% -18% 27%; border: 1px solid rgba(38, 26, 77, 0.18); border-radius: 45% 20% 44% 28%; background: linear-gradient(38deg, transparent 48%, rgba(38, 26, 77, 0.13) 49%, transparent 51%) 0 0 / 90px 70px; content: ""; transform: rotate(-9deg); }
.detail-art::after { position: absolute; top: 31%; left: 28%; width: 102px; height: 102px; border: 1px solid rgba(255, 250, 240, 0.78); border-radius: 50%; box-shadow: 0 0 0 19px rgba(255, 250, 240, 0.15), 0 0 0 47px rgba(38, 26, 77, 0.06); content: ""; }
.detail-art-label { position: absolute; z-index: 2; right: 24px; bottom: 21px; color: var(--ink); font-family: var(--serif); font-size: 1.5rem; }
.detail-copy { padding: 8px 18px; }
.detail-copy h1 { margin-bottom: 16px; font-size: clamp(3.2rem, 6vw, 5.7rem); }
.detail-copy .lede { font-size: 1rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.detail-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 31px; }
.detail-fact { padding: 13px; border-top: 1px solid var(--line-strong); }
.detail-fact dt { margin-bottom: 5px; color: var(--muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.detail-fact dd { margin: 0; color: var(--ink); font-size: 0.79rem; font-weight: 700; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 70px; }
.detail-grid h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
.detail-grid p { color: var(--ink-soft); }
.detail-sidebar { align-self: start; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.detail-sidebar h3 { font-size: 1.35rem; }
.detail-sidebar p { font-size: 0.76rem; }
.detail-sidebar a { color: var(--amber-deep); font-size: 0.78rem; font-weight: 800; }

.app-hero { display: grid; grid-template-columns: minmax(0, 0.84fr) minmax(450px, 1.16fr); align-items: center; gap: 60px; padding: 55px 0 80px; }
.app-hero-copy { padding-top: 22px; }
.app-hero-copy h1 { max-width: 610px; }
.app-hero-copy .download-note { max-width: 410px; margin-top: 16px; }
.app-hero-stage { min-height: 555px; }
.app-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.app-feature { min-height: 290px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.app-feature--warm { background: linear-gradient(145deg, #f5e8c8, #fffaf0); }
.app-feature--olive { background: linear-gradient(145deg, #e2e8d8, #f8f4e9); }
.app-feature-number { display: block; margin-bottom: 30px; color: var(--amber-deep); font-family: var(--serif); font-size: 1.7rem; }
.app-feature h3 { max-width: 260px; font-size: 1.85rem; }
.app-feature p:last-child { max-width: 310px; color: var(--ink-soft); font-size: 0.82rem; }
.app-trust-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: 70px; }

/* Atlas and editorial pages: a field-note rail gives the directory a recognizable rhythm. */
.section--warm { background: linear-gradient(145deg, rgba(243, 230, 197, 0.68), rgba(255, 250, 240, 0.28)); }

.atlas-hero {
  display: grid;
  min-height: 625px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 75px;
  padding: 70px 0 92px;
}

.atlas-hero-copy h1 { max-width: 690px; }

.atlas-hero-plate {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(38, 26, 77, 0.16);
  border-radius: 46% 17% 38% 22%;
  background:
    linear-gradient(36deg, transparent 48%, rgba(38, 26, 77, 0.1) 49%, transparent 50%) 0 0 / 100px 80px,
    linear-gradient(146deg, transparent 48%, rgba(38, 26, 77, 0.08) 49%, transparent 50%) 0 0 / 140px 110px,
    linear-gradient(145deg, #e8e3d0, #d1d9c7 53%, #e8cf9d);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.atlas-hero-plate::before { position: absolute; inset: 21% -15% -8% 16%; border: 1px solid rgba(38, 26, 77, 0.15); border-radius: 45% 25% 40% 27%; content: ""; transform: rotate(-16deg); }
.atlas-hero-plate::after { position: absolute; top: 29%; left: 21%; width: 118px; height: 118px; border: 1px solid rgba(255, 250, 240, 0.8); border-radius: 50%; box-shadow: 0 0 0 20px rgba(255, 250, 240, 0.2), 0 0 0 50px rgba(38, 26, 77, 0.045); content: ""; }
.atlas-plate-label { position: relative; z-index: 2; color: var(--amber-deep); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.atlas-hero-plate strong { position: absolute; z-index: 2; right: 28px; bottom: 67px; color: var(--ink); font-family: var(--serif); font-size: clamp(4.3rem, 9vw, 7.6rem); font-weight: 650; letter-spacing: -0.09em; line-height: 0.76; text-align: right; }
.atlas-plate-caption { position: absolute; z-index: 2; right: 30px; bottom: 27px; color: var(--ink-soft); font-size: 0.69rem; font-weight: 750; }
.atlas-hero-plate .map-pin--one { top: 33%; right: 22%; }
.atlas-hero-plate .map-pin--two { top: 56%; left: 27%; }
.atlas-hero-plate .map-pin--three { top: 24%; right: 43%; }

.atlas-page-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr); align-items: end; gap: 60px; }
.atlas-page-heading h1 { max-width: 800px; }

.atlas-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.atlas-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.atlas-card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.atlas-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.76);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.atlas-card:hover { border-color: var(--amber); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.atlas-card-eyebrow { margin-bottom: 29px; color: var(--amber-deep); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.atlas-card h3 { max-width: 290px; margin-bottom: 10px; font-size: 2rem; }
.atlas-card p { max-width: 360px; margin-bottom: 20px; color: var(--ink-soft); font-size: 0.81rem; }
.atlas-card-link { margin-top: auto; color: var(--ink); font-size: 0.75rem; font-weight: 850; }
.atlas-card-link span { margin-left: 4px; color: var(--amber-deep); font-size: 1.05rem; }
.section--dark .atlas-card { border-color: rgba(255, 250, 240, 0.16); background: rgba(255, 250, 240, 0.06); color: var(--surface); }
.section--dark .atlas-card:hover { border-color: var(--amber); background: rgba(255, 250, 240, 0.1); }
.section--dark .atlas-card p { color: rgba(255, 250, 240, 0.68); }
.section--dark .atlas-card-link { color: var(--surface); }

.field-rail {
  position: relative;
  align-self: start;
  padding: 25px 23px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: var(--shadow-soft);
}

.field-rail-mark { display: block; margin-bottom: 33px; color: var(--amber-deep); font-size: 1.2rem; }
.field-rail h3 { max-width: 220px; font-size: 1.8rem; }
.field-rail p:not(.eyebrow) { color: var(--ink-soft); font-size: 0.8rem; }
.field-rail-rule { width: 100%; height: 1px; margin: 24px 0 12px; background: var(--line); }
.field-rail-caption { color: var(--muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.field-note { display: flex; min-height: 250px; gap: 22px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.field-note-mark { flex: 0 0 auto; color: var(--amber-deep); font-size: 1.1rem; }
.field-note h3 { font-size: 1.85rem; }
.field-note p:last-child { color: var(--ink-soft); font-size: 0.81rem; }
.field-note--warm { background: linear-gradient(145deg, #f5e8c8, #fffaf0); }
.field-note--olive { background: linear-gradient(145deg, #e2e8d8, #f8f4e9); }
.field-note--dark { border-color: rgba(255, 250, 240, 0.18); background: var(--ink); color: var(--surface); }
.field-note--dark p:last-child { color: rgba(255, 250, 240, 0.68); }

.atlas-split { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); align-items: center; gap: 80px; }
.atlas-split > .field-rail { max-width: 340px; }
.atlas-results-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.55fr); align-items: start; gap: 25px; }
.atlas-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.directory-empty { margin-top: 14px; padding: 28px; border: 1px dashed var(--line-strong); border-radius: var(--radius-md); background: rgba(255, 250, 240, 0.55); }
.directory-empty h3 { font-size: 1.8rem; }
.directory-empty p:not(.eyebrow) { max-width: 420px; color: var(--ink-soft); font-size: 0.82rem; }
.atlas-results-layout > .field-rail { position: sticky; top: 104px; }
.filter-chip--link { min-height: 36px; border-color: var(--line-strong); background: transparent; color: var(--ink); }
.filter-chip--link:hover, .filter-chip--link.is-selected { border-color: var(--ink); background: var(--ink); color: var(--surface); }
.atlas-trail-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 24px; }

.link-grid-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr); align-items: center; gap: 70px; }
.link-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.link-grid a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.82rem; font-weight: 750; }
.link-grid a span { color: var(--amber-deep); font-size: 1.1rem; }
.link-grid a:hover { color: var(--ink); }

.editorial-hero { max-width: 980px; padding-bottom: 50px; }
.editorial-hero h1 { max-width: 900px; }
.editorial-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 25px; color: var(--muted); font-size: 0.72rem; font-weight: 750; }
.editorial-meta span + span::before { margin-right: 16px; color: var(--line-strong); content: "·"; }
.editorial-copy p { max-width: 680px; color: var(--ink-soft); font-size: 1rem; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.55fr); align-items: start; gap: 80px; }
.guide-layout aside .field-rail { position: sticky; top: 104px; }
.guide-body { display: grid; gap: 0; }
.guide-section { display: grid; grid-template-columns: 50px 1fr; gap: 23px; padding: 0 0 45px; margin-bottom: 45px; border-bottom: 1px solid var(--line); }
.guide-section:last-child { margin-bottom: 0; }
.guide-section-index { color: var(--amber-deep); font-family: var(--serif); font-size: 1.35rem; }
.guide-section h2 { max-width: 550px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.guide-section p { max-width: 580px; color: var(--ink-soft); font-size: 1rem; }
.methodology-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.empty-state { max-width: 720px; margin: 0 auto; padding: 60px 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); text-align: center; }
.empty-state-mark { display: block; margin-bottom: 20px; color: var(--amber-deep); font-size: 1.5rem; }
.empty-state h2 { margin-right: auto; margin-left: auto; }
.empty-state p:not(.eyebrow) { max-width: 510px; margin-right: auto; margin-left: auto; color: var(--ink-soft); }
.empty-state .hero-actions { justify-content: center; }
.correction-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.65fr); align-items: start; gap: 70px; }
.correction-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.correction-card h2 { max-width: 500px; }
.editorial-list { display: grid; gap: 11px; margin: 25px 0 30px; padding-left: 20px; color: var(--ink-soft); font-size: 0.88rem; }
.editorial-list li::marker { color: var(--amber-deep); }
.faq-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.55fr); align-items: start; gap: 70px; }
.faq-layout .field-rail { position: sticky; top: 104px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 21px 0; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 1.65rem; font-weight: 650; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--amber-deep); font-family: var(--sans); font-size: 1.1rem; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 50px 23px 0; color: var(--ink-soft); font-size: 0.88rem; }
.button--light { background: var(--surface); color: var(--ink); }
.button--outline-light { border-color: rgba(255, 250, 240, 0.35); color: var(--surface); }
.button--outline-light:hover { background: rgba(255, 250, 240, 0.1); }

.reveal { opacity: 1; transform: none; transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 45px; padding-top: 65px; }
  .hero-stage { min-height: 540px; }
  .app-hero, .duration-layout, .directory-preview, .directory-layout, .atlas-note, .detail-hero, .detail-grid, .app-trust-layout, .atlas-hero, .atlas-page-hero, .atlas-split, .atlas-results-layout, .link-grid-section, .guide-layout, .correction-layout, .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .atlas-results-layout > .field-rail, .guide-layout aside .field-rail, .faq-layout .field-rail { position: static; }
  .directory-intro { position: static; }
  .map-panel { position: relative; min-height: 430px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { min-height: 66px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 65px; right: 14px; left: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 250, 240, 0.98); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px; border-radius: 10px; }
  .site-nav a:hover { background: var(--amber-wash); }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero { padding: 53px 0 64px; }
  .app-hero { padding: 38px 0 60px; }
  .app-hero-copy { padding-top: 0; }
  .hero-stage { min-height: 465px; }
  .app-hero-stage { min-height: 465px; }
  .phone-shell { left: 7%; width: 245px; }
  .phone-screen { min-height: 420px; }
  .stage-note { right: 0; bottom: 6%; width: 177px; padding: 13px; }
  .stage-note strong { font-size: 1rem; }
  .stage-note p { font-size: 0.65rem; }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading .button { margin-top: 17px; }
  .two-doors, .place-grid, .directory-results, .app-feature-grid, .atlas-card-grid, .atlas-card-grid--three, .atlas-card-grid--two, .atlas-result-grid, .methodology-grid { grid-template-columns: 1fr; }
  .door-card { min-height: 330px; padding: 25px; }
  .door-card .button { bottom: 24px; left: 25px; }
  .download-panel { display: block; padding: 30px 24px; }
  .download-actions { justify-content: start; margin-top: 22px; }
  .footer-inner { display: block; }
  .footer-links { justify-content: start; margin-top: 20px; }
  .page-hero { padding: 55px 0 35px; }
  .directory-toolbar { align-items: stretch; }
  .search-box { min-width: 100%; }
  .detail-hero { padding-top: 42px; }
  .detail-art { min-height: 290px; }
  .detail-copy { padding: 0; }
  .detail-facts { grid-template-columns: 1fr; }
  .atlas-hero { padding: 45px 0 64px; }
  .atlas-hero-plate { min-height: 315px; }
  .atlas-hero-plate strong { right: 22px; bottom: 54px; font-size: 4.7rem; }
  .atlas-plate-caption { right: 22px; bottom: 20px; font-size: 0.62rem; }
  .field-note { min-height: 0; padding: 23px; }
  .field-rail { padding: 22px 19px; }
  .guide-section { grid-template-columns: 34px 1fr; gap: 12px; padding-bottom: 31px; margin-bottom: 31px; }
  .guide-section h2 { font-size: 2.45rem; }
  .correction-card { padding: 26px 22px; }
  .empty-state { padding: 42px 22px; }
  .faq-list summary { font-size: 1.35rem; }
  .faq-list details p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
