/* =====================================================================
   ArabQueen.vip — Luxury Editorial Design System
   Where Elegance Meets Exclusivity
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --black:        #0b0a09;
  --black-soft:   #141210;
  --ink:          #1c1916;
  --gold:         #c9a86a;
  --gold-bright:  #e3c89e;
  --gold-deep:    #9c7c44;
  --ivory:        #f7f2e9;
  --beige:        #e7dccb;
  --beige-soft:   #efe7d9;
  --muted:        #a79b88;
  --line:         rgba(201, 168, 106, 0.22);
  --glass:        rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(20, 18, 16, 0.55);

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Montserrat", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.65);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  display: inline-block;
}
.gold-text { color: var(--gold); }
.gradient-gold {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--beige); font-weight: 300; }
.muted { color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(54px, 7vw, 96px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.6vw, 3.5rem); margin: 18px 0 0; }
.divider-mark { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); }
.divider-mark::before, .divider-mark::after { content: ""; width: 40px; height: 1px; background: var(--line); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 34px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.22em;
  border-radius: 100px; transition: all 0.45s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--black); box-shadow: 0 14px 40px -14px rgba(201, 168, 106, 0.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 55px -16px rgba(201, 168, 106, 0.85); }
.btn-outline { border: 1px solid var(--line); color: var(--ivory); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--glass); }
.btn-ghost { color: var(--gold); letter-spacing: 0.18em; padding: 10px 0; }
.btn-ghost:hover { color: var(--gold-bright); }
.btn-block { width: 100%; }
.btn-sm { --pad-y: 11px; --pad-x: 24px; font-size: 0.72rem; }

/* ---------- Glass panels ---------- */
.glass {
  background: var(--glass-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-radius: var(--radius);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 110; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  font-family: var(--display); font-size: 1rem; color: var(--gold);
  letter-spacing: 0.02em;
}
.brand-name { font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.04em; }
.brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav-links a {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--beige); position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; z-index: 110; padding: 8px; }
.nav-toggle span { width: 26px; height: 1.6px; background: var(--ivory); transition: all 0.4s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: grid; align-items: center;
  position: relative; padding-top: 120px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(201,168,106,0.16), transparent 55%),
    linear-gradient(180deg, rgba(11,10,9,0.35), rgba(11,10,9,0.92) 75%, var(--black));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin: 22px 0 0; }
.hero h1 .sub { display: block; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 2.1rem); color: var(--beige); margin-top: 10px; letter-spacing: 0.02em; }
.hero p.intro { margin-top: 26px; font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--beige); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-meta { display: flex; gap: 34px; margin-top: 50px; flex-wrap: wrap; }
.hero-meta .item .n { font-family: var(--display); font-size: 1.7rem; color: var(--gold); }
.hero-meta .item .l { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }

/* ---------- Portrait / Image placeholders ---------- */
.portrait {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; background: var(--black-soft);
}
.portrait.tall { aspect-ratio: 3 / 4; }
.portrait img, .ph img { width: 100%; height: 100%; object-fit: cover; }
.portrait .frame-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-bright); padding: 8px 14px; border-radius: 100px;
  background: rgba(11,10,9,0.5); border: 1px solid var(--line); backdrop-filter: blur(8px);
}
.hero-portrait::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px; z-index: 2;
  background: linear-gradient(160deg, rgba(227,200,158,0.35), transparent 40%);
  pointer-events: none;
}

/* Elegant generative placeholder (used until real photos are added) */
.ph {
  position: relative; overflow: hidden; width: 100%; height: 100%;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(201,168,106,0.20), transparent 60%),
    linear-gradient(150deg, #17140f, #0c0b0a 60%, #050505);
  display: grid; place-items: center;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,106,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,106,0.07) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.5;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 75%);
}
.ph-monogram {
  font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4rem);
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,106,0.55);
  position: relative; z-index: 1; letter-spacing: 0.05em;
}
.ph-label {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; z-index: 1;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.fact { padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass); }
.fact .k { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); }
.fact .v { font-family: var(--display); font-size: 1.15rem; margin-top: 6px; }
.skill-list { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 0.74rem; letter-spacing: 0.06em; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--beige); background: var(--glass); }

/* ---------- Experience cards ---------- */
.exp-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 3 / 4; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.6s var(--ease), border-color 0.6s;
}
.exp-card .ph { position: absolute; inset: 0; z-index: 0; transition: transform 0.9s var(--ease); }
.exp-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(8,7,6,0.55) 65%, rgba(6,5,4,0.94));
}
.exp-card .exp-body { position: relative; z-index: 2; padding: 26px; }
.exp-card .exp-num { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); }
.exp-card h3 { font-size: 1.5rem; margin: 8px 0 6px; }
.exp-card p { font-size: 0.88rem; color: var(--beige); opacity: 0; max-height: 0; transition: all 0.5s var(--ease); }
.exp-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.exp-card:hover .ph { transform: scale(1.06); }
.exp-card:hover p { opacity: 1; max-height: 120px; }

/* ---------- Membership tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); align-items: stretch; }
.tier {
  border-radius: 20px; padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line); background: var(--glass-strong);
  backdrop-filter: blur(18px); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.tier.featured { border-color: rgba(201,168,106,0.55); box-shadow: var(--shadow); }
.tier.featured::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 80% 0%, rgba(201,168,106,0.14), transparent 60%);
}
.tier-badge { position: absolute; top: 22px; right: 22px; font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-bright); padding: 6px 14px; border-radius: 100px; border: 1px solid var(--line); }
.tier h3 { font-size: 1.9rem; }
.tier .tier-sub { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.tier ul { margin: 28px 0; display: grid; gap: 14px; }
.tier li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--beige); }
.tier li svg { flex: 0 0 18px; margin-top: 4px; color: var(--gold); }
.tier .btn { margin-top: auto; }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  color: var(--ivory); font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(167,155,136,0.6); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(201,168,106,0.06);
}
.field select option { background: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin: 8px 0 22px; }
.checkbox { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--beige); cursor: pointer; }
.checkbox input { width: 16px; height: 16px; accent-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; }
.form-alert { padding: 12px 16px; border-radius: 10px; font-size: 0.85rem; margin-bottom: 18px; display: none; }
.form-alert.show { display: block; }
.form-alert.ok { background: rgba(201,168,106,0.12); border: 1px solid var(--line); color: var(--gold-bright); }
.form-alert.err { background: rgba(180,70,70,0.12); border: 1px solid rgba(180,70,70,0.4); color: #e7b6b6; }
.auth-card { max-width: 520px; margin: 0 auto; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--beige); transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.masonry { columns: 4; column-gap: 18px; }
.masonry .tile { break-inside: avoid; margin-bottom: 18px; }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); cursor: pointer; background: var(--black-soft);
}
.tile .ph { aspect-ratio: var(--ar, 3/4); }
.tile.t-tall .ph { aspect-ratio: 3/4.4; }
.tile.t-wide .ph { aspect-ratio: 4/3; }
.tile-overlay {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 18px; opacity: 0; transition: opacity 0.4s;
  background: linear-gradient(180deg, transparent 40%, rgba(6,5,4,0.85));
}
.tile:hover .tile-overlay { opacity: 1; }
.tile-overlay .cat { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.tile-fav {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(11,10,9,0.55); border: 1px solid var(--line); backdrop-filter: blur(8px);
  color: var(--ivory); transition: all 0.3s; opacity: 0;
}
.tile:hover .tile-fav { opacity: 1; }
.tile-fav:hover { color: var(--gold); border-color: var(--gold); }
.tile-fav.active { color: var(--gold); opacity: 1; }
.tile-fav.active svg { fill: var(--gold); }
/* VIP lock overlay */
.tile.locked .ph { filter: blur(7px) brightness(0.6); }
.vip-lock {
  position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px;
}
.vip-lock .lock-ic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold); }
.vip-lock .lock-t { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,4,4,0.95);
  backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-stage { position: relative; width: min(90vw, 760px); aspect-ratio: 3/4; max-height: 84vh;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.lb-stage .ph { width: 100%; height: 100%; }
.lb-img-zoom { transition: transform 0.4s var(--ease); cursor: zoom-in; }
.lb-img-zoom.zoomed { transform: scale(1.8); cursor: zoom-out; }
.lb-close, .lb-nav { position: fixed; z-index: 210; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ivory); border: 1px solid var(--line);
  background: rgba(11,10,9,0.5); backdrop-filter: blur(8px); transition: all 0.3s; }
.lb-close:hover, .lb-nav:hover { border-color: var(--gold); color: var(--gold); }
.lb-close { top: 26px; right: 26px; }
.lb-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-caption { position: fixed; bottom: 26px; left: 0; right: 0; text-align: center; z-index: 210;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige); }

/* ---------- Dashboard ---------- */
.dash-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.dash-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; margin-top: 40px; }
.dash-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass-strong);
  backdrop-filter: blur(16px); padding: 26px; }
.dash-card h3 { font-size: 1.2rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.col-8 { grid-column: span 8; } .col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; } .col-12 { grid-column: span 12; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); }
.status-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.mini-list li { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mini-list li:last-child { border-bottom: none; }
.mini-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex: 0 0 56px; }
.mini-thumb .ph { width: 100%; height: 100%; }
.mini-list .mt { font-family: var(--display); font-size: 1rem; }
.mini-list .ms { font-size: 0.74rem; color: var(--muted); }
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-strip .tile .ph { aspect-ratio: 1/1; }

/* ---------- Testimonials ---------- */
.quote-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass);
  padding: 34px; position: relative; }
.quote-card .mark { font-family: var(--display); font-size: 4rem; line-height: 0.5; color: var(--gold); opacity: 0.4; }
.quote-card p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--ivory); margin: 14px 0 22px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold);
  display: grid; place-items: center; color: var(--gold); font-family: var(--display); }
.quote-card .who .nm { font-size: 0.9rem; }
.quote-card .who .ro { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 26px 0; font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--ivory); }
.faq-q .ic { flex: 0 0 26px; color: var(--gold); transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); color: var(--beige); }
.faq-a p { padding-bottom: 26px; max-width: 700px; }

/* ---------- Contact strip ---------- */
.contact-aside { display: grid; gap: 16px; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--glass); transition: border-color 0.3s; }
.contact-line:hover { border-color: var(--gold); }
.contact-line .ic { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold); }
.contact-line .k { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.contact-line .v { font-size: 1rem; color: var(--ivory); }
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #128c4a); color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,0.6); transition: transform 0.4s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 22px; overflow: hidden; text-align: center;
  padding: clamp(48px, 7vw, 92px) var(--gutter); border: 1px solid var(--line); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(100% 120% at 50% 0%, rgba(201,168,106,0.18), transparent 60%), var(--black-soft); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px) 30px; background: var(--black-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 18px; font-family: var(--sans); }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.9rem; color: var(--beige); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 320px; margin-top: 14px; }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--beige); margin-top: 8px; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--beige); transition: all 0.3s; }
.social-row a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); }
.footer-bottom .pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-bottom .pills span { padding: 5px 14px; border: 1px solid var(--line); border-radius: 100px; letter-spacing: 0.14em; font-size: 0.68rem; text-transform: uppercase; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: 170px; padding-bottom: clamp(40px, 6vw, 80px); text-align: center; position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 70% at 50% 0%, rgba(201,168,106,0.12), transparent 60%); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 18px 0 0; }
.page-hero p { max-width: 600px; margin: 20px auto 0; color: var(--beige); }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .masonry { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-8, .col-6, .col-4 { grid-column: span 12; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 26px; background: rgba(11,10,9,0.96); backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-grid, .about-grid, .form-wrap, .hero { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; min-height: auto; padding-bottom: 60px; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .tier-grid, .cols-2, .cols-3, .cols-4, .field-row { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .masonry { columns: 1; }
  .facts { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
