/* ===========================================================
   Tom Cat — Houseboat landing page
   =========================================================== */

/* -------- Fonts (Google Fonts CDN with display swap) -------- */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

/* -------- Tokens -------- */
:root {
  --ink: #0B2540;
  --ink-soft: #163A5F;
  --ink-deep: #061629;
  --lake: #3B7B82;
  --lake-soft: #6BA1A8;
  --brass: #C9A064;
  --brass-deep: #A87E3F;
  --sand: #F7F5EE;
  --sand-warm: #EFEAD9;
  --paper: #FFFFFF;
  --charcoal: #1C1F22;
  --charcoal-soft: #4A4F55;
  --mist: #E8E5DB;

  --shadow-sm: 0 1px 2px rgba(11,37,64,0.06);
  --shadow-md: 0 4px 20px rgba(11,37,64,0.08);
  --shadow-lg: 0 16px 48px rgba(11,37,64,0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --rhythm: clamp(64px, 10vw, 112px);

  --display: 'Fraunces', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --script: 'Allura', 'Brush Script MT', cursive;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0; }

:focus-visible { outline: 2px solid var(--lake); outline-offset: 3px; border-radius: 4px; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--rhythm); }

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lake);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--lake);
}
.section-lead {
  max-width: 60ch;
  color: var(--charcoal-soft);
  font-size: 18px;
  margin-bottom: 48px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(201,160,100,0.32);
}
.btn-primary:hover { background: var(--brass-deep); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,160,100,0.38); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--paper); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,245,238,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--mist); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  font-family: var(--script);
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  padding-block: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--lake); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--mist);
  background: var(--paper);
  transition: border-color 0.15s ease;
}
.lang-toggle:hover { border-color: var(--lake); }
.lang-toggle .active { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--mist);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
  }
  .nav.menu-open .nav-links a {
    padding: 14px var(--gutter);
    border-bottom: 1px solid var(--mist);
  }
  .nav.menu-open .nav-links a:last-child { border-bottom: none; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: clamp(580px, 78vh, 820px);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  padding-block: 0;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,37,64,0.05) 0%, rgba(11,37,64,0.35) 55%, rgba(6,22,41,0.9) 100%),
    linear-gradient(90deg, rgba(11,37,64,0.55) 0%, rgba(11,37,64,0.15) 60%, rgba(11,37,64,0) 100%);
}
.hero-content {
  max-width: 720px;
  padding-block: 120px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.25em;
  color: var(--brass);
  line-height: 0.8;
  display: inline-block;
  padding-inline: 4px;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------- Trust strip -------- */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding-block: 32px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.trust-item svg { width: 24px; height: 24px; color: var(--brass); flex-shrink: 0; }
.trust-item strong { color: var(--paper); font-weight: 600; }

/* -------- Boat (split section) -------- */
.boat-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .boat-grid { grid-template-columns: 1fr; }
}
.boat-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.boat-media img { width: 100%; height: 100%; object-fit: cover; }
.boat-media-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11,37,64,0.85);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.boat-content h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.boat-content h2 em { font-style: italic; color: var(--lake); }
.boat-content p { color: var(--charcoal-soft); margin-bottom: 32px; font-size: 18px; line-height: 1.65; }

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.spec-list li {
  background: var(--paper);
  padding: 18px 20px;
}
.spec-list .label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.spec-list .value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

/* -------- Gallery (Pinterest-style columns, no cropping) -------- */
.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
@media (max-width: 1024px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}
.gallery-grid figure {
  position: relative;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--mist);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery-grid figure:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(11,37,64,0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }

.gallery-grid figure:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 2px;
}

/* -------- Routes -------- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .routes-grid { grid-template-columns: 1fr; }
}
.route-card {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.route-illustration {
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--lake) 0%, var(--ink-soft) 100%);
  position: relative;
  overflow: hidden;
}
.route-illustration svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.route-meta span { display: inline-flex; align-items: center; gap: 6px; }
.route-card h3 { font-size: 24px; }
.route-card p { color: var(--charcoal-soft); font-size: 15px; line-height: 1.55; }

/* -------- Pricing -------- */
.pricing-band {
  background: var(--sand-warm);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--mist);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--paper); }
.price-card.featured .price-unit { color: rgba(255,255,255,0.7); }
.price-card.featured .price-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }

.price-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--brass);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.price-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.price-card .price-sub {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}
.price-card.featured .price-sub { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.price-amount sup {
  font-size: 22px;
  font-weight: 500;
  margin-right: 4px;
  vertical-align: super;
  color: var(--lake);
}
.price-unit {
  display: block;
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-top: 6px;
  margin-bottom: 28px;
}
.price-list {
  margin-bottom: 28px;
}
.price-list li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: "✓"; color: var(--brass); font-weight: 700; flex-shrink: 0; }

.savings-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.savings-banner svg { color: var(--brass); flex-shrink: 0; }
.savings-banner strong { color: var(--brass); font-weight: 600; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--mist);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--mist);
}
.extras-grid li {
  background: var(--paper);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.extras-grid .extra-name { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.extras-grid .extra-price { font-family: var(--display); font-size: 18px; color: var(--ink); font-weight: 500; }

/* -------- Season strip -------- */
.season-strip {
  background: var(--ink);
  color: var(--paper);
  padding-block: 28px;
  text-align: center;
}
.season-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 16px;
}
.season-strip svg { color: var(--brass); flex-shrink: 0; }
.season-strip strong { color: var(--brass); font-weight: 600; }

/* -------- Contact -------- */
.contact-band {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-warm) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mist);
}
.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .field-group { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-sm);
  background: var(--sand);
  color: var(--charcoal);
  font-size: 15px;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lake);
  background: var(--paper);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--charcoal-soft);
  opacity: 0.7;
}

.form-actions { margin-top: 24px; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-soft);
  margin-top: 14px;
}

.form-success,
.form-error {
  padding: 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  display: none;
}
.form-success.show, .form-error.show { display: block; }
.form-success { background: rgba(59,123,130,0.1); color: var(--lake); border: 1px solid rgba(59,123,130,0.3); }
.form-error { background: rgba(168,126,63,0.1); color: var(--brass-deep); border: 1px solid rgba(168,126,63,0.3); }

.contact-side h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.contact-side p { color: var(--charcoal-soft); margin-bottom: 32px; }

.chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  text-align: left;
}
.chat-btn:hover {
  border-color: var(--lake);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.chat-btn .chat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-btn .chat-icon svg { width: 26px; height: 26px; }
.chat-btn[data-app="whatsapp"] .chat-icon { background: #25D366; color: white; }
.chat-btn[data-app="telegram"] .chat-icon { background: #229ED9; color: white; }
.chat-btn[data-app="signal"] .chat-icon { background: #3A76F0; color: white; }
.chat-btn .chat-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-btn .chat-app { font-size: 15px; font-weight: 600; }
.chat-btn .chat-handle { font-size: 13px; color: var(--charcoal-soft); }
.chat-btn .chat-arrow {
  color: var(--charcoal-soft);
  transition: transform 0.15s ease, color 0.15s ease;
}
.chat-btn:hover .chat-arrow { color: var(--lake); transform: translateX(4px); }


/* -------- Reviews -------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-stars { color: var(--brass); font-size: 16px; letter-spacing: 2px; }
.review-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--mist);
  padding-top: 16px;
  margin-top: auto;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-meta { font-size: 13px; color: var(--charcoal-soft); }

/* -------- FAQ -------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-item:first-child { border-top: 1px solid var(--mist); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 19px;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--lake); }
.faq-q .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-icon { background: var(--brass); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* -------- Footer -------- */
.footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.85);
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: var(--paper); font-size: 56px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 32ch; line-height: 1.6; margin-top: 12px; }
.footer h4 {
  color: var(--paper);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer ul li { padding: 6px 0; font-size: 14px; }
.footer ul li a:hover { color: var(--brass); }
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-icon {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* -------- Lightbox -------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,22,41,0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.15s ease;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* -------- Modal (video) -------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(6,22,41,0.85);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-content {
  background: var(--ink-deep);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.modal-content iframe,
.modal-content video {
  width: 100%;
  height: 100%;
  border: none;
}
.modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------- Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* -------- Utility -------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
