/* ============================================================
   Grand Style — Art-Deco Promo Site
   ============================================================ */

:root {
  /* Brand & accent — extracted from app theme.css */
  --bg-base: #0A0A0A;
  --bg-surface: #161311;
  --bg-surface-accent: #1F1A14;
  --outline: #3D3528;
  --outline-soft: #2A2520;
  --champagne-gold: #C9A85B;
  --pale-gold: #E6CD8A;
  --deep-gold: #8C7A3C;
  --ivory: #F4EBD0;
  --oxblood: #5C0F1A;
  --oxblood-deep: #2A0E12;
  --jade: #446B5D;

  /* Text */
  --text-primary: #F4EBD0;
  --text-secondary: #C7B58F;
  --text-tertiary: #8C7E5E;
  --text-on-gold: #0A0A0A;

  /* Fonts (loaded via Google Fonts) */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Gradients & motifs */
  --gold-glow: radial-gradient(circle closest-side, rgba(201, 168, 91, 0.55) 0%, rgba(230, 205, 138, 0.18) 35%, transparent 100%);
  --night-gradient: linear-gradient(180deg, #0A0A0A 0%, #161311 100%);
  --gold-hairline: linear-gradient(90deg, transparent 0%, #C9A85B 50%, transparent 100%);
  --oxblood-wash: linear-gradient(180deg, #5C0F1A 0%, #2A0E12 100%);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 999px;

  /* Shadows */
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-soft-lg: 0 24px 48px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

a {
  color: var(--champagne-gold);
  text-decoration: none;
}

/* ============================================================
   Subtle deco grid texture — gold lattice at 6% opacity
   ============================================================ */
.deco-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, var(--champagne-gold) 14px 15px),
    repeating-linear-gradient(-45deg, transparent 0 14px, var(--champagne-gold) 14px 15px);
  z-index: 0;
}

/* ============================================================
   Typography — creative treatments
   ============================================================ */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

.t-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.t-display .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 50%, var(--deep-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t-display .outline {
  -webkit-text-stroke: 1px var(--champagne-gold);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.t-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

.t-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   Lozenge / diamond divider
   ============================================================ */
.lozenge-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto;
  max-width: 320px;
}

.lozenge-divider .line {
  flex: 1;
  height: 1px;
  background: var(--gold-hairline);
}

.lozenge-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--champagne-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201, 168, 91, 0.6);
}

.lozenge-divider.short {
  max-width: 200px;
  margin: 16px auto;
}

/* ============================================================
   Layout — container & sections
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 96px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline-soft);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: block;
}

.brand .brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 120ms;
}

.nav-links a:hover { color: var(--champagne-gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--outline);
  color: var(--text-primary);
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--outline-soft);
    padding: 8px 0;
  }
  .nav-links.open a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--outline-soft);
  }
  .nav-links.open a:last-child { border-bottom: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--night-gradient);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, transparent 30%, rgba(10, 10, 10, 0.95) 100%);
}

.hero .container { position: relative; z-index: 2; text-align: center; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -1px;
  margin: 24px 0 8px;
  color: var(--text-primary);
}

.hero h1 .line-1 { display: block; }
.hero h1 .line-2 {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 60%, var(--deep-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 24px auto 0;
  line-height: 1.5;
}

.hero .cta-row {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero .meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero .meta .pip { width: 6px; height: 6px; background: var(--champagne-gold); transform: rotate(45deg); }

/* Bottom hairline & corner ornaments */
.hero-corners::before,
.hero-corners::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid var(--champagne-gold);
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
.hero-corners::before {
  top: 24px; left: 24px;
  border-right: none;
  border-bottom: none;
}
.hero-corners::after {
  bottom: 24px; right: 24px;
  border-left: none;
  border-top: none;
}
@media (max-width: 768px) {
  .hero-corners::before,
  .hero-corners::after { width: 48px; height: 48px; }
}

/* ============================================================
   Buttons — text vertically + horizontally centered
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms;
  border: 1px solid transparent;
  white-space: nowrap;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: var(--champagne-gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 50%, var(--deep-gold) 100%);
  opacity: 1;
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--champagne-gold);
}

.btn-secondary:hover {
  background: rgba(201, 168, 91, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--outline);
}

.btn-ghost:hover { color: var(--champagne-gold); border-color: var(--champagne-gold); }

/* ============================================================
   Section headings
   ============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 8px;
}

.section-head h2 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head .lead {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ============================================================
   Promise strip — five dress codes
   ============================================================ */
.promise {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
  position: relative;
  overflow: hidden;
}

.promise .promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--outline-soft);
  border-bottom: 1px solid var(--outline-soft);
  margin-top: 48px;
}

.promise .promise-cell {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--outline-soft);
  position: relative;
}

.promise .promise-cell:last-child { border-right: none; }

.promise .promise-cell .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  display: block;
  margin-bottom: 8px;
}

.promise .promise-cell .name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.promise .promise-cell .pips {
  display: inline-flex;
  gap: 4px;
  margin-top: 4px;
}

.promise .promise-cell .pip {
  width: 6px; height: 6px;
  background: var(--outline-soft);
  transform: rotate(45deg);
}
.promise .promise-cell .pip.on { background: var(--champagne-gold); }

@media (max-width: 768px) {
  .promise .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise .promise-cell {
    border-bottom: 1px solid var(--outline-soft);
  }
  .promise .promise-cell:nth-child(2n) { border-right: none; }
  .promise .promise-cell:last-child { grid-column: 1 / -1; }
}

/* ============================================================
   Occasions — illustrated card grid
   ============================================================ */
.occasions {
  background: var(--bg-base);
}

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

@media (max-width: 1024px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .occasion-grid { grid-template-columns: 1fr; } }

.occasion-card {
  background: var(--bg-surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: left;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.occasion-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne-gold);
  box-shadow: var(--shadow-soft-lg);
}

.occasion-card .img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
  position: relative;
}

.occasion-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.occasion-card:hover .img-wrap img { transform: scale(1.05); }

.occasion-card .star {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-gold);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
}

.occasion-card .body {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--outline-soft);
}

.occasion-card .body .title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.occasion-card .body .chip {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border: 1px solid var(--champagne-gold);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

/* ============================================================
   Features — alternating split rows with reused mockup art
   ============================================================ */
.features { background: linear-gradient(180deg, var(--bg-base), var(--bg-surface) 100%); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .text { order: 2; }
.feature-row.reverse .visual { order: 1; }

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .feature-row.reverse .text,
  .feature-row.reverse .visual { order: initial; }
}

.feature-row .text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.feature-row .text h3 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-row .text p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.feature-row .text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.feature-row .text ul li {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 8px 0 8px 24px;
  position: relative;
}

.feature-row .text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--champagne-gold);
  transform: rotate(45deg);
}

.feature-row .visual {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--outline);
  background: var(--bg-surface);
  aspect-ratio: 4 / 5;
}

.feature-row .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--champagne-gold);
  margin: 14px;
  pointer-events: none;
  z-index: 2;
  border-radius: 4px;
  opacity: 0.4;
}

.feature-row .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row .visual.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-surface);
  aspect-ratio: 4 / 3;
}

.feature-row .visual.split img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #1a1410 0%, #0A0A0A 100%);
  padding: 8px;
}

.feature-row .visual.split .label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 3;
}

/* ============================================================
   App preview — phone mockup carousel
   ============================================================ */
.preview {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.preview-corners::before,
.preview-corners::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle, rgba(201, 168, 91, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.preview-corners::before { top: 10%; left: -120px; }
.preview-corners::after { bottom: 10%; right: -120px; }

.preview .container { position: relative; z-index: 1; }

.swiper.preview-swiper {
  padding: 24px 0 64px;
  width: 100%;
}

.swiper.preview-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  transition: transform 300ms ease, opacity 300ms ease;
  opacity: 0.55;
}

.swiper.preview-swiper .swiper-slide-active { opacity: 1; }
.swiper.preview-swiper .swiper-slide-prev,
.swiper.preview-swiper .swiper-slide-next { opacity: 0.85; }

/* CSS phone frame — compact (max 360px tall on desktop) */
.phone-frame {
  width: 180px;
  aspect-ratio: 9 / 19.5;
  background: #050505;
  border: 8px solid #1a1814;
  border-radius: 32px;
  padding: 4px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), inset 0 0 0 1px var(--outline);
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 14px;
  background: #050505;
  border-radius: 8px;
  z-index: 3;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.swiper.preview-swiper .swiper-slide-active .phone-frame {
  width: 240px;
  border-width: 10px;
}

@media (min-width: 1024px) {
  .swiper.preview-swiper .swiper-slide-active .phone-frame { width: 300px; }
  .phone-frame { width: 220px; }
}

@media (max-width: 540px) {
  .phone-frame { width: 160px; }
  .swiper.preview-swiper .swiper-slide-active .phone-frame { width: 220px; }
}

.swiper-pagination-bullet {
  background: var(--outline);
  opacity: 1;
  width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--champagne-gold);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next, .swiper-button-prev { color: var(--champagne-gold) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px !important; }

/* ============================================================
   Knowledge cards / why-trust strip
   ============================================================ */
.trust {
  background: var(--bg-surface);
  border-top: 1px solid var(--outline-soft);
  border-bottom: 1px solid var(--outline-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 1024px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .trust-grid { grid-template-columns: 1fr; } }

.trust-cell {
  text-align: center;
  padding: 24px 16px;
}

.trust-cell .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border: 1px solid var(--champagne-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-gold);
  background: var(--bg-base);
}

.trust-cell .icon svg { width: 24px; height: 24px; }

.trust-cell h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.trust-cell p {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   CTA — dramatic full-bleed
   ============================================================ */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-final .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final .bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/cta_bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.cta-final .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(10, 10, 10, 0.92) 100%),
    var(--night-gradient);
}

.cta-final .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  margin: 16px 0 0;
}

.cta-final h2 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text-secondary);
  margin: 24px auto 0;
  max-width: 540px;
}

.cta-final .cta-row {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--bg-base);
  border-top: 1px solid var(--outline-soft);
  padding: 48px 0 32px;
}

footer .inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
  footer .col-brand { grid-column: 1 / -1; }
}

footer h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne-gold);
  margin: 0 0 16px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li { margin-bottom: 8px; }

footer ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 120ms;
}
footer ul li a:hover { color: var(--text-primary); }

footer .col-brand p {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 380px;
}

footer .legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--outline-soft);
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.4px;
}

/* ============================================================
   Static page — privacy / terms / contact shell
   ============================================================ */
.page-hero {
  position: relative;
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--outline-soft);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 8px;
}

.page-hero h1 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 48px 0 16px;
  letter-spacing: -0.2px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.legal-content p { margin: 0 0 16px; text-align: left; }
.legal-content a { color: var(--champagne-gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--pale-gold); }

.legal-content ul {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}

.legal-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--champagne-gold);
  transform: rotate(45deg);
}

.legal-content .meta {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--outline);
  border-radius: var(--r-full);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-family: var(--font-sans);
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--outline);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 540px) { .contact-card { padding: 24px; } }

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-base);
  border: 1px solid var(--outline);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 120ms;
}

.field input:focus,
.field textarea:focus { border-color: var(--champagne-gold); }

.field textarea {
  min-height: 144px;
  resize: vertical;
  font-family: var(--font-serif);
  line-height: 1.6;
}

.field input[type="file"] {
  padding: 10px;
  background: var(--bg-base);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.field input[type="file"]::file-selector-button {
  background: var(--champagne-gold);
  color: var(--text-on-gold);
  border: none;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  margin-right: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--outline-soft);
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
}

/* ============================================================
   Privacy acceptance button (REQUIRED)
   ============================================================ */
.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 30%, var(--bg-base) 100%);
  pointer-events: none;
}

.privacy-accept-btn.hidden { display: none; }

.privacy-accept-btn .accept-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 480px;
  height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--pale-gold) 0%, var(--champagne-gold) 50%, var(--deep-gold) 100%);
  color: var(--text-on-gold);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-soft-lg);
  transition: transform 120ms;
}

.privacy-accept-btn .accept-btn:hover { transform: translateY(-1px); }
.privacy-accept-btn .accept-btn:active { transform: translateY(0); }

/* ============================================================
   Misc
   ============================================================ */
.text-center { text-align: center; }

.fade-mask-bottom {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
}
