/* ============================================================
   MAMI TRAVEL — Luxury Design System
   Dark Navy + Champagne Gold | Asian Luxury Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:        #080F1A;
  --navy:         #0A1628;
  --navy-card:    #0D1E35;
  --navy-light:   #122040;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dim:     rgba(201,168,76,0.12);
  --gold-border:  rgba(201,168,76,0.22);
  --cream:        #F5F0E8;
  --cream-dim:    rgba(245,240,232,0.65);
  --text:         #C8C0AD;
  --text-dim:     rgba(200,192,173,0.55);
  --white:        #FFFFFF;

  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, Arial, sans-serif;

  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;

  --sh-gold: 0 4px 28px rgba(201,168,76,0.18);
  --sh-card: 0 8px 48px rgba(0,0,0,0.45);

  --ease: all 0.3s cubic-bezier(0.4,0,0.2,1);

  --grad-gold:    linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  --grad-hero:    linear-gradient(135deg, rgba(8,15,26,0.72) 0%, rgba(10,22,40,0.60) 100%);
  --grad-overlay: linear-gradient(to bottom, rgba(8,15,26,0.25) 0%, rgba(8,15,26,0.88) 100%);

  --header-h: 112px;
  --max-w: 1280px;
  --pad: clamp(1rem, 4vw, 2rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
input, textarea, select { font-family: var(--sans); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--cream); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 700; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
p  { line-height: 1.76; }

.gold-text  { color: var(--gold); }
.cream-text { color: var(--cream); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section    { padding: clamp(4rem,8vw,7rem) 0; }
.section-alt { background: var(--black); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem,5vw,4.5rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p  { max-width: 580px; margin: 0 auto; color: var(--text-dim); font-size: 1.05rem; }

.gold-divider {
  width: 52px; height: 1.5px;
  background: var(--grad-gold);
  margin: 0.75rem auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-gold {
  background: var(--grad-gold); color: var(--black);
  box-shadow: 0 4px 22px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.46);
  color: var(--black);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim); color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--cream);
  border: 1px solid rgba(255,255,255,0.13);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(8,15,26,0.92);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--ease);
}
#header.scrolled {
  background: rgba(8,15,26,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.logo          { display: flex; align-items: center; flex-shrink: 0; }
/* client lockup is near-square, so it needs real height to stay legible */
.logo img      { height: 86px; width: auto; }
.logo svg      { height: 50px; width: auto; }

.nav-links {
  display: flex; align-items: center;
  gap: clamp(0.5rem, 1.4vw, 1.25rem);
}
.nav-links a {
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-dim); padding: 0.2rem 0;
  position: relative; transition: var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--grad-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn-outline { padding: 0.45rem 1.15rem; font-size: 0.72rem; }

.lang-toggle { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.lang-toggle > span { color: var(--gold-border); font-size: 0.8rem; }
.lang-btn {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-dim); background: none; border: none;
  cursor: pointer; transition: var(--ease); font-family: var(--sans);
  padding: 0.15rem 0;
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: var(--ease); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/photos/paris-pont-alexandre-1920.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.06); transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-hero);
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 9rem;
}
.hero-content .eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem; color: var(--gold);
}
.hero-content .eyebrow::before {
  content: ''; display: block;
  width: 44px; height: 1px;
  background: var(--grad-gold);
  flex-shrink: 0;
}
.hero-content h1      { margin-bottom: 1.25rem; color: var(--white); }
.hero-content h1 em   { font-style: italic; color: var(--gold); }
.hero-desc            { font-size: 1.1rem; color: rgba(245,240,232,0.82); max-width: 530px; line-height: 1.82; margin-bottom: 2.25rem; }
.hero-cta             { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,15,26,0.95) 0%, transparent 100%);
  padding: 2.5rem 0;
}
.hero-stats .container { display: flex; gap: 3.5rem; }
/* stack number over label — both children are spans, so without this they run
   inline and the label's margin-top is ignored */
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .number {
  font-family: var(--serif); font-size: 2.25rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat .label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 0.3rem;
}

.scroll-indicator {
  position: absolute; bottom: 6rem; right: 2rem; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.4;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
/* auto-fit so the row stays balanced whatever the service count (currently 2) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 2.5rem 2rem; text-align: center;
  transition: var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold); transform: scaleX(0); transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-gold); border-color: rgba(201,168,76,0.42); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 66px; height: 66px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 50%;
  font-size: 1.8rem;
}
.service-card h3  { margin-bottom: 0.6rem; }
.service-card p   { font-size: 0.93rem; color: var(--text-dim); }

/* ============================================================
   FLEET TEASER (index)
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.fleet-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); overflow: hidden; transition: var(--ease);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card); border-color: rgba(201,168,76,0.42); }
.fleet-card-img  { position: relative; height: 210px; overflow: hidden; }
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
.seats-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: var(--grad-gold); color: var(--black);
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 100px;
}
.fleet-card-body         { padding: 1.5rem; }
.fleet-card-body h3      { margin-bottom: 0.4rem; }
.fleet-card-body p       { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1rem; }

/* ============================================================
   WHY MAMI TRAVEL
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card  { text-align: center; padding: 2rem 1rem; }
.why-icon  { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--cream); }
.why-card p  { font-size: 0.875rem; color: var(--text-dim); }

/* ============================================================
   TESTIMONIALS STRIP (index)
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 2.25rem 2rem; position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif); font-size: 6rem; line-height: 1;
  color: var(--gold); opacity: 0.12;
  position: absolute; top: 0.5rem; left: 1.5rem;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-style: italic; color: var(--cream-dim); line-height: 1.72;
  margin-bottom: 1.5rem; font-size: 0.95rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold-border); overflow: hidden;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info .name   { font-weight: 600; color: var(--cream); font-size: 0.88rem; }
.author-info .origin { font-size: 0.72rem; color: var(--text-dim); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--black);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 68%);
}
.cta-banner-inner { position: relative; text-align: center; padding: 6rem 0; }
.cta-banner-inner h2  { margin-bottom: 0.85rem; }
.cta-banner-inner > p { margin-bottom: 2.25rem; font-size: 1.08rem; color: var(--text-dim); }
.cta-banner-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; height: 380px;
  display: flex; align-items: flex-end; overflow: hidden;
  margin-top: var(--header-h);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,15,26,0.35), rgba(8,15,26,0.88));
}
.page-hero-content { position: relative; z-index: 1; padding-bottom: 3rem; }
.page-hero-content .eyebrow { margin-bottom: 0.4rem; }
.page-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--black); border-bottom: 1px solid var(--gold-border); padding: 0.7rem 0; }
/* list-style:none — without it the default decimal markers render as "1. Home 2. Gallery" */
.breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-dim); list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: var(--gold-border); }
.breadcrumb li a       { color: var(--text-dim); }
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li:last-child { color: var(--gold); }

/* ============================================================
   FLEET PAGE — FULL DETAIL CARDS
   ============================================================ */
.fleet-full-grid { display: flex; flex-direction: column; gap: 4rem; }
.fleet-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); overflow: hidden;
}
.fleet-item:nth-child(even) { direction: rtl; }
.fleet-item:nth-child(even) > * { direction: ltr; }
.fleet-item-img { height: 420px; overflow: hidden; }
.fleet-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.fleet-item:hover .fleet-item-img img { transform: scale(1.04); }
.fleet-item-body { padding: 3.5rem 3rem; }
.fleet-item-body .eyebrow  { margin-bottom: 0.4rem; }
.fleet-item-body h2        { font-size: 2rem; margin-bottom: 1rem; }
.fleet-item-body > p       { color: var(--text-dim); margin-bottom: 1.75rem; line-height: 1.78; }
.fleet-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
  margin-bottom: 2.25rem;
}
.fleet-specs li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--cream-dim);
}
.fleet-specs li::before { content: '✦'; color: var(--gold); font-size: 0.58rem; flex-shrink: 0; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.destination-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.destination-card:hover img { transform: scale(1.08); }
.destination-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,26,0.92) 0%, rgba(8,15,26,0.18) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; transition: var(--ease);
}
.destination-card:hover .destination-overlay { background: linear-gradient(to top, rgba(8,15,26,0.97) 0%, rgba(8,15,26,0.42) 50%); }
.destination-overlay h3     { font-size: 1.2rem; color: var(--white); margin-bottom: 0.2rem; }
.destination-overlay .country { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.destination-overlay .desc {
  font-size: 0.83rem; color: var(--text-dim); margin-top: 0.5rem;
  max-height: 0; overflow: hidden; transition: max-height 0.42s ease;
}
.destination-card:hover .destination-overlay .desc { max-height: 80px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.48rem 1.4rem; border: 1px solid var(--gold-border); border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-dim); background: transparent; cursor: pointer; transition: var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--grad-gold); color: var(--black); border-color: transparent;
}
.gallery-grid { columns: 3; column-gap: 1.25rem; }
/* Filtering: hidden tiles must leave the flow, or they hold their masonry slot and
   the visible photos read as scattered. main.js FLIP-animates the survivors. */
.gallery-item.is-hidden { display: none; }
.gallery-grid-wrap.is-animating { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .gallery-grid-wrap { transition: none !important; }
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1.25rem;
  border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.42s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(8,15,26,0.58);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.zoom-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1.3rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 86vh; object-fit: contain;
  border-radius: var(--r-md); box-shadow: 0 24px 90px rgba(0,0,0,0.85);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(201,168,76,0.52); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; text-align: left; background: none; cursor: pointer; gap: 1.5rem;
}
.faq-question h3 { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--cream); line-height: 1.45; }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem; transition: var(--ease); background: none;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-dim); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 2rem 1.5rem; color: var(--text-dim); font-size: 0.95rem; line-height: 1.78; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); overflow: hidden; transition: var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card); border-color: rgba(201,168,76,0.42); }
.blog-card-img { height: 230px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; }
.blog-meta { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.blog-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim); padding: 0.18rem 0.62rem; border-radius: 100px;
}
.blog-date { font-size: 0.78rem; color: var(--text-dim); }
.blog-card-body h3 { font-size: 1.12rem; margin-bottom: 0.55rem; color: var(--cream); line-height: 1.42; transition: color 0.3s; }
.blog-card:hover .blog-card-body h3 { color: var(--gold); }
.blog-card-body p { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 1rem; line-height: 1.68; }
.read-more {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.22s ease;
}
.read-more:hover { gap: 0.6rem; color: var(--gold-light); }
.read-more::after { content: '→'; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-img {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-border); position: relative;
}
.about-story-img img { width: 100%; height: 520px; object-fit: cover; }
.gold-frame {
  position: absolute; bottom: -14px; right: -14px;
  width: calc(100% - 40px); height: calc(100% - 40px);
  border: 2px solid var(--gold); border-radius: var(--r-lg);
  opacity: 0.25; pointer-events: none;
}
.about-story-text .eyebrow  { margin-bottom: 0.4rem; }
.about-story-text h2        { margin-bottom: 1.25rem; }
.about-story-text p         { color: var(--text-dim); margin-bottom: 1rem; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: 2.25rem 1.5rem; text-align: center; transition: var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-gold); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--cream); }
.value-card p  { font-size: 0.85rem; color: var(--text-dim); }

.certifications { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.cert-badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem 2rem; background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); min-width: 140px;
}
.cert-badge .cert-icon  { font-size: 2rem; }
.cert-badge .cert-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-align: center; line-height: 1.5; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.review-card {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 2.75rem; position: relative; transition: var(--ease);
}
.review-card:hover { box-shadow: var(--sh-gold); }
.review-card .quote-mark {
  font-family: var(--serif); font-size: 7rem; line-height: 1;
  color: var(--gold); opacity: 0.1; position: absolute; top: 0; left: 1.5rem;
}


.big-stars  { font-size: 1.6rem; letter-spacing: 4px; color: var(--gold); margin: 0.5rem 0; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.55fr; gap: 4rem; align-items: start; }
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--gold-border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-text h4 { margin-bottom: 0.25rem; }
.contact-text p, .contact-text a { font-size: 0.95rem; color: var(--cream-dim); transition: color 0.3s; }
.contact-text a:hover { color: var(--gold); }

.whatsapp-cta-box {
  background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(18,140,126,0.05) 100%);
  border: 1px solid rgba(37,211,102,0.28); border-radius: var(--r-lg);
  padding: 2rem; margin-top: 2rem; text-align: center;
}
.whatsapp-cta-box .wa-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.whatsapp-cta-box h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.whatsapp-cta-box p  { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; background: #25D366; color: #fff;
  font-weight: 600; font-size: 0.875rem; border-radius: var(--r-sm);
  letter-spacing: 0.05em; transition: var(--ease);
}
.btn-whatsapp:hover { background: #1fba58; transform: translateY(-2px); color: #fff; }

.contact-form-col {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 3rem;
}
.contact-form-col h2 { font-size: 1.85rem; margin-bottom: 0.75rem; }
.contact-form-col > p { color: var(--text-dim); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border); border-radius: var(--r-sm);
  padding: 0.875rem 1rem; color: var(--cream); font-size: 0.95rem;
  transition: border-color 0.3s ease; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: rgba(201,168,76,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--navy); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; font-size: 0.95rem; }
.form-notice  { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 0.85rem; }

.alert { padding: 0.85rem 1.25rem; border-radius: var(--r-sm); font-size: 0.88rem; margin-top: 1rem; display: none; }
.alert.show    { display: block; }
.alert-success { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); border-top: 1px solid var(--gold-border); padding-top: 5.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid var(--gold-border);
}
.footer-brand img   { height: 46px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p     { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.72; }
.social-links       { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.9rem; transition: var(--ease);
}
.social-link:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.footer-col h4 { margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.72rem; }
.footer-col ul li a {
  font-size: 0.875rem; color: var(--text-dim); transition: all 0.3s; display: block;
}
.footer-col ul li a:hover { color: var(--cream); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; }
.footer-contact-item .ico  { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.875rem; color: var(--text-dim); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.85rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; }
.whatsapp-float-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42); transition: var(--ease); text-decoration: none; position: relative;
}
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.56); }
.whatsapp-float-btn svg { width: 30px; height: 30px; fill: white; position: relative; z-index: 1; }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.75); opacity: 0; } }
.whatsapp-float-label {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  color: var(--cream); font-size: 0.74rem; padding: 0.3rem 0.8rem; border-radius: 100px;
  white-space: nowrap; opacity: 0; transform: translateX(8px); transition: var(--ease);
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Honeypot — visually and programmatically hidden, but still submitted by bots.
   Not display:none, which some bots detect and skip. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ── Legal pages (privacy / terms) ── */
.legal-copy { max-width: 780px; margin: 0 auto; }
.legal-copy h3 {
  font-family: var(--serif); color: var(--gold);
  font-size: 1.2rem; margin: 2.5rem 0 0.85rem;
}
.legal-copy p, .legal-copy li { color: var(--text-dim); line-height: 1.8; }
.legal-copy p { margin-bottom: 1rem; }
.legal-copy ul { margin: 0 0 1.25rem 1.25rem; list-style: disc; }
.legal-copy li { margin-bottom: 0.5rem; }
.legal-copy a { color: var(--gold); text-decoration: underline; }
.legal-copy code {
  background: var(--navy-card); padding: 0.1rem 0.4rem;
  border-radius: var(--r-sm); font-size: 0.9em; color: var(--cream);
}
.legal-updated { font-size: 0.85rem; color: var(--text-dim); font-style: italic; }
.legal-note {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md); padding: 1rem 1.25rem; margin-bottom: 2rem;
}
.legal-note strong { color: var(--gold); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Article not published yet — styled like read-more but inert */
.read-more.is-pending {
  color: var(--text-dim);
  cursor: default;
  pointer-events: none;
  font-style: italic;
}

/* ── Blog articles ── */
.article-body { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--gold-border);
}
.article-body > p {
  color: var(--text); font-size: 1.06rem; line-height: 1.85; margin-bottom: 1.4rem;
}
.article-body > p:first-of-type { font-size: 1.16rem; color: var(--cream-dim); }
.article-body h2 {
  font-family: var(--serif); color: var(--cream);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 2.75rem 0 1rem;
}
.article-list { margin: 0 0 1.75rem 1.25rem; list-style: disc; }
.article-list li { color: var(--text); line-height: 1.8; margin-bottom: 0.75rem; }
.article-list li::marker { color: var(--gold); }
.article-cta {
  background: var(--navy-card); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 2rem; margin: 3rem 0 2rem; text-align: center;
}
.article-cta p { color: var(--cream-dim); margin-bottom: 1.5rem; }
.article-back {
  display: inline-block; color: var(--gold);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.blog-read { font-size: 0.78rem; color: var(--text-dim); }

/* ── Error pages (404 / 500) ── */
.error-hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  margin-top: var(--header-h); overflow: hidden;
}
.error-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/photos/mountain-dawn-1600.jpg') center/cover no-repeat;
  opacity: 0.28;
}
.error-hero::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-overlay); pointer-events: none;
}
.error-inner { position: relative; z-index: 1; text-align: center; padding: 4rem 0; }
.error-code {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(5rem, 18vw, 11rem);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  opacity: 0.9; margin-bottom: 0.5rem;
}
.error-inner h1 { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 0.5rem; }
.error-desc {
  max-width: 560px; margin: 1.25rem auto 2.5rem;
  color: var(--cream-dim); font-size: 1.05rem;
}
.error-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.error-links {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  align-items: center; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.error-links span { color: var(--text-dim); }
.error-links a { color: var(--gold); }
@media (max-width: 480px) {
  .error-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
