:root {
  --bg: #efe7db;
  --bg-deep: #19342d;
  --surface: rgba(255, 249, 241, 0.8);
  --surface-strong: #fff9f2;
  --text: #171b18;
  --muted: #5c675f;
  --green: #21473d;
  --green-2: #2f5d50;
  --orange: #d77f4a;
  --orange-2: #b9622e;
  --line: rgba(23, 27, 24, 0.08);
  --shadow: 0 24px 60px rgba(25, 52, 45, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --wrap: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 127, 74, 0.14), transparent 26%),
    radial-gradient(circle at right 20%, rgba(33, 71, 61, 0.12), transparent 24%),
    var(--bg);
}

body::selection {
  background: rgba(215, 127, 74, 0.22);
}

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

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

p {
  margin: 0 0 1rem;
  line-height: 1.55;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 0.98;
  text-wrap: pretty;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  max-width: 9.6ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 231, 219, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-row {
  min-height: 78px;
}

.brand {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg-deep);
  color: white !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.98);
  transform: scale(1.03);
}

.hero-wash {
  background:
    linear-gradient(95deg, rgba(14, 24, 21, 0.88) 0%, rgba(14, 24, 21, 0.64) 46%, rgba(14, 24, 21, 0.18) 76%, rgba(14, 24, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(15, 29, 25, 0.12), rgba(15, 29, 25, 0.36));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr minmax(320px, 420px);
  gap: 28px;
  align-items: end;
  padding: 110px 0 70px;
}

.eyebrow,
.label {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.eyebrow {
  color: rgba(255, 249, 241, 0.74);
}

.label {
  color: var(--green-2);
}

.label.soft {
  color: rgba(255, 249, 241, 0.72);
}

.hero-copy h1,
.hero-copy .lead {
  color: white;
}

.lead {
  max-width: 36rem;
  font-size: 1.12rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-pill:hover,
.nav-pill:focus-visible {
  transform: translateY(-2px);
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 20px 38px rgba(185, 98, 46, 0.28);
}

.secondary {
  color: white;
  background: var(--bg-deep);
}

.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.dark-ghost {
  color: var(--bg-deep);
  border-color: rgba(25, 52, 45, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.hero-card,
.story-card,
.visit-card,
.faq-list details,
.cta-panel,
.quickband-grid > div {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  background: rgba(255, 249, 241, 0.14);
  color: white;
  backdrop-filter: blur(18px);
}

.hero-badge {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

.info-block + .info-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.info-block span,
.quickband-grid span,
.stack-row span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 249, 241, 0.68);
}

.info-block strong,
.stack-row strong,
.quickband-grid strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.info-block small,
.stack-row small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 249, 241, 0.72);
}

.quickband {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.quickband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quickband-grid > div {
  padding: 18px;
  background: rgba(255, 249, 241, 0.88);
}

.quickband-grid span {
  color: rgba(92, 103, 95, 0.8);
}

.section {
  padding: 100px 0;
}

.section-head.compact h2 {
  max-width: 8ch;
}

.showcase-grid,
.visit-grid,
.faq-grid {
  display: grid;
  gap: 28px;
}

.showcase-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 18px;
}

.tile {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.tile.tall {
  grid-row: 1 / span 2;
}

.offset-a img {
  object-position: left center;
}

.offset-b img {
  object-position: right center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
}

.story-card,
.visit-card,
.faq-list details,
.cta-panel {
  padding: 28px;
  background: rgba(255, 249, 241, 0.84);
}

.story-card.dark,
.cta-panel {
  background: linear-gradient(150deg, rgba(25, 52, 45, 0.98), rgba(33, 71, 61, 0.92));
}

.story-card.dark h3,
.story-card.dark p,
.cta-panel h2,
.cta-panel p {
  color: white;
}

.visit-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 249, 241, 0.75);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(25, 52, 45, 0.08);
  font-weight: 700;
}

.visit-card {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.94), rgba(255, 245, 236, 0.9));
}

.stack-row {
  padding: 18px;
  border-radius: 20px;
  background: rgba(33, 71, 61, 0.06);
  border: 1px solid rgba(25, 52, 45, 0.08);
}

.stack-row span {
  color: rgba(92, 103, 95, 0.78);
}

.stack-row small {
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.04rem;
}

.faq-list details summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  margin-bottom: 10px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 18px;
}

.site-footer {
  padding: 28px 0 108px;
  border-top: 1px solid rgba(23, 27, 24, 0.06);
}

.footer-meta {
  text-align: right;
}

.mobile-bar {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.9);
  box-shadow: 0 18px 38px rgba(25, 52, 45, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-bar a {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg-deep);
  color: white;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid,
  .showcase-grid,
  .story-grid,
  .visit-grid,
  .faq-grid,
  .cta-panel,
  .quickband-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 96px 0 54px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .top-nav {
    display: none;
  }

  .site-header {
    position: static;
  }

  h1 {
    max-width: 8.5ch;
  }

  .lead,
  p {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero-card,
  .story-card,
  .visit-card,
  .faq-list details,
  .cta-panel,
  .quickband-grid > div {
    padding: 22px;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .visit-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tile.tall {
    grid-row: auto;
  }

  .mobile-bar {
    display: grid;
  }
}

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

  .button,
  .nav-pill {
    transition: none;
  }
}
