:root {
  --paper: #f8f3ea;
  --paper-soft: #fffaf2;
  --ink: #262321;
  --muted: #675f58;
  --line: #dcccbc;
  --charcoal: #262321;
  --sand: #efe5d8;
  --terracotta: #d4632f;
  --olive: #6e7c4f;
  --ocean: #176b73;
  --wine: #7a3446;
  --gold: #d69a35;
  --white: #fffdf8;
  --shadow: 0 20px 48px rgba(38, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 2%, rgba(196, 102, 63, 0.2), transparent 25rem),
    radial-gradient(circle at 86% 0%, rgba(23, 107, 115, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--paper-soft), var(--paper) 46%, var(--sand));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 204, 188, 0.9);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.brand strong {
  color: var(--charcoal);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ocean);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  border-radius: 7px;
  padding: 0.55rem 0.78rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(212, 99, 47, 0.16), rgba(214, 154, 53, 0.18));
  color: #a94825;
}

.main {
  overflow: hidden;
}

.section {
  padding: 5.6rem 0;
}

.section.tight {
  padding-top: 3.8rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 4.4rem 0;
  background:
    linear-gradient(112deg, rgba(255, 250, 242, 0.3), rgba(239, 229, 216, 0.52)),
    radial-gradient(circle at 72% 46%, rgba(214, 154, 53, 0.14), transparent 22rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--ocean);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  font-weight: 520;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 520;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 820px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero .lead {
  max-width: 760px;
}

.supporting-line {
  margin-top: 1.15rem;
  color: var(--charcoal);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--terracotta);
  border-radius: 8px;
  padding: 0.75rem 1.05rem;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--wine);
  background: var(--wine);
}

.button.secondary {
  background: transparent;
  color: var(--terracotta);
}

.button.secondary:hover {
  background: rgba(212, 99, 47, 0.09);
  color: var(--wine);
}

.button.disabled {
  border-color: var(--line);
  background: rgba(48, 45, 42, 0.08);
  color: var(--muted);
  cursor: not-allowed;
  pointer-events: none;
}

.hero-panel {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(23, 107, 115, 0.22);
  border-radius: 8px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 32% 28%, rgba(214, 154, 53, 0.28), transparent 8rem),
    radial-gradient(circle at 78% 68%, rgba(23, 107, 115, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(239, 229, 216, 0.82)),
    repeating-linear-gradient(90deg, rgba(122, 52, 70, 0.1) 0 1px, transparent 1px 72px);
  box-shadow: var(--shadow);
}

.map-card {
  position: absolute;
  border: 1px solid rgba(38, 35, 33, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 12px 30px rgba(48, 45, 42, 0.08);
}

.map-card strong {
  color: var(--charcoal);
  display: block;
  font-size: 1.05rem;
}

.map-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-card.north {
  top: 14%;
  right: 12%;
  border-left: 5px solid var(--ocean);
}

.map-card.coast {
  left: 8%;
  bottom: 26%;
  border-left: 5px solid var(--terracotta);
}

.map-card.wine {
  right: 9%;
  bottom: 10%;
  border-left: 5px solid var(--olive);
}

.engine-core {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(214, 154, 53, 0.7);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--terracotta), var(--wine));
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.engine-core strong {
  max-width: 110px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  border: 1px solid rgba(220, 204, 188, 0.95);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 25px rgba(38, 35, 33, 0.055);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--terracotta), var(--gold), var(--ocean));
  opacity: 0;
  transition: opacity 160ms ease;
}

.card:hover {
  border-color: rgba(212, 99, 47, 0.42);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  background: linear-gradient(135deg, rgba(212, 99, 47, 0.15), rgba(214, 154, 53, 0.2));
  color: #98451f;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.68), rgba(239, 229, 216, 0.64)),
    radial-gradient(circle at 8% 18%, rgba(196, 102, 63, 0.09), transparent 24rem);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.step {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.05rem;
  background: linear-gradient(180deg, var(--white), rgba(239, 229, 216, 0.35));
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ocean), var(--terracotta));
  color: var(--white);
  font-weight: 850;
}

.plan-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.plan-card small {
  color: var(--ocean);
  font-weight: 850;
  text-transform: uppercase;
}

.page-hero {
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 82% 8%, rgba(23, 107, 115, 0.16), transparent 23rem),
    radial-gradient(circle at 14% 26%, rgba(196, 102, 63, 0.15), transparent 20rem);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5.15rem);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(220, 204, 188, 0.95);
  border-radius: 8px;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  background: linear-gradient(135deg, var(--white), rgba(239, 229, 216, 0.35));
  box-shadow: 0 12px 30px rgba(38, 35, 33, 0.055);
  overflow: hidden;
}

.timeline-label {
  border-right: 1px solid var(--line);
  padding-right: clamp(1rem, 2vw, 1.5rem);
  min-width: 0;
}

.timeline-label span {
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-label h2 {
  max-width: 100%;
  margin-top: 0.4rem;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.timeline-item > div:last-child {
  min-width: 0;
}

ul {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.45rem;
}

.rhythm {
  display: grid;
  gap: 0.75rem;
}

.rhythm-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.rhythm-row strong {
  color: var(--ocean);
}

.report-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.78);
}

.metric strong {
  display: block;
  color: var(--wine);
  font-size: 1.25rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.venue-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.venue-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.venue-card .region {
  margin-bottom: 0.8rem;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lens-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.lens-list div {
  border-top: 1px solid rgba(220, 204, 188, 0.9);
  padding-top: 0.65rem;
  color: var(--muted);
}

.lens-list strong {
  display: block;
  color: var(--charcoal);
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 154, 53, 0.18), transparent 11rem),
    linear-gradient(145deg, var(--charcoal), #173f44);
  color: var(--white);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card p,
.contact-card a,
.contact-card li {
  color: rgba(255, 253, 248, 0.82);
}

.notice {
  border: 1px dashed rgba(214, 154, 53, 0.7);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(214, 154, 53, 0.1);
  color: rgba(255, 253, 248, 0.84);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: rgba(255, 250, 242, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer {
  max-width: 520px;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .profile,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }

  .grid.three,
  .grid.four,
  .steps,
  .report-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 14px 0.9rem;
    background: rgba(255, 250, 242, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.82rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 3.2rem 0;
  }

  .hero-panel {
    min-height: 430px;
  }

  .engine-core {
    width: 140px;
    height: 140px;
  }

  .map-card {
    max-width: 180px;
  }

  .map-card.north {
    top: 7%;
    right: 4%;
  }

  .map-card.coast {
    left: 4%;
    bottom: 25%;
  }

  .map-card.wine {
    right: 4%;
  }

  .section-head,
  .footer-grid {
    display: block;
  }

  .section-head p {
    margin-top: 1rem;
  }

  .disclaimer {
    margin-top: 1rem;
    text-align: left;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .steps,
  .report-preview {
    grid-template-columns: 1fr;
  }

  .rhythm-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
