:root {
  --pine-950: #09231c;
  --pine-900: #113a2e;
  --pine-800: #18503c;
  --pine-700: #23684c;
  --leaf: #7fa88a;
  --leaf-soft: #e1ebdf;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sand: #efe1c7;
  --gold: #c7a45c;
  --clay: #a36448;
  --ink: #17241e;
  --muted: #68756f;
  --line: rgba(17, 58, 46, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 84px rgba(9, 35, 28, 0.14);
  --shadow-deep: 0 34px 120px rgba(9, 35, 28, 0.3);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

/* Search guide pages */
.guide-page {
  min-width: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(127, 168, 138, 0.18), transparent 28rem),
    linear-gradient(180deg, #fbf7ef 0%, #f5eddf 58%, #edf4ec 100%);
}

.guide-header {
  position: relative;
  top: auto;
  margin-top: 18px;
}

.guide-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 96px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--pine-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-article {
  min-width: 0;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.guide-hero h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  color: var(--pine-950);
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  text-shadow: none;
}

.guide-deck {
  max-width: 58ch;
  margin-bottom: 22px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.guide-byline {
  margin: 0;
  color: var(--pine-800);
  font-size: 0.9rem;
}

.guide-byline a,
.guide-content a:not(.button),
.text-link {
  color: var(--pine-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.guide-hero figure {
  margin: 0;
}

.guide-hero figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 64px rgba(9, 35, 28, 0.2);
}

.guide-hero figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 42px;
  margin-top: 46px;
}

.guide-content {
  min-width: 0;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 20px 70px rgba(9, 35, 28, 0.08);
}

.guide-content section + section {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.guide-content h2,
.guide-cta h2 {
  max-width: 22ch;
  margin-bottom: 18px;
  color: var(--pine-950);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.02;
}

.guide-content h3 {
  color: var(--pine-900);
  font-size: 1.2rem;
}

.guide-content p,
.guide-content li {
  font-size: 1.03rem;
  line-height: 1.8;
}

.guide-content li + li {
  margin-top: 10px;
}

.answer-box {
  padding: 26px 28px;
  border-left: 5px solid var(--gold);
  border-radius: 0 20px 20px 0;
  background: var(--leaf-soft);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pine-900);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.answer-box p {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.guide-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.guide-table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--paper);
}

.guide-table-wrap th,
.guide-table-wrap td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.guide-table-wrap thead th {
  color: var(--paper);
  background: var(--pine-900);
}

.guide-table-wrap tbody th {
  color: var(--pine-900);
  background: rgba(225, 235, 223, 0.56);
}

.guide-table-wrap tr:last-child th,
.guide-table-wrap tr:last-child td {
  border-bottom: 0;
}

.guide-faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.guide-faq summary {
  color: var(--pine-950);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.guide-faq details p {
  margin: 14px 0 0;
}

.guide-sources ul {
  padding-left: 20px;
}

.guide-cta {
  position: sticky;
  top: 24px;
  padding: 30px;
  border-radius: 26px;
  color: var(--paper);
  background: var(--pine-950);
  box-shadow: var(--shadow);
}

.guide-cta h2,
.guide-cta p,
.guide-cta .eyebrow {
  color: var(--paper);
}

.guide-cta h2 {
  font-size: 2rem;
}

.guide-cta .button {
  width: 100%;
  margin-top: 8px;
  color: var(--pine-950);
  background: var(--paper);
}

.guide-cta .text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--paper);
}

.guide-footer {
  margin-top: 0;
}

@media (max-width: 1060px) {
  .guide-header {
    position: sticky;
    top: 10px;
  }

  .guide-hero,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-hero figure {
    max-width: 760px;
  }

  .guide-cta {
    position: static;
  }
}

@media (max-width: 620px) {
  .guide-main {
    width: min(100% - 24px, var(--max));
    padding-top: 170px;
  }

  .guide-hero {
    gap: 28px;
    padding: 26px 20px 20px;
    border-radius: 28px;
  }

  .guide-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .guide-hero figure img {
    border-radius: 22px;
  }

  .guide-layout {
    gap: 24px;
    margin-top: 24px;
  }

  .guide-content,
  .guide-cta {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .answer-box {
    padding: 22px 20px;
  }

  .guide-content p,
  .guide-content li {
    font-size: 1rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#home,
#ideas,
#how-it-works,
#about,
#faq,
#plan {
  scroll-margin-top: 142px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 164, 92, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0%, #f7efe1 44%, #eff5ee 100%);
}

img,
video {
  display: block;
  width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

p {
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  max-width: 16ch;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(2.1rem, 3.9vw, 4.24rem);
  line-height: 1;
  text-shadow: 0 4px 32px rgba(9, 35, 28, 0.52);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: var(--pine-950);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  color: var(--pine-950);
  font-size: 1.24rem;
  line-height: 1.24;
}

.top-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 18px;
  min-height: 36px;
  padding: 9px 18px;
  color: rgba(251, 247, 239, 0.82);
  font-size: 0.82rem;
  font-weight: 760;
  background: var(--pine-950);
}

.top-strip a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 60;
  padding: 10px 14px;
  color: var(--paper);
  border-radius: 12px;
  background: var(--pine-800);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 50px clamp(14px, 4vw, 44px) auto;
  z-index: 38;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: auto;
  max-width: calc(100% - clamp(28px, 8vw, 88px));
  padding: 12px 14px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 64px rgba(9, 35, 28, 0.14);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 320px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(17, 58, 46, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--pine-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 11px 13px;
  color: var(--pine-900);
  font-size: 0.9rem;
  font-weight: 820;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(127, 168, 138, 0.18);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--pine-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--leaf-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--pine-900);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--pine-950);
}

.hero-reel,
.hero-clip,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-clip {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 520ms ease;
}

.hero-clip.is-active {
  opacity: 0.94;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 35, 28, 0.7) 0%, rgba(9, 35, 28, 0.44) 43%, rgba(9, 35, 28, 0.08) 100%),
    radial-gradient(circle at 74% 46%, rgba(251, 247, 239, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(9, 35, 28, 0.08), rgba(9, 35, 28, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(860px, calc(100% - clamp(44px, 8vw, 92px)));
  min-height: 100vh;
  padding: 186px 0 88px;
  margin-left: clamp(34px, 4vw, 58px);
  margin-right: auto;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(2.4rem, 3.55vw, 3.74rem);
}

.hero-inner > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(251, 247, 239, 0.94);
  font-size: 1.14rem;
  text-shadow: 0 2px 18px rgba(9, 35, 28, 0.42);
}

.hero-actions,
.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  max-width: 620px;
  margin: 8px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  border-radius: 22px;
  background: rgba(9, 35, 28, 0.34);
  backdrop-filter: blur(14px);
}

.hero-proof p {
  margin: 0;
  color: rgba(251, 247, 239, 0.9);
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(9, 35, 28, 0.38);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--pine-950);
  background: var(--paper);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.button.secondary {
  color: var(--paper);
  border: 1px solid rgba(251, 247, 239, 0.38);
  background: rgba(251, 247, 239, 0.1);
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--pine-700);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light,
.hero .eyebrow.light {
  color: rgba(251, 247, 239, 0.74);
  text-shadow: 0 2px 16px rgba(9, 35, 28, 0.48);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  padding: 96px 0;
  margin-inline: auto;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-intro.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 42px;
  max-width: none;
  align-items: end;
}

.positioning-section {
  padding-top: 74px;
  padding-bottom: 42px;
}

.positioning-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 4.2vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(199, 164, 92, 0.18), transparent 28rem),
    rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow);
}

.positioning-copy {
  position: relative;
  z-index: 1;
}

.positioning-card h2 {
  max-width: 9ch;
}

.positioning-copy > p:last-child {
  max-width: 42ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.positioning-art {
  min-width: 0;
  margin: -18px -28px -18px 0;
}

.positioning-art picture,
.positioning-art img {
  display: block;
  width: 100%;
}

.positioning-art img {
  height: auto;
  object-fit: contain;
}

.outcomes-section {
  padding-top: 54px;
  padding-bottom: 72px;
}

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

.outcomes-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 44px rgba(9, 35, 28, 0.08);
}

.outcomes-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.12em;
}

.outcomes-grid p {
  margin-bottom: 0;
}

.process-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

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

.process-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 44px rgba(9, 35, 28, 0.08);
}

.process-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--pine-900);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-grid h3 {
  max-width: 13ch;
}

.process-grid p {
  margin-bottom: 0;
}

.finder-section {
  padding-top: 96px;
}

.finder-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 50px rgba(9, 35, 28, 0.08);
}

.finder-tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--pine-900);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.finder-tabs button.is-active {
  color: var(--paper);
  background: var(--pine-900);
}

.finder-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.finder-panel.is-active {
  display: grid;
}

.finder-panel article,
.why-grid article,
.faq-list details,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.finder-panel article {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.finder-panel span,
.idea-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--pine-800);
}

.finder-panel h3 {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.finder-panel a,
.idea-card a,
.text-link {
  color: var(--pine-800);
  font-weight: 920;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.cultural-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.cultural-copy {
  position: sticky;
  top: 140px;
}

.attraction-orb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(17, 58, 46, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(127, 168, 138, 0.2), transparent 18rem),
    rgba(255, 253, 248, 0.58);
  box-shadow: var(--shadow);
}

.attraction-orb {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.86);
  border-radius: 50%;
  background: var(--pine-950);
  box-shadow: 0 20px 54px rgba(9, 35, 28, 0.16);
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: none;
}

.attraction-orb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.attraction-orb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 253, 248, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(9, 35, 28, 0.05), rgba(9, 35, 28, 0.78));
  opacity: 0.68;
  transition: opacity 320ms ease;
}

.attraction-orb span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: 82%;
  padding: 10px;
  text-align: center;
  transform: translateY(22px);
  transition: transform 320ms ease;
}

.attraction-orb strong {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.7vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.attraction-orb small {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(251, 247, 239, 0.86);
  font-size: clamp(0.64rem, 0.9vw, 0.78rem);
  font-weight: 760;
  line-height: 1.28;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: opacity 320ms ease;
}

.attraction-orb:hover img,
.attraction-orb:focus-visible img,
.attraction-orb.is-previewing img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.08);
}

.attraction-orb:hover::after,
.attraction-orb:focus-visible::after,
.attraction-orb.is-previewing::after {
  opacity: 0.92;
}

.attraction-orb:hover span,
.attraction-orb:focus-visible span,
.attraction-orb.is-previewing span {
  transform: translateY(0);
}

.attraction-orb:hover small,
.attraction-orb:focus-visible small,
.attraction-orb.is-previewing small {
  opacity: 1;
}

.attraction-lightbox[hidden] {
  display: none;
}

body.has-lightbox {
  overflow: hidden;
}

.attraction-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
}

.attraction-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 28, 22, 0.66);
  cursor: zoom-out;
}

.attraction-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 92vw);
  max-height: min(88vh, 820px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.76);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(4, 22, 17, 0.38);
}

.attraction-lightbox__panel img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  background: var(--pine-950);
}

.attraction-lightbox__panel figcaption {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
}

.attraction-lightbox__panel h3 {
  margin: 0;
  color: var(--pine-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.attraction-lightbox__panel p {
  margin: 0;
  max-width: 58rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.6;
}

.attraction-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 999px;
  background: rgba(5, 28, 22, 0.72);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.ideas-section {
  padding-top: 60px;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.idea-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow);
}

.idea-card img {
  height: 250px;
  object-fit: cover;
}

.idea-mountains img {
  object-position: center 42%;
}

.idea-opera img {
  object-position: center 42%;
}

.idea-hotpot img {
  object-position: center 58%;
}

.idea-panda img {
  object-position: 42% center;
}

.idea-card div {
  padding: 26px;
}

.idea-card h3 {
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.why-section {
  padding-top: 60px;
}

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

.why-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.specialist-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  color: var(--paper);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(9, 35, 28, 0.96), rgba(17, 58, 46, 0.84)),
    radial-gradient(circle at top right, rgba(199, 164, 92, 0.28), transparent 22rem);
  box-shadow: var(--shadow-deep);
}

.specialist-cta > *,
.lead-section > * {
  min-width: 0;
}

.specialist-cta h2 {
  max-width: 820px;
  color: var(--paper);
}

.specialist-cta .button.primary {
  color: var(--pine-950);
  background: var(--paper);
}

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

.faq-list details {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
}

.faq-list summary {
  color: var(--pine-950);
  font-weight: 920;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.faq-list a,
.form-disclosure a,
.site-footer a:not(.button) {
  color: var(--pine-800);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: 120px;
}

#plan {
  scroll-margin-top: 156px;
}

.lead-copy {
  position: sticky;
  top: 140px;
}

.lead-copy h2 {
  max-width: 11.4ch;
  font-size: clamp(2.72rem, 3.95vw, 4.1rem);
  line-height: 1.02;
}

.lead-copy h2 span {
  display: block;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: 34px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--pine-950);
  font-size: 0.92rem;
  font-weight: 900;
}

.lead-form label small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}

.optional {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(17, 58, 46, 0.22);
  border-radius: 16px;
  outline: none;
  background: #fffdf8;
}

.form-disclosure {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(236, 241, 231, 0.56);
}

.interest-field {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.56);
}

.interest-field legend {
  padding: 0 6px;
  color: var(--pine-950);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.lead-form .interest-options label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 58, 46, 0.14);
  border-radius: 14px;
  background: #fffdf8;
  cursor: pointer;
}

.lead-form .interest-options input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  accent-color: var(--pine-800);
}

.lead-form .interest-options span {
  font-size: 0.88rem;
  font-weight: 760;
}

.form-disclosure legend {
  padding: 0 6px;
  color: var(--pine-950);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-disclosure p {
  margin: 4px 0 14px;
  font-size: 0.9rem;
}

.lead-form label.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.55;
}

.lead-form .consent input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 2px 0 0;
  accent-color: var(--pine-800);
}

.date-field {
  position: relative;
}

.date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  border: 1px solid rgba(17, 58, 46, 0.22);
  border-radius: 16px;
  outline: none;
  background: #fffdf8;
  cursor: pointer;
}

.date-trigger span:last-child {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-trigger:focus {
  border-color: var(--pine-700);
  box-shadow: 0 0 0 4px rgba(127, 168, 138, 0.2);
}

.date-picker-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 25;
  width: min(360px, 92vw);
  padding: 16px;
  border: 1px solid rgba(17, 58, 46, 0.18);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 24px 60px rgba(9, 35, 28, 0.2);
}

.date-picker-panel[hidden] {
  display: none;
}

.date-picker-header {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.date-picker-header strong {
  color: var(--pine-950);
  font-size: 1rem;
  text-align: center;
}

.date-picker-header button,
.date-picker-grid button {
  min-height: 38px;
  border: 1px solid rgba(17, 58, 46, 0.14);
  border-radius: 12px;
  background: rgba(236, 241, 231, 0.72);
  color: var(--pine-950);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.date-picker-header button:hover,
.date-picker-grid button:hover,
.date-picker-grid button:focus {
  border-color: var(--pine-700);
  background: rgba(17, 58, 46, 0.1);
  outline: none;
}

.date-picker-weekdays,
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.date-picker-weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.date-picker-grid button.is-selected {
  background: var(--pine-900);
  color: var(--paper);
}

.date-picker-grid button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.date-picker-grid button:disabled:hover,
.date-picker-grid button:disabled:focus {
  border-color: rgba(17, 58, 46, 0.14);
  background: rgba(236, 241, 231, 0.72);
  outline: none;
}

.date-picker-grid span {
  min-height: 38px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--pine-700);
  box-shadow: 0 0 0 4px rgba(127, 168, 138, 0.2);
}

.lead-form .button.primary {
  color: var(--paper);
  background: var(--pine-900);
  box-shadow: 0 18px 40px rgba(17, 58, 46, 0.18);
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.full {
  grid-column: 1 / -1;
}

.hidden {
  display: none;
}

.form-footer {
  justify-content: space-between;
  padding-top: 8px;
}

.form-footer p {
  max-width: 400px;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: rgba(251, 247, 239, 0.82);
  background: var(--pine-950);
}

.site-footer p {
  max-width: 660px;
  margin: 8px 0 0;
  color: rgba(251, 247, 239, 0.68);
}

.site-footer .footer-meta {
  font-size: 0.78rem;
}

.site-footer .footer-meta a {
  color: rgba(251, 247, 239, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  align-content: flex-start;
}

.site-footer .footer-links a {
  color: rgba(251, 247, 239, 0.9);
  text-decoration: none;
}

.simple-page {
  display: grid;
  min-height: 100vh;
  padding: 40px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 164, 92, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream), #f7efe1);
}

.simple-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 32px;
  width: min(920px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.simple-card h1 {
  max-width: none;
  color: var(--pine-950);
  font-size: clamp(3.4rem, 8vw, 6rem);
}

.simple-card .button.primary {
  color: var(--paper);
  background: var(--pine-900);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 40px));
  padding: 22px 0;
  margin-inline: auto;
}

.legal-header .brand {
  min-width: 0;
}

.legal-header__button {
  min-height: 46px;
  color: var(--paper);
  background: var(--pine-900);
  box-shadow: none;
}

.legal-main {
  width: min(940px, calc(100% - 40px));
  padding: 44px 0 96px;
  margin-inline: auto;
}

.legal-card {
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 16ch;
  margin-bottom: 28px;
  color: var(--pine-950);
  font-size: clamp(3rem, 7vw, 5.7rem);
  text-shadow: none;
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--pine-950);
  font-family: inherit;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
}

.legal-card section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-card section p,
.legal-lede {
  max-width: 68ch;
  margin-bottom: 0;
}

.legal-lede {
  margin-bottom: 36px;
  color: var(--pine-800);
  font-size: 1.15rem;
  font-weight: 650;
}

.legal-card a:not(.button) {
  color: var(--pine-800);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-links,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 26px;
}

.legal-links a {
  color: var(--pine-800);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-clip,
  .button {
    transition: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .finder-panel,
  .section-intro.split,
  .cultural-section,
    .process-grid,
    .outcomes-grid,
    .idea-grid,
  .why-grid,
  .specialist-cta,
  .lead-section,
  .simple-card {
    grid-template-columns: 1fr;
  }

  .cultural-copy,
  .lead-copy {
    position: static;
  }

  .attraction-orb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-copy h2 {
    max-width: 10.5ch;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-header,
  .legal-main {
    width: min(100% - 28px, var(--max));
  }
}

@media (max-width: 920px) {
  .positioning-card {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 42px);
  }

  .positioning-card h2 {
    max-width: 12ch;
  }

  .positioning-copy > p:last-child {
    max-width: 62ch;
  }

  .positioning-art {
    width: min(100%, 720px);
    margin: 0 auto -10px;
  }
}

@media (max-width: 680px) {
  .top-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 52px;
    padding: 8px 14px;
    line-height: 1.35;
    white-space: normal;
  }

  .site-header {
    inset: 64px 12px auto;
    max-width: calc(100% - 24px);
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .site-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .brand small {
    display: none;
  }

  .hero-inner,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    min-height: 100vh;
    padding: 184px 0 72px;
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .finder-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 22px;
  }

  .finder-panel,
    .process-grid,
    .outcomes-grid,
  .why-grid,
  .faq-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .interest-options {
    grid-template-columns: 1fr;
  }

  .attraction-orb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .attraction-orb span {
    transform: translateY(0);
  }

  .attraction-orb small {
    opacity: 1;
  }

  .attraction-lightbox__panel {
    border-radius: 24px;
  }

  .attraction-lightbox__panel img {
    height: min(56vh, 420px);
  }

  .idea-card img {
    height: 260px;
  }

  .specialist-cta,
  .lead-form,
  .simple-page {
    padding: 22px;
  }

  .positioning-card {
    padding: 30px 22px 22px;
  }

  .positioning-art {
    width: calc(100% + 24px);
    margin: 0 -12px -4px;
  }

  .legal-header {
    padding: 16px 0;
  }

  .legal-header .brand small {
    display: none;
  }

  .legal-header__button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .legal-main {
    padding: 22px 0 54px;
  }

  .legal-card {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .legal-card h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .form-footer,
  .site-footer,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .process-grid article {
    min-height: auto;
  }
}
