:root {
  color-scheme: light;
  --ink: #142528;
  --ink-soft: #405258;
  --paper: #fbf8f1;
  --paper-deep: #efe8dc;
  --white: #ffffff;
  --moss: #0f5e57;
  --moss-dark: #0a3d39;
  --gold: #d79a38;
  --clay: #a8563b;
  --sea: #347b92;
  --line: rgba(20, 37, 40, 0.14);
  --shadow: 0 24px 70px rgba(13, 31, 35, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(15, 31, 35, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 54px;
  height: auto;
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  background: var(--gold);
  color: #1c160c;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

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

.button-primary {
  background: var(--gold);
  color: #1e170b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .button-secondary,
.site-header.is-open .button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-light {
  margin-top: 28px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 88svh;
  padding: 130px clamp(20px, 5vw, 72px) 66px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay,
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 21, 25, 0.88) 0%, rgba(9, 21, 25, 0.62) 42%, rgba(9, 21, 25, 0.14) 78%),
    linear-gradient(180deg, rgba(9, 21, 25, 0.34) 0%, rgba(9, 21, 25, 0.08) 62%, rgba(251, 248, 241, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  font-size: clamp(56px, 9vw, 116px);
}

h2 {
  max-width: 780px;
  font-size: clamp(38px, 5.8vw, 76px);
}

h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-copy {
  width: min(640px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 42px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  background: rgba(11, 28, 31, 0.36);
}

.hero-stats dt {
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-phone {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: -72px;
  z-index: 1;
  width: min(25vw, 300px);
  min-width: 210px;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.42));
}

.section,
.intro-band,
.product-section,
.places,
.proof,
.contact,
.site-footer {
  position: relative;
}

.section,
.product-section,
.places,
.proof {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-band {
  padding: 34px clamp(20px, 5vw, 72px) 68px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.lead {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.02;
}

.intro-grid p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 19px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading.compact {
  display: block;
}

.steps,
.launch-grid,
.owner-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.launch-card,
.owner-points article {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.step-number,
.launch-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.step-card p,
.launch-card p,
.owner-points p,
.place-card p,
.product-copy p,
.media-copy p,
.proof p,
.faq p,
.contact p {
  color: var(--ink-soft);
}

.step-card p,
.launch-card p,
.owner-points p {
  margin-top: 14px;
}

.product-section {
  background: linear-gradient(180deg, #173236 0%, #102528 100%);
  color: var(--white);
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 430px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.product-copy p,
.product-copy .feature-list li,
.media-copy p,
.proof p,
.contact p {
  font-size: 18px;
}

.product-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(215, 154, 56, 0.14);
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 640px;
}

.phone-stage img {
  width: min(320px, 82%);
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.38));
}

.places {
  background: #f4efe5;
}

.place-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.95fr;
  gap: 18px;
  margin-top: 46px;
}

.place-card {
  display: grid;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(26, 34, 30, 0.12);
}

.place-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.place-card:nth-child(2) img {
  object-position: 50% 32%;
}

.place-card div {
  padding: 24px;
}

.place-card p {
  margin-top: 12px;
}

.contrast {
  background: var(--paper);
}

.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.owner-points {
  grid-template-columns: 1fr;
}

.owner-points article {
  min-height: 0;
  background: var(--white);
}

.owner-points article:nth-child(2) {
  border-left: 6px solid var(--gold);
}

.owner-points article:nth-child(3) {
  border-left: 6px solid var(--sea);
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 650px;
  background: #18282b;
  color: var(--white);
}

.media-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 92px);
}

.media-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.launch {
  background: var(--paper-deep);
}

.launch-card {
  background: var(--white);
}

.launch-card:nth-child(2) span {
  background: var(--clay);
}

.launch-card:nth-child(3) span {
  background: var(--sea);
}

.proof {
  overflow: hidden;
  background: var(--moss-dark);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.proof p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.proof-actions .button-light {
  margin-top: 0;
}

.qr-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px 12px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.qr-card img {
  width: 108px;
  height: 108px;
  border-radius: 6px;
  background: var(--white);
  padding: 6px;
}

.qr-card strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.qr-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-photo {
  width: min(390px, 100%);
  height: 520px;
  justify-self: end;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 36%;
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 7vw, 86px);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
}

details p {
  padding: 0 24px 24px;
}

.contact {
  isolation: isolate;
  min-height: 620px;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 72px);
  color: var(--white);
  overflow: hidden;
}

.contact-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 20, 22, 0.9) 0%, rgba(7, 20, 22, 0.66) 48%, rgba(7, 20, 22, 0.16) 100%),
    url("assets/hero-visitors.jpg");
  background-size: cover;
  background-position: center;
}

.contact-content {
  max-width: 780px;
}

.contact p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: #101b1d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 1080px) {
  .hero-phone {
    opacity: 0.42;
    right: -34px;
  }

  .place-grid {
    grid-template-columns: 1fr 1fr;
  }

  .place-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
  }

  .hero-phone {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .hero-stats div {
    min-height: 74px;
  }

  .intro-grid,
  .section-heading,
  .product-grid,
  .owner-grid,
  .media-feature,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 30px;
  }

  .phone-stage {
    min-height: 0;
  }

  .phone-stage img {
    width: min(290px, 78vw);
  }

  .place-grid {
    grid-template-columns: 1fr;
  }

  .place-card:last-child {
    grid-column: auto;
  }

  .media-feature img {
    min-height: 360px;
  }

  .proof-photo {
    justify-self: start;
    height: 420px;
  }
}

@media (max-width: 580px) {
  .brand img {
    width: 46px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 84svh;
    padding: 104px 18px 44px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero-copy,
  .product-copy p,
  .product-copy .feature-list li,
  .media-copy p,
  .proof p,
  .contact p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .proof-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .qr-card {
    width: 100%;
    max-width: none;
  }

  .section,
  .product-section,
  .places,
  .proof {
    padding: 70px 18px;
  }

  .intro-band {
    padding: 26px 18px 54px;
  }

  .step-card,
  .launch-card,
  .owner-points article {
    padding: 24px;
  }

  .place-card {
    min-height: 0;
  }

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

  .media-copy {
    padding: 48px 22px;
  }

  .contact {
    padding: 76px 18px;
  }

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

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