/* ================================================================
     DESIGN TOKENS
  ================================================================ */
:root {
  --bg: #020203;
  --bg-2: #09090b;
  --bg-3: #131316;
  --paper: #fff8ec;
  --paper-2: #e8decc;
  --ink: #020203;
  --text: #fffaf1;
  --text-dim: #d8d0c2;
  --text-faint: #a39888;
  --amber: #d0b16f;
  --amber-bright: #e0c789;
  --amber-dark: #8b774f;
  --rust: #b56a56;
  --line: rgba(255, 250, 241, 0.24);
  --line-strong: rgba(255, 250, 241, 0.48);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

/* ================================================================
     TYPOGRAPHY UTILITIES
  ================================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.eyebrow.no-line::before {
  display: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1 em,
h2 em,
h3 em {
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
}

p {
  color: var(--text-dim);
}

/* ================================================================
     LAYOUT HELPERS
  ================================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 56px;
  }
}

section {
  position: relative;
}

/* ================================================================
     HEADER / NAV
  ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease),
    padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(2, 2, 3, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
@media (min-width: 768px) {
  .header-inner {
    padding: 22px 40px;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    padding: 24px 56px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
  z-index: 2;
}

.logo img {
  width: 150px;
}

@media (max-width: 899px) {
  .logo img {
    width: 120px;
  }
}

footer .logo img {
  width: 120px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--amber);
  border-radius: 50%;
  animation: slowSpin 30s linear infinite;
}
.logo-mark::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

.logo-text {
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-top: 3px;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
}
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

/* Book Now button */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--amber);
  color: var(--bg);
  border: 1px solid var(--amber);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(208, 177, 111, 0.32);
}
.btn-book .arrow {
  transition: transform 0.25s var(--ease);
}
.btn-book:hover .arrow {
  transform: translateX(3px);
}

.btn-book-desktop {
  display: none;
}
@media (min-width: 900px) {
  .btn-book-desktop {
    display: inline-flex;
  }
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 2;
}
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 90px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  border-bottom: 1px solid var(--line);
  z-index: 1;
}
.nav-mobile.is-open {
  transform: translateY(0);
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mobile a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition:
    color 0.2s var(--ease),
    padding 0.3s var(--ease);
}
.nav-mobile a:hover {
  color: var(--amber);
  padding-left: 8px;
}

.nav-mobile .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.nav-mobile .mobile-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

/* Permanent mobile Book CTA (sticky bottom) */
.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: block;
  padding: 14px 20px;
  background: var(--amber);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 2px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(208, 177, 111, 0.55);
  transition: transform 0.3s var(--ease);
}
.mobile-cta:hover {
  transform: translateY(-2px);
}
@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 899px) {
  .hero .hero-ctas .btn-primary {
    display: none;
  }
}

/* Ensure content below fixed header */
main {
  padding-top: 0;
}

/* ================================================================
     PAGE VIEW SWITCHING
  ================================================================ */
.page {
  display: none;
}
.page.is-active {
  display: block;
  animation: pageIn 0.6s var(--ease-out) both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================
     HERO
  ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.hero-media::after {
  /* Darkening layer */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(2, 2, 3, 0.72) 0%,
      rgba(2, 2, 3, 0.48) 40%,
      rgba(2, 2, 3, 0.94) 85%,
      rgba(2, 2, 3, 1) 100%
    ),
    linear-gradient(to right, rgba(2, 2, 3, 0.62) 0%, transparent 50%);
}

/* Film grain */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 20px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-meta .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(181, 106, 86, 0.68);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 8px rgba(181, 106, 86, 0);
  }
}

.hero h1 {
  font-size: clamp(48px, 11vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--text);
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: inline-block;
  animation: revealUp 1.1s var(--ease-out) both;
}
.hero h1 .line:nth-child(2) > span {
  animation-delay: 0.15s;
}
.hero h1 .line:nth-child(3) > span {
  animation-delay: 0.3s;
}

@keyframes revealUp {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-sub {
  max-width: 540px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 40px;
  animation: fadeIn 1s var(--ease) 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeIn 1s var(--ease) 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--amber);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(208, 177, 111, 0.36);
}
.btn-primary .arrow {
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero corner frames (spy-thriller detail) */
.hero-frame {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--amber);
  opacity: 0.6;
}
.hero-frame.tl {
  top: 90px;
  left: 20px;
  border-right: 0;
  border-bottom: 0;
}
.hero-frame.tr {
  top: 90px;
  right: 20px;
  border-left: 0;
  border-bottom: 0;
}
.hero-frame.bl {
  bottom: 20px;
  left: 20px;
  border-right: 0;
  border-top: 0;
}
.hero-frame.br {
  bottom: 20px;
  right: 20px;
  border-left: 0;
  border-top: 0;
}
@media (min-width: 768px) {
  .hero-frame {
    width: 60px;
    height: 60px;
  }
  .hero-frame.tl,
  .hero-frame.tr {
    top: 100px;
  }
  .hero-frame.tl,
  .hero-frame.bl {
    left: 40px;
  }
  .hero-frame.tr,
  .hero-frame.br {
    right: 40px;
  }
  .hero-frame.bl,
  .hero-frame.br {
    bottom: 40px;
  }
}

/* ================================================================
     MARQUEE / TICKER
  ================================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-2);
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}
.ticker-item::after {
  content: "✦";
  color: var(--amber);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
     ABOUT / INTRO
  ================================================================ */
.about {
  padding: 120px 0 100px;
  position: relative;
}

.about-grid {
  display: grid;
  gap: 60px;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
  }
}

.section-title {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  margin: 20px 0 32px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.about-text p:last-child {
  color: var(--text-dim);
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.about-image:hover img {
  transform: scale(1.04);
}

.about-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(2, 2, 3, 0.96), transparent);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  justify-content: space-between;
}
.about-image-label .coords {
  color: var(--amber);
}

/* ================================================================
     EXPERIENCE STATS GRID
  ================================================================ */
.stats {
  padding: 80px 0 120px;
  border-top: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 640px) {
  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 32px;
  }
  .stat:nth-child(even) {
    padding-left: 32px;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (min-width: 900px) {
  .stat {
    padding: 40px 32px 40px 0;
    border-right: 1px solid var(--line);
  }
  .stat:nth-child(odd),
  .stat:nth-child(even) {
    padding-left: 20px;
    padding-right: 32px;
  }
  .stat:first-child {
    padding-left: 0;
  }
  .stat:last-child {
    border-right: 0;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .stats-grid .stat {
    border-bottom: 0;
  }
}

.stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ================================================================
     TESTIMONIALS
  ================================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.testimonial:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--amber);
  font-style: italic;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--text);
  margin: 24px 0 28px;
  font-weight: 300;
}

.testimonial cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial cite::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--amber);
}

/* ================================================================
     BIG CTA
  ================================================================ */
.big-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.big-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.big-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.4);
}
.big-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(2, 2, 3, 0.62),
    rgba(2, 2, 3, 0.96)
  );
}

.big-cta-content {
  position: relative;
  z-index: 2;
}

.big-cta h2 {
  font-size: clamp(44px, 7vw, 88px);
  max-width: 14ch;
  margin: 24px auto 28px;
}

.big-cta p {
  max-width: 48ch;
  margin: 0 auto 40px;
  color: var(--text);
  font-size: 17px;
}

/* ================================================================
     PAGE HEADER (non-home pages)
  ================================================================ */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(208, 177, 111, 0.14),
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(181, 106, 86, 0.08),
      transparent 50%
    );
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(48px, 9vw, 112px);
  line-height: 1;
  margin: 24px 0 24px;
  max-width: 14ch;
}

.page-header p {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 56ch;
  color: var(--text);
  line-height: 1.5;
}

/* ================================================================
     HOW IT WORKS STEPS
  ================================================================ */
#page-how .big-cta {
  border-top: 1px solid var(--line);
}

.steps {
  padding: 120px 0;
}

.step {
  display: grid;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child {
  border-bottom: 0;
}
@media (min-width: 900px) {
  .step {
    grid-template-columns: 180px 1fr 1fr;
    gap: 60px;
  }
}

.step-number {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: var(--amber);
  font-style: italic;
}
.step-number small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  margin-top: 8px;
  text-transform: uppercase;
}

.step-content h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.step-content p:last-child {
  color: var(--text-dim);
  margin-bottom: 0;
}

.step-visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.85);
}
.step-visual-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  background: rgba(2, 2, 3, 0.88);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(208, 177, 111, 0.5);
}

/* ================================================================
     PRICING
  ================================================================ */
#page-pricing .big-cta {
  border-top: 1px solid var(--line);
}

.pricing {
  padding: 120px 0;
}

.pricing-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.price-display {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 200px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 40px 0 16px;
  position: relative;
  display: inline-block;
}
.price-display .currency {
  font-size: 0.35em;
  vertical-align: top;
  color: var(--amber);
  margin-right: 8px;
  font-style: italic;
  font-weight: 300;
}
.price-display .per {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 16px;
}

.price-note {
  color: var(--text-dim);
  max-width: 48ch;
  margin: 16px auto 0;
}

.included {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.included h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 32px;
}

.included ul {
  list-style: none;
}

.included li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}
.included li:last-child {
  border-bottom: 0;
}
.included li::before {
  content: "✓";
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
}

.no-extras {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ================================================================
     GIFTS & GROUPS (two-col split)
  ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 2, 3, 0.55), transparent 50%);
}

.split-content {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .split-content {
    padding: 100px 56px;
  }
}
@media (min-width: 1200px) {
  .split-content {
    padding: 120px 80px;
  }
}

.split-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 20px 0 24px;
}

.split-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}

.split-list {
  list-style: none;
  margin: 24px 0 36px;
}
.split-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding-left: 24px;
}
.split-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ================================================================
     FAQ
  ================================================================ */
.faq {
  padding: 120px 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
details[open] {
  padding-bottom: 24px;
}

summary {
  list-style: none;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text);
  transition: color 0.2s var(--ease);
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  color: var(--amber);
}

summary .plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
summary .plus::before,
summary .plus::after {
  content: "";
  position: absolute;
  background: var(--amber);
  top: 50%;
  left: 50%;
}
summary .plus::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}
summary .plus::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
details[open] summary .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
details[open] summary .plus {
  transform: rotate(180deg);
}

details p {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 70ch;
  animation: faqIn 0.4s var(--ease) both;
}
@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================
     CONTACT
  ================================================================ */
.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
  }
}

.contact-info h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 20px 0 24px;
}
.contact-info p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.contact-details {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.contact-details dt {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10.5px;
  margin-bottom: 6px;
}
.contact-details dd {
  color: var(--text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  margin-bottom: 24px;
}

label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
label .req {
  color: var(--amber);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
input:focus,
textarea:focus {
  border-color: var(--amber);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  margin-top: 16px;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s var(--ease);
}
.submit-btn:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
}
.submit-btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  font-size: 14px;
}
.form-status.is-success {
  color: var(--amber);
}
.form-status.is-error {
  color: var(--rust);
}

/* ================================================================
     FOOTER
  ================================================================ */
footer {
  padding: 80px 0 120px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
@media (min-width: 900px) {
  footer {
    padding-bottom: 40px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
  max-width: 36ch;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ================================================================
     PAGE BOTTOM SPACER (for mobile CTA)
  ================================================================ */
@media (max-width: 899px) {
  footer {
    padding-bottom: 140px;
  }
}

/* ================================================================
     REVEAL ANIMATIONS
  ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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