/* ══════════════════════════════════════════
   COMPONENTS — Nav, Cards, Buttons, Forms
   ══════════════════════════════════════════ */

/* ── CUSTOM CURSOR ── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto !important; }
  #cursor, #cursor-ring { display: none !important; }
  a, button, select, .btn-primary, .btn-ghost, .nav-cta, .form-btn, .form-select,
  .fleet-card, .at-btn-primary, .at-btn-outline, .tours-filter-btn, .wa-widget,
  .story-card-link { cursor: auto !important; }
}
#cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px; height: 20px; background: var(--gold-light);
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px; height: 56px; border-color: var(--gold);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.9), transparent);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 18px 60px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(1.6) drop-shadow(0 0 8px rgba(201,168,76,0.3));
  transition: opacity 0.3s, height 0.4s, filter 0.3s;
}
.nav-logo-img:hover { opacity: 0.85; filter: brightness(1.8) drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
nav.scrolled .nav-logo-img { height: 52px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--obsidian); }

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
}

/* ── SECTION TAGS & TITLES ── */
.section-tag {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.05;
}

/* ── HERO ELEMENTS ── */
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300; line-height: 0.92;
  margin-bottom: 32px; max-width: 800px;
}
.hero-headline em {
  font-style: italic; color: var(--gold); display: block;
}
.hero-sub {
  font-size: 1rem; line-height: 1.7;
  color: var(--smoke); max-width: 440px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
}

/* Hero light & stripes */
.hero-light {
  position: absolute; width: 800px; height: 800px;
  right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  width: 3px; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  right: 40%; top: 15%; opacity: 0.4;
}
.hero-stripe:nth-child(2) { right: 55%; top: 40%; height: 120px; opacity: 0.2; }
#particles { position: absolute; inset: 0; pointer-events: none; }

/* Hero grid overlay */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Stats bar */
.stats-bar {
  position: absolute; bottom: 0; right: 0;
  display: flex;
  border-left: 1px solid rgba(201,168,76,0.15);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-item {
  padding: 28px 40px;
  border-right: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}
.stat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.05em;
  color: var(--gold); display: block;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--smoke);
}
@media (max-width: 768px) {
  .stats-bar { display: none; }
  .hero-headline { font-size: 3.5rem; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 16px;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--smoke);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width: 768px) {
  .scroll-hint { left: 24px; }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--obsidian);
  border: none; padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: none;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent; border: none;
  color: var(--smoke);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: none;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.3s; padding: 16px 0;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .arrow {
  width: 32px; height: 1px; background: currentColor;
  position: relative; transition: width 0.3s;
}
.btn-ghost .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  width: 7px; height: 7px; transform: rotate(45deg);
}
.btn-ghost:hover .arrow { width: 48px; }

/* ── GOLD TICKER ── */
.ticker {
  background: var(--gold); color: var(--obsidian);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.15em;
  padding: 0 40px;
}
.ticker-dot { color: rgba(0,0,0,0.4); }

/* ── DIVIDER ── */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 0 60px;
}
.divider-line { flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
}

/* ── STORY CARDS ── */
.story-tag {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 28px;
}
.story-body {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--smoke); margin-bottom: 20px;
}
.story-body strong { color: var(--white); font-weight: 400; }
.story::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}
@media (max-width: 768px) {
  .story::before { display: none; }
}

.story-visual { position: relative; height: 500px; }
.story-card {
  position: absolute;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 32px;
  transition: transform 0.4s, border-color 0.4s;
}
.story-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.story-card-link { text-decoration: none; color: inherit; display: block; cursor: none; }
.story-card:nth-child(1) { top: 0; left: 0; right: 60px; }
.story-card:nth-child(2) { bottom: 0; left: 60px; right: 0; }
.card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; margin-bottom: 8px; color: var(--gold-light);
}
.card-text { font-size: 0.85rem; line-height: 1.7; color: var(--smoke); }

/* ── FLEET CARDS ── */
.fleet::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.fleet-subtitle {
  color: var(--smoke); font-size: 0.9rem;
  max-width: 300px; text-align: right; line-height: 1.7;
}
.fleet-card {
  flex: 0 0 340px;
  background: var(--dark2);
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  cursor: none;
  transition: border-color 0.4s;
}
.fleet-card:hover { border-color: rgba(201,168,76,0.3); }
.fleet-card:hover .fleet-img { transform: scale(1.05); }

.fleet-img-wrap {
  height: 240px; overflow: hidden;
  background: var(--dark3); position: relative;
}
.fleet-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
}
.car-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  font-size: 3rem; color: var(--smoke); opacity: 0.3;
}

.fleet-card-body { padding: 24px 28px 28px; }
.fleet-class {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.fleet-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; margin-bottom: 12px;
}
.fleet-specs { display: flex; gap: 20px; font-size: 0.75rem; color: var(--smoke); }
.fleet-spec { display: flex; align-items: center; gap: 6px; }
.spec-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── BOOKING FORM ── */
.booking::after {
  content: ''; position: absolute; right: 60px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
}
@media (max-width: 768px) {
  .booking::after { display: none; }
}
.booking-info p {
  font-size: 0.9rem; line-height: 1.8; color: var(--smoke); margin-bottom: 40px;
}
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 0.85rem; color: var(--smoke); line-height: 1.5;
}
.feature-list .f-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.75rem; margin-top: 1px;
}

.booking-form {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 48px 40px; position: relative;
}
.booking-form::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; margin-bottom: 8px;
}
.form-sub {
  font-size: 0.8rem; color: var(--smoke);
  margin-bottom: 32px; letter-spacing: 0.05em;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 16px;
}
.form-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.form-input, .form-select {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; outline: none; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.form-input::placeholder { color: rgba(136,136,136,0.5); }
.form-input:focus, .form-select:focus {
  border-color: rgba(201,168,76,0.5);
  background: var(--dark4);
}
.form-select { cursor: none; appearance: none; }
option { background: var(--dark3); }

.fare-estimate {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 20px 24px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.fare-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--smoke);
}
.fare-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--gold);
}
.fare-value .fare-currency { font-size: 1rem; vertical-align: super; margin-right: 2px; }

.form-btn {
  width: 100%; background: var(--gold); color: var(--obsidian);
  border: none; padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: none;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.form-btn::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: var(--gold-light);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width 0.6s, height 0.6s;
}
.form-btn:hover::before { width: 400px; height: 400px; }
.form-btn span { position: relative; z-index: 1; transition: none; }

/* Address autocomplete dropdown */
.address-dropdown {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: none;
  z-index: 50;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--dark3);
}
.address-option {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--smoke);
  cursor: none;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  transition: background 0.2s, color 0.2s;
}
.address-option:last-child { border-bottom: none; }
.address-option:hover {
  background: var(--dark4);
  color: var(--white);
}
.poi-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

/* ── TESTIMONIAL CARDS ── */
.testimonials::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.testimonial-card {
  background: var(--dark2);
  padding: 40px 36px;
  border: 1px solid rgba(201,168,76,0.06);
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; line-height: 1;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: 16px; left: 28px;
}
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.7;
  color: var(--silver); font-style: italic; margin-bottom: 24px;
}
.testimonial-author { font-size: 0.75rem; color: var(--smoke); letter-spacing: 0.05em; }
.testimonial-author strong { color: var(--white); font-weight: 400; }

/* Reviews badge & footer */
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.reviews-stars { color: var(--gold); letter-spacing: 2px; }
.reviews-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.reviews-count { color: var(--smoke); font-size: 0.82rem; }
.reviews-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.reviews-link {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.reviews-link:hover { color: var(--gold-light); }
.reviews-note {
  font-size: 0.68rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8rem; color: var(--smoke); line-height: 1.7; }

.footer-whatsapp-note {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--smoke);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-whatsapp-note strong {
  color: var(--gold-light);
  font-weight: 400;
}

.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.82rem; color: var(--smoke);
  transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul a::before {
  content: ''; width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a:hover::before { width: 12px; }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 40px; right: 40px;
  z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-btn {
  background: var(--gold); color: var(--obsidian);
  border: none; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 0 50px rgba(201,168,76,0.5); }
@media (max-width: 768px) {
  .floating-cta { bottom: 24px; right: 24px; }
}

/* ── WHATSAPP WIDGET ── */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: #1a1a1a;
  border: 1px solid var(--gold);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s ease;
  cursor: none;
}
.wa-widget:hover {
  transform: translateY(-2px);
}
.wa-logo-ring {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #1a1a1a;
  z-index: 1;
}
.wa-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.wa-text p {
  margin: 0;
}
.wa-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.wa-status {
  font-size: 11px;
  color: var(--smoke);
  white-space: nowrap;
}
.wa-icon {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wa-text { display: none; }
  .wa-widget {
    padding: 8px;
    border-radius: 50%;
  }
  .wa-icon { display: none; }
}

/* ── ABOUT PAGE ── */

/* About Hero */
.about-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 60px 60px;
  position: relative;
  overflow: hidden;
}
.about-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 700px;
}
.about-hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

/* About Content */
.about-content {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--smoke);
  margin-bottom: 20px;
}
.about-body strong {
  color: var(--white);
  font-weight: 400;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

/* Licensing */
.licensing {
  padding: 100px 60px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
}
.licensing::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.licensing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.licensing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 48px;
}
.licence-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.licence-badge {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.4s;
}
.licence-badge:hover {
  border-color: rgba(201,168,76,0.4);
}
.licence-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.licence-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
}
.licence-issuer {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* About CTA */
.about-cta {
  padding: 120px 60px;
  text-align: center;
}
.about-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
}
.about-cta-headline em {
  font-style: italic;
  color: var(--gold);
}

/* Active nav link */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

/* ── POLICY PAGES (Privacy, Terms) ── */
.policy-page {
  padding: 120px 60px;
  display: flex;
  justify-content: center;
}
.policy-content {
  max-width: 750px;
  width: 100%;
}
.policy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  margin: 48px 0 16px;
}
.policy-content h2:first-child {
  margin-top: 0;
}
.policy-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--smoke);
  margin-bottom: 16px;
}
.policy-content strong {
  color: var(--white);
  font-weight: 400;
}
.policy-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}
.policy-content li {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--smoke);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.policy-content li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 12px;
}
.policy-content a {
  color: var(--gold);
  transition: color 0.3s;
}
.policy-content a:hover {
  color: var(--gold-light);
}
.policy-content .contact-list li::before {
  display: none;
}
.policy-content .contact-list li {
  padding-left: 0;
}

/* About page mobile */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 24px 40px;
    height: auto;
    min-height: 50vh;
  }
  .about-content {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .licensing {
    padding: 80px 24px;
  }
  .licence-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .licence-badge {
    width: 100%;
    max-width: 300px;
  }
  .about-cta {
    padding: 80px 24px;
  }
  .policy-page {
    padding: 80px 24px;
  }
}
