/* ============================================
   Glam By Aleena — Demo Site
   Design tokens: deep emerald / antique gold / ivory / blush
   ============================================ */

:root {
  --emerald: #1F4A3D;
  --emerald-dark: #163529;
  --emerald-soft: #2A5D4C;
  --gold: #C9A96A;
  --gold-light: #E4CFA0;
  --gold-dark: #A9884F;
  --ivory: #FAF7F2;
  --ivory-dim: #F1EBE1;
  --blush: #F3DCD9;
  --blush-soft: #F8E9E7;
  --ink: #26261F;
  --ink-soft: #55554A;
  --line: rgba(31, 74, 61, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  --ribbon-h: 40px;
  --container: 1180px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* , *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ribbon-h) + 72px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--emerald);
  margin: 0 0 .5em;
  font-weight: 600;
  line-height: 1.1;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}

section { position: relative; }

.section-pad { padding-block: clamp(56px, 9vw, 108px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.on-dark h2 { color: var(--ivory); }
.section-head.on-dark p { color: rgba(250,247,242,.75); }
.section-head.on-dark .eyebrow { color: var(--gold-light); }
.section-head.on-dark .eyebrow::before, .section-head.on-dark .eyebrow::after { background: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--emerald-dark);
  box-shadow: 0 8px 24px -8px rgba(201,169,106,.6);
}
.btn-gold:hover { box-shadow: 0 12px 28px -8px rgba(201,169,106,.8); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--emerald);
  color: var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: var(--ivory); transform: translateY(-2px); }
.btn-outline.on-dark { border-color: var(--gold-light); color: var(--ivory); }
.btn-outline.on-dark:hover { background: var(--gold-light); color: var(--emerald-dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ============================================
   Top ribbon
   ============================================ */
.demo-ribbon {
  min-height: var(--ribbon-h);
  background: var(--emerald-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(.66rem, 2.6vw, .78rem);
  letter-spacing: .02em;
  padding: 8px 14px;
  position: sticky;
  top: 0;
  z-index: 210;
  border-bottom: 1px solid rgba(201,169,106,.35);
}
.demo-ribbon strong { color: var(--ivory); font-weight: 600; }
.announce-text { display: inline-block; transition: opacity .4s ease; }
.announce-text.fade { opacity: 0; }

/* ============================================
   Header / nav
   ============================================ */
.site-header {
  position: sticky;
  top: var(--ribbon-h);
  z-index: 200;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: .01em;
}
.brand span { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: right .25s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--emerald);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  background:
    radial-gradient(900px 460px at 92% -12%, rgba(201,169,106,.2), transparent 60%),
    radial-gradient(640px 380px at 2% 105%, rgba(243,220,217,.6), transparent 60%),
    var(--ivory);
  color: var(--ink);
  padding-block: clamp(48px, 8vw, 84px) clamp(60px, 9vw, 100px);
  overflow: hidden;
  position: relative;
}
.hero-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 6.2vw, 4rem);
  margin-bottom: .35em;
  line-height: 1.06;
}
.hero-copy h1 .accent { color: var(--gold-dark); display: block; }
.hero-copy p.lede {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 1.8em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.hero-cta .btn svg { transition: transform .2s var(--ease); }
.hero-cta .btn:hover svg { transform: translateX(3px); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-media { position: relative; }
.hero-frame-wrap { position: relative; }
.hero-frame-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 28px;
  z-index: 0;
}
.hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201,169,106,.4);
  box-shadow: 0 30px 60px -22px rgba(31,74,61,.4);
  position: relative;
  z-index: 1;
  background: linear-gradient(155deg, var(--emerald) 0%, var(--emerald-dark) 100%);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.hero-video {
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.hero-video.ready { opacity: 1; }

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 36px -16px rgba(31,74,61,.45);
  z-index: 2;
  max-width: 200px;
}
.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ivory-dim);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--emerald);
  line-height: 1.15;
  white-space: nowrap;
}
.hero-float span {
  display: block;
  font-size: .7rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero-float-price { top: -16px; left: -16px; }
.hero-float-rating { bottom: -16px; right: -16px; }

.hero-scroll {
  display: none;
}
@media (min-width: 1025px) {
  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    color: var(--ink-soft);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    z-index: 1;
  }
  .hero-scroll .mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--gold-dark);
    border-radius: 12px;
    position: relative;
  }
  .hero-scroll .mouse::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-dark);
    animation: scrollDot 1.6s ease-in-out infinite;
  }
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--ivory-dim);
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  text-align: center;
  font-size: .95rem;
  color: var(--ink-soft);
}
.trust-strip strong { color: var(--emerald); }
.trust-dot { color: var(--gold-dark); }
.trust-stars { color: var(--gold-dark); letter-spacing: 2px; }

/* ============================================
   Services
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -24px rgba(31,74,61,.35);
  border-color: var(--gold);
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 0; }
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  align-self: flex-start;
}
.price-tag .amount {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.price-tag .sample {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--blush-soft);
  color: #9C5E56;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.service-card p { color: var(--ink-soft); font-size: .93rem; flex-grow: 1; margin-bottom: 0; }
.service-select-btn {
  margin-top: 4px;
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--emerald);
  font-weight: 600;
  font-size: .88rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.service-select-btn:hover { border-color: var(--emerald); }
.service-select-btn svg { transition: transform .2s var(--ease); }
.service-select-btn:hover svg { transform: translateX(3px); }

/* ============================================
   How booking works — steps
   ============================================ */
.steps-section {
  background: var(--emerald-dark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.steps-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 15% 110%, rgba(201,169,106,.18), transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step-card {
  background: rgba(250,247,242,.05);
  border: 1px solid rgba(201,169,106,.3);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { color: var(--ivory); font-size: 1.3rem; }
.step-card p { color: rgba(250,247,242,.75); font-size: .93rem; margin-bottom: 0; }
.step-connector {
  display: none;
}

/* ============================================
   Arch placeholder (shared component)
   ============================================ */
.arch-frame {
  aspect-ratio: 3 / 4;
  border-radius: 260px 260px 8px 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,106,.4);
}
.arch-frame.filled { background: none; }
.arch-frame img, .arch-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arch-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  text-align: center;
  color: rgba(250,247,242,.85);
}
.arch-placeholder svg { width: 46px; height: 46px; opacity: .8; }
.arch-placeholder .ph-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
}
.arch-placeholder .ph-sub {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(250,247,242,.55);
}
.arch-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(250,247,242,.9);
  color: var(--emerald-dark);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}
.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.play-badge span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(250,247,242,.15);
  border: 1px solid rgba(250,247,242,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

/* ============================================
   Portfolio
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.portfolio-item { position: relative; }
.portfolio-caption {
  margin-top: 10px;
  text-align: center;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================
   Recent work / reels
   ============================================ */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reel-item .arch-frame { aspect-ratio: 9/16; border-radius: 40px; }
.reel-caption {
  margin-top: 10px;
  text-align: center;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================
   Reviews
   ============================================ */
.reviews-section { background: var(--blush-soft); }
.reviews-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: 0 14px 30px -18px rgba(31,74,61,.3);
}
.rating-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
}
.rating-badge .stars { color: var(--gold-dark); letter-spacing: 2px; }
.rating-badge .count { font-size: .82rem; color: var(--ink-soft); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  position: relative;
}
.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.review-card .stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 12px; display: block; font-size: .9rem; }
.review-card p.quote { font-size: .96rem; color: var(--ink); font-style: italic; }
.review-card .attribution { font-size: .78rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.reviews-cta { text-align: center; }

/* ============================================
   Booking section
   ============================================ */
.booking-section { background: var(--ivory-dim); }
.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.booking-form-card, .confirm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 60px -34px rgba(31,74,61,.35);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row input, .form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,169,106,.25);
}
.location-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.location-toggle input { display: none; }
.location-toggle label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.location-toggle input:checked + label {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--ivory);
}
.form-footnote {
  font-size: .78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

.confirm-card { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-summary {
  background: var(--ivory-dim);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: .9rem;
  display: none;
}
.confirm-summary.show { display: block; }
.confirm-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0; }
.confirm-summary dt { color: var(--ink-soft); font-weight: 500; }
.confirm-summary dd { margin: 0; font-weight: 600; color: var(--emerald); text-align: right; }
.confirm-note {
  background: var(--blush-soft);
  border-left: 3px solid var(--gold-dark);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .88rem;
  color: #6f4a3f;
}
.confirm-placeholder { color: var(--ink-soft); font-size: .93rem; }

/* Booking policy */
.policy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.policy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.policy-item svg { flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }
.policy-item p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
.policy-item strong { color: var(--emerald); display: block; font-size: .95rem; margin-bottom: 2px; }

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 6vw, 64px);
  align-items: center;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory-dim);
  border: 1px solid var(--gold);
  color: var(--emerald);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.badge-pill svg { color: var(--gold-dark); }
.about-copy p.bio { font-size: 1.08rem; color: var(--ink-soft); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--emerald-dark);
  color: rgba(250,247,242,.8);
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201,169,106,.25);
}
.footer-brand .brand { color: var(--ivory); }
.footer-brand .brand span { color: var(--gold-light); }
.footer-brand p { color: rgba(250,247,242,.65); font-size: .9rem; max-width: 34ch; margin-top: 12px; }
.footer-col h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; color: rgba(250,247,242,.75); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.social-btn:hover { background: rgba(201,169,106,.15); transform: translateY(-2px); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: .8rem;
  color: rgba(250,247,242,.55);
}
.footer-bottom a { color: var(--gold-light); font-weight: 600; }

/* ============================================
   Floating WhatsApp button
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 18px 36px -10px rgba(37,211,102,.85); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============================================
   Real-media fallback (real photo covers placeholder;
   if the file 404s, onerror removes it and the arch
   placeholder underneath shows through)
   ============================================ */
.real-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ============================================
   Inner-page banner (Portfolio / Booking headers)
   ============================================ */
.page-banner {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(201,169,106,.22), transparent 60%),
    linear-gradient(160deg, var(--emerald-dark) 0%, var(--emerald) 70%);
  color: var(--ivory);
  padding-block: clamp(64px, 10vw, 104px) clamp(48px, 7vw, 72px);
  text-align: center;
}
.page-banner .eyebrow { color: var(--gold-light); justify-content: center; }
.page-banner .eyebrow::before, .page-banner .eyebrow::after { background: var(--gold-light); }
.page-banner h1 { color: var(--ivory); font-size: clamp(2.4rem, 6vw, 3.7rem); }
.page-banner p.lede {
  color: rgba(250,247,242,.8);
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.crumb {
  font-size: .82rem;
  color: rgba(250,247,242,.55);
  margin-top: 18px;
}
.crumb a { color: var(--gold-light); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }

/* ============================================
   Nav active state
   ============================================ */
.nav-links a.active { color: var(--emerald); font-weight: 700; }
.nav-links a.active::after { right: 0; }
.mobile-nav a.active { color: var(--gold-dark); font-weight: 700; }

/* ============================================
   CTA banner (pre-footer)
   ============================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--emerald-dark);
  text-align: center;
  padding-block: clamp(48px, 7vw, 76px);
}
.cta-banner h2 { color: var(--emerald-dark); }
.cta-banner p { color: rgba(31,74,61,.78); max-width: 520px; margin-inline: auto; font-size: 1.05rem; }
.cta-banner .btn-outline { border-color: var(--emerald-dark); color: var(--emerald-dark); }
.cta-banner .btn-outline:hover { background: var(--emerald-dark); color: var(--ivory); }
.cta-banner .hero-cta { justify-content: center; margin-top: 26px; margin-bottom: 0; }

/* ============================================
   FAQ (native details/summary)
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2px 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: var(--emerald);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 400;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding-bottom: 20px; color: var(--ink-soft); margin: 0; font-size: .93rem; }

/* ============================================
   Fade-up reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-pulse { animation: none; display: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 380px; margin-inline: auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 340px; margin-inline: auto; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn-gold { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .policy-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-float { padding: 10px 12px; max-width: 168px; gap: 10px; }
  .hero-float-icon { width: 32px; height: 32px; }
  .hero-float strong { font-size: 1rem; }
  .hero-float span { font-size: .65rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-badge { flex-direction: column; gap: 4px; text-align: center; padding: 16px 24px; }
}

/* Mobile nav — off-canvas drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 53, 41, .5);
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 70vw;
  max-width: 360px;
  background: var(--ivory);
  z-index: 230;
  padding: 22px 26px 26px;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.35);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-head .brand { font-size: 1.25rem; }
.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ivory-dim);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.mobile-nav-close:hover { background: var(--blush-soft); transform: rotate(90deg); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-nav.open a { opacity: 1; transform: translateX(0); }
.mobile-nav a:nth-of-type(1) { transition-delay: .08s; }
.mobile-nav a:nth-of-type(2) { transition-delay: .13s; }
.mobile-nav a:nth-of-type(3) { transition-delay: .18s; }
.mobile-nav a:nth-of-type(4) { transition-delay: .23s; }
.mobile-nav a:nth-of-type(5) { transition-delay: .28s; }
.mobile-nav a:nth-of-type(6) { transition-delay: .33s; }
.mobile-nav .btn {
  margin-top: 22px;
  padding: 18px 28px;
  font-size: 1.02rem;
  box-shadow: 0 14px 30px -14px rgba(201,169,106,.7);
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
  opacity: 0;
  transition: opacity .5s var(--ease) .38s;
}
.mobile-nav.open .mobile-nav-social { opacity: 1; }
.mobile-nav .mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  padding: 0;
  color: var(--emerald);
  opacity: 1;
  transform: none;
  transition: background .2s, color .2s, transform .2s;
}
.mobile-nav .mobile-nav-social a:hover { background: var(--emerald); color: var(--ivory); transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-close:hover { transform: none; }
  .mobile-nav .mobile-nav-social a:hover { transform: none; }
}
