/* ════════════════════════════════════════════════════════════════
   MAKEUP BY SAHAR — Luxury Wedding Makeup Artist London
   Palette: Deep Charcoal #1a1a1a · Soft Gold #c5a059 · White #ffffff
   Fonts:  Playfair Display (headings) · Montserrat (body) — IRAN Yekan (css/iranyekan.css) for Farsi only
   Core Web Vitals: LCP + CLS optimized
   ════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --charcoal:    #1a1a1a;
  --charcoal-dk: #111111;
  --gold:        #c5a059;
  --gold-light:  #d4b87a;
  --gold-pale:   #e8d5b0;
  --gold-dim:    rgba(197,160,89,.18);
  --white:       #ffffff;
  --off-white:   #faf8f5;
  --cream:       #f3ede4;
  --cream-mid:   #ede4d8;
  --text-mid:    #352a20;
  --text-light:  #5c4d3d;
  --green-wa:    #25D366;
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease:     cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --section: clamp(5rem, 10vw, 9rem);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ───────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 500;
  cursor: none;
}
/* Subtle grain — fixed, no layout impact, no CLS */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 9000;
  opacity: .4;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: none; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY (clamp: 375px mobile → 2560px 4K) ──────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--charcoal);
  font-feature-settings: "kern" 1, "liga" 1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 600; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -.015em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.85rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 600; }
p  {
  font-size: clamp(.92rem, 1.12vw, 1.08rem);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 500;
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.wrap    { max-width: 1260px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,2.5rem); }
.sec     { padding: var(--section) 0; }
.sec-bg  { background: var(--off-white); }
.sec-dk  { background: var(--charcoal); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: clamp(.55rem,.75vw,.68rem);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.rule {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 2rem 0;
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .3em;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: .5px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold), var(--gold-pale), transparent);
}
.sec-intro { max-width: 560px; margin: 0 auto clamp(3rem,5vw,5rem); text-align: center; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(.54rem,.68vw,.65rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 2.6rem;
  transition: all .32s var(--ease);
  cursor: none;
}
.btn-gold      { background: var(--gold); color: var(--white); border: 1px solid var(--gold); }
.btn-gold:hover{ background: #a8883e; border-color: #a8883e; }
.btn-ghost     { background: transparent; color: var(--charcoal); border: 1px solid var(--cream-mid); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }
.btn-ghost-dk  { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-ghost-dk:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }

/* ── CURSOR ─────────────────────────────────────────────────────── */
.cursor-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: transform .12s var(--ease);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform .38s var(--ease), width .28s, height .28s;
  opacity: .65;
}
.cursor-ring.hov { width: 54px; height: 54px; opacity: 1; }
a, button, .filter-btn, .faq-q, .port-item, .service-card, .pkg-card, .testimonial-card, .journal-card { cursor: none; }

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: clamp(1.2rem,2vw,1.8rem) clamp(1.2rem,3vw,2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: all .45s var(--ease);
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1rem; padding-bottom: 1rem;
  box-shadow: 0 1px 0 var(--gold-dim);
}
.nav-logo {
  font-family: var(--serif);
  font-size: clamp(1rem,1.5vw,1.2rem);
  font-weight: 600; letter-spacing: .06em;
  color: var(--white); transition: color .35s;
}
.nav-logo em { font-style: italic; color: var(--gold-light); }
nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: clamp(1.5rem,2.5vw,2.8rem); }
.nav-links a {
  font-size: clamp(.52rem,.67vw,.62rem);
  letter-spacing: .19em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.78); transition: color .3s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: .52rem 1.4rem !important;
  border: 1px solid rgba(255,255,255,.38) !important;
  color: var(--white) !important;
}
nav.scrolled .nav-cta { border-color: var(--gold) !important; color: var(--gold) !important; }
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; padding: 4px; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 1px; background: var(--white); display: block; transition: background .3s; }
nav.scrolled .nav-hamburger span { background: var(--charcoal); }
/* Above nav (800) and site grain (9000) so the overlay and close control receive taps */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem;
  background: var(--white);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition-duration: 0.01ms; }
}
.mobile-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mobile-menu a { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 600; color: var(--charcoal); transition: color .3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.8rem; right: 2.5rem; z-index: 2;
  font-size: 1.3rem; color: var(--text-light);
  cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
  margin: 0; padding: 0;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #111;
  background-image:
    linear-gradient(155deg, rgba(17, 17, 17, 0.9) 0%, rgba(26, 26, 17, 0.75) 40%, rgba(30, 26, 20, 0.82) 75%, rgba(22, 19, 16, 0.95) 100%),
    url("https://assets.architecturaldigest.in/photos/600850773a9d9570bc842982/16:9/w_2560%2Cc_limit/organise-your-makeup-raphael-lovaski-getty--1366x768.jpg");
  background-size: cover, cover;
  background-position: center, center 35%;
  background-repeat: no-repeat;
}
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(197,160,89,.1); pointer-events: none; }
.hero-ring-1 { width: 65vw; height: 65vw; max-width: 880px; max-height: 880px; bottom: -30%; right: -10%; }
.hero-ring-2 { width: 48vw; height: 48vw; max-width: 680px; max-height: 680px; bottom: -25%; right: -4%; border-color: rgba(197,160,89,.06); }
.hero-frame {
  position: absolute; top: 50%; right: 7%;
  transform: translateY(-50%);
  width: clamp(260px,34vw,500px);
  height: clamp(360px,60vh,700px);
}
.hero-frame-border {
  position: absolute; inset: 0;
  border: 1px solid rgba(197,160,89,.25);
  border-radius: 160px 160px 0 0;
  transform: translate(12px,12px);
}
.hero-frame-img {
  position: absolute; inset: 0;
  border-radius: 158px 158px 0 0;
  overflow: hidden;
  background: linear-gradient(160deg, #5a3828 0%, #8a5a40 40%, #b07060 100%);
}
.hero-frame-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-frame-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(17,17,17,.55) 100%); }
.hero-stat {
  position: absolute; bottom: -2rem; left: -2.5rem;
  background: var(--white); padding: 1.4rem 1.8rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.hero-stat .number { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hero-stat .label  { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); margin-top: .3rem; font-weight: 700; }
.hero-badge {
  position: absolute; top: 2rem; left: -2rem;
  width: 78px; height: 78px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
  box-shadow: 0 8px 32px rgba(197,160,89,.38);
}
.hero-badge span { font-size: .52rem; letter-spacing: .13em; text-transform: uppercase; color: var(--white); line-height: 1.5; font-weight: 700; }
/* Hero: text + left mosaic + main frame */
.hero-main-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3.5vw, 3.5rem);
  padding: 5rem 0 7rem;
  max-width: 1260px;
}
.hero-mosaic {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
  width: min(32vw, 200px);
}
.hero-mosaic-card {
  margin: 0;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.35);
  background: #2a2018;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  aspect-ratio: 4/5;
  max-width: 180px;
}
.hero-mosaic-card:nth-child(1) { transform: rotate(-2deg); z-index: 1; }
.hero-mosaic-card:nth-child(2) { margin-left: auto; margin-right: 0.5rem; transform: rotate(1.4deg) translateX(-0.2rem); z-index: 2; }
.hero-mosaic-card:nth-child(3) { margin-left: 0.2rem; transform: rotate(-1deg); z-index: 1; }
.hero-mosaic-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anim-hero { animation: slideUp 0.9s var(--ease-out) 0.18s both; }

.hero-content { position: relative; z-index: 2; flex: 1; min-width: 0; max-width: 620px; padding: 0; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1.8rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); display: block; }
.hero-content > p { color: rgba(255,255,255,.72); max-width: 440px; margin-bottom: 2.8rem; font-size: clamp(.92rem,1.1vw,1.05rem); font-weight: 500; }
.hero-btns { display: flex; gap: 0.75rem 1.2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.trust-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.trust-tag {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .95rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(197,160,89,.22);
  font-size: clamp(.5rem,.65vw,.6rem);
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.trust-tag::before { content: '✦'; color: var(--gold-light); font-size: .5rem; }
.hero-scroll {
  position: absolute; bottom: 2.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  opacity: .36; animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)} }
.hero-scroll span { font-size: clamp(.48rem,.6vw,.55rem); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold-light), transparent); }

/* ── MARQUEE ────────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--charcoal); overflow: hidden; padding: .88rem 0;
  border-top: 1px solid rgba(197,160,89,.1); border-bottom: 1px solid rgba(197,160,89,.1);
}
.marquee-track { display: flex; gap: 3rem; animation: marquee 32s linear infinite; white-space: nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { font-size: clamp(.52rem,.68vw,.62rem); letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.48); flex-shrink: 0; display: flex; align-items: center; gap: 2rem; font-weight: 600; }
.marquee-item::after { content: '✦'; color: var(--gold); font-size: .5rem; }

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem,8vw,9rem); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(145deg,#d4b49a,#b07060 55%,#8a5040); position: relative; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(17,17,17,.4) 100%); }
.about-img-secondary { position: absolute; bottom: -2.5rem; right: -2.5rem; width: 52%; aspect-ratio: 1; background: linear-gradient(145deg, var(--gold-pale), var(--gold-light)); border: 4px solid var(--white); overflow: hidden; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-counter { position: absolute; top: 2.5rem; left: -2.5rem; background: var(--white); padding: 1.5rem 1.8rem; box-shadow: 0 20px 60px rgba(0,0,0,.12); z-index: 2; }
.about-counter .number { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1; }
.about-counter .label  { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); margin-top: .3rem; font-weight: 700; }
.about-frame-line { position: absolute; inset: -12px; border: 1px solid rgba(197,160,89,.18); pointer-events: none; }
.about-text p { margin-bottom: 1.4rem; }
.about-signature { font-family: var(--serif); font-size: clamp(1.8rem,2.5vw,2.4rem); font-weight: 500; font-style: italic; color: var(--gold); margin: 2rem 0; display: block; }
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ── SERVICES ───────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--cream-mid); border-left: 1px solid var(--cream-mid); }
.service-card { padding: 2.8rem 2rem; border-right: 1px solid var(--cream-mid); border-bottom: 1px solid var(--cream-mid); position: relative; overflow: hidden; transition: background .38s var(--ease); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-pale)); transform: scaleX(0); transform-origin: left; transition: transform .42s var(--ease); }
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--serif); font-style: italic; font-size: .88rem; color: var(--gold); opacity: .5; margin-bottom: 1.4rem; display: block; }
.service-card h3 { font-size: clamp(1.02rem,1.32vw,1.18rem); margin-bottom: .7rem; font-weight: 600; }
.service-card p  { font-size: clamp(.86rem,.98vw,.92rem); color: var(--text-mid); line-height: 1.8; margin-bottom: 1.4rem; font-weight: 500; }
.service-price { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: clamp(.98rem,1.12vw,1.04rem); margin-bottom: 1.4rem; display: block; font-weight: 600; }
.service-link { font-size: clamp(.52rem,.67vw,.62rem); letter-spacing: .17em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .5rem; transition: gap .28s; font-weight: 700; }
.service-card:hover .service-link { gap: .9rem; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: clamp(3rem,5vw,6rem); }
.packages-grid--guest { margin-top: 1.5rem; }
.pkg-card { padding: 3.5rem 2.5rem; border: 1px solid var(--cream-mid); position: relative; overflow: hidden; transition: all .38s var(--ease); background: var(--white); }
.pkg-card::before { content: ''; position: absolute; top: 0; left: 4rem; right: 4rem; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); transform: scaleX(0); transform-origin: center; transition: transform .48s var(--ease); }
.pkg-card:hover { box-shadow: 0 28px 68px rgba(0,0,0,.08); transform: translateY(-5px); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured { background: var(--charcoal); border-color: rgba(197,160,89,.28); }
.pkg-card.featured h3, .pkg-card.featured li, .pkg-card.featured > p { color: rgba(255,255,255,.92); }
.pkg-card.featured .pkg-price { color: var(--gold); }
.pkg-tag { display: inline-block; padding: .3rem 1rem; background: var(--gold); color: var(--white); font-size: clamp(.5rem,.62vw,.58rem); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 2rem; font-weight: 600; }
.pkg-card h3 { font-size: clamp(1.4rem,1.8vw,1.6rem); margin-bottom: .9rem; font-weight: 600; }
.pkg-card > p { font-size: clamp(.86rem,.98vw,.92rem); margin-bottom: 1.8rem; color: var(--text-mid); font-weight: 500; }
.pkg-price { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: clamp(1.12rem,1.38vw,1.3rem); display: block; margin-bottom: 1.2rem; font-weight: 600; }
.pkg-features { margin-bottom: 2.5rem; }
.pkg-features li { padding: .58rem 0; font-size: clamp(.86rem,.98vw,.92rem); border-bottom: 1px solid rgba(197,160,89,.12); display: flex; align-items: flex-start; gap: .7rem; color: var(--text-mid); font-weight: 500; }
.pkg-features li::before { content: '—'; color: var(--gold); font-size: .78rem; margin-top: .15rem; flex-shrink: 0; }
.pkg-card.featured .pkg-features li { border-color: rgba(255,255,255,.08); }
.pkg-card:not(:has(.pkg-features)) .pkg-price { margin-bottom: 2.5rem; }

/* ── PROCESS ────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-grid::before { content: ''; position: absolute; top: 2.3rem; left: 12%; right: 12%; height: .5px; background: linear-gradient(90deg,transparent,var(--gold-pale),var(--gold),var(--gold-pale),transparent); }
.process-step { text-align: center; padding: 0 1.5rem; }
.process-num { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); background: var(--white); position: relative; z-index: 1; }
.sec-bg .process-num { background: var(--off-white); }
.process-step h3 { font-size: clamp(1.02rem,1.32vw,1.12rem); margin-bottom: .7rem; font-weight: 600; }
.process-step p  { font-size: clamp(.86rem,.98vw,.9rem); color: var(--text-mid); font-weight: 500; }

/* ── PORTFOLIO ──────────────────────────────────────────────────── */
.portfolio-filters { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { font-size: clamp(.5rem,.65vw,.62rem); letter-spacing: .18em; text-transform: uppercase; padding: .44rem 1.2rem; border: 1px solid var(--cream-mid); background: transparent; color: var(--text-light); transition: all .28s; font-weight: 600; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; }
.port-item { position: relative; overflow: hidden; transition: all .45s var(--ease); }
.port-item:nth-child(1) { grid-column: 1/6;   grid-row: 1/3; aspect-ratio: .7; }
.port-item:nth-child(2) { grid-column: 6/9;   grid-row: 1/2; aspect-ratio: 1.2; }
.port-item:nth-child(3) { grid-column: 9/13;  grid-row: 1/2; aspect-ratio: 1.2; }
.port-item:nth-child(4) { grid-column: 6/10;  grid-row: 2/3; aspect-ratio: 1.5; }
.port-item:nth-child(5) { grid-column: 10/13; grid-row: 2/3; aspect-ratio: 1; }
.port-img { width: 100%; height: 100%; overflow: hidden; }
.port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); display: block; }
.port-item:hover .port-img img { transform: scale(1.06); }
.port-item:nth-child(1) .port-img { background: linear-gradient(160deg,#d4b09a,#a07060); }
.port-item:nth-child(2) .port-img { background: linear-gradient(145deg,#e8d5b0,#c4a070); }
.port-item:nth-child(3) .port-img { background: linear-gradient(145deg,#f0e0d8,#d4a898); }
.port-item:nth-child(4) .port-img { background: linear-gradient(145deg,#c4a882,#8a6050); }
.port-item:nth-child(5) .port-img { background: linear-gradient(145deg,#ede0d0,#b89878); }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(17,17,17,.8) 0%,transparent 55%); opacity: 0; transition: opacity .38s var(--ease); display: flex; align-items: flex-end; padding: 2rem; }
.port-item:hover .port-overlay { opacity: 1; }
.port-caption { color: var(--white); }
.port-caption em { display: block; font-size: clamp(.48rem,.62vw,.58rem); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .3rem; font-style: normal; font-weight: 600; }
.port-caption strong { font-family: var(--serif); font-size: clamp(1.02rem,1.32vw,1.12rem); font-weight: 600; }

/* Gallery — full image grid + lightbox */
.gallery-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.gallery-grid li { margin: 0; }
.gallery-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: none;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  aspect-ratio: 3/4;
}
.gallery-tile::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(197, 160, 89, 0.12);
  pointer-events: none;
  border-radius: 2px;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.gallery-tile:hover, .gallery-tile:focus-visible {
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  transform: translateY(-3px);
  outline: none;
}
.gallery-tile:hover img, .gallery-tile:focus-visible img { transform: scale(1.04); }
.gallery-tile:focus-visible { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gold); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.88);
  cursor: none;
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: min(85vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.3);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: none;
  transition: background .25s, border-color .25s;
  z-index: 2;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.lightbox-caption {
  color: rgba(255,255,255,.8);
  font-size: clamp(.8rem, 1vw, .88rem);
  text-align: center;
  max-width: 40rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
@media (min-width: 900px) {
  .lightbox-inner { max-height: 94vh; }
  .lightbox-close { top: 0; right: -3.5rem; }
}
@media (max-width: 600px) {
  .lightbox-close { top: -2.2rem; right: 0; }
  .lightbox { padding: 0.5rem; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(2.5rem,4vw,4rem); flex-wrap: wrap; gap: 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); padding: 3rem 2.5rem; border: 1px solid rgba(197,160,89,.15); position: relative; transition: all .38s var(--ease); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1.5rem; right: 2rem; font-family: var(--serif); font-size: 6rem; line-height: 1; color: var(--gold-pale); opacity: .5; }
.testimonial-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,.08); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: .78rem; letter-spacing: .15em; margin-bottom: 1.4rem; }
.testimonial-text { font-family: var(--serif); font-style: italic; font-size: clamp(.98rem,1.08vw,1.04rem); line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; font-weight: 500; }
.testimonial-author { font-size: clamp(.6rem,.74vw,.67rem); letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); font-weight: 700; }
.testimonial-venue  { font-family: var(--serif); font-style: italic; font-size: clamp(.84rem,.96vw,.88rem); color: var(--gold); margin-top: .2rem; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.faq-col-left  { padding-right: 6rem; border-right: 1px solid var(--cream-mid); }
.faq-col-right { padding-left: 6rem; }
.faq-item { border-bottom: 1px solid rgba(197,160,89,.15); padding: 1.6rem 0; }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.faq-q h3 { font-family: var(--sans); font-size: clamp(.92rem,1.08vw,1.02rem); font-weight: 600; color: var(--charcoal); flex: 1; line-height: 1.5; transition: color .3s; }
.faq-item.open .faq-q h3 { color: var(--gold); }
.faq-icon { width: 26px; height: 26px; border: 1px solid rgba(197,160,89,.38); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; flex-shrink: 0; transition: all .32s var(--ease); margin-top: 2px; }
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease), padding .28s; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 1rem; }
.faq-answer p { font-size: clamp(.9rem,1.04vw,.97rem); color: var(--text-mid); font-weight: 500; }

/* ── BLOG (article cards) ─────────────────────────────────────── */
.blog-section .blog-intro { max-width: 640px; margin-left: auto; margin-right: auto; }
.blog-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: 2.5rem; }
.blog-header-note { font-size: clamp(.58rem, .75vw, .65rem); letter-spacing: .18em; text-transform: uppercase; color: var(--text-mid); font-weight: 700; margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.blog-section .blog-grid .journal-card .journal-img { height: 220px; background: linear-gradient(145deg, #e8ddd4, #c4a88a); }
.journal-card { overflow: hidden; background: var(--white); border: 1px solid rgba(197,160,89,.1); transition: all .38s var(--ease); }
.journal-card:hover { box-shadow: 0 22px 58px rgba(0,0,0,.08); transform: translateY(-4px); }
.journal-img { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.journal-card:hover .journal-img img { transform: scale(1.05); }
.journal-tag { position: absolute; top: 1.2rem; left: 1.2rem; background: var(--white); padding: .28rem .8rem; font-size: clamp(.48rem,.62vw,.55rem); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.journal-body { padding: 2rem; }
.journal-date { font-size: clamp(.48rem,.62vw,.58rem); letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); margin-bottom: .8rem; display: block; font-weight: 600; }
.journal-card h3 { font-size: clamp(1.02rem,1.22vw,1.12rem); line-height: 1.35; margin-bottom: .9rem; font-weight: 600; }
.journal-card p  { font-size: clamp(.86rem,.98vw,.9rem); color: var(--text-mid); margin-bottom: 1.2rem; font-weight: 500; }
.journal-read { font-size: clamp(.5rem,.65vw,.6rem); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .5rem; transition: gap .28s; font-weight: 600; }
.journal-card:hover .journal-read { gap: .9rem; }
.journal-card--fa .journal-body { direction: rtl; text-align: right; }
.journal-card--fa h3,
.journal-card--fa p,
.journal-card--fa .journal-date,
.journal-card--fa .journal-read,
.journal-card--fa .journal-tag { font-family: 'IRANYekan', Tahoma, sans-serif; }
.journal-card--fa .journal-date { text-transform: none; letter-spacing: .06em; line-height: 1.4; }
.journal-card--fa .journal-read { text-transform: none; letter-spacing: .12em; }
.journal-card--fa .journal-tag { left: auto; right: 1.2rem; }

/* Standalone blog page (nav on light content) */
body.page-blog nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-dim);
  padding-top: 1rem; padding-bottom: 1rem;
}
body.page-blog .nav-logo { color: var(--charcoal); }
body.page-blog .nav-logo em { color: var(--gold); }
body.page-blog .nav-links a { color: var(--text-mid); }
body.page-blog .nav-hamburger span { background: var(--charcoal); }
body.page-blog .nav-cta { border-color: var(--gold) !important; color: var(--gold) !important; }
body.page-blog .blog-standalone { padding-top: clamp(5.5rem, 10vw, 7.5rem); }
.blog-index-all { text-align: center; margin-top: 2.25rem; }
.blog-index-all .btn { text-decoration: none; }

/* ── BOOKING ────────────────────────────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(4rem,8vw,9rem); align-items: start; }
.booking-info > p { margin-bottom: 1.8rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(197,160,89,.15); font-size: clamp(.9rem,1.04vw,.97rem); color: var(--text-mid); font-weight: 500; }
.contact-item a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.contact-item a:hover { color: var(--charcoal); }
.contact-icon { width: 40px; height: 40px; border: 1px solid rgba(197,160,89,.28); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; color: var(--gold); }
.contact-icon svg { display: block; width: 20px; height: 20px; flex-shrink: 0; }
.areas-wrap { margin-top: 2.5rem; }
.areas-label { font-size: clamp(.5rem,.65vw,.6rem); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; display: block; }
.areas-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-tag { padding: .3rem .9rem; border: 1px solid var(--cream-mid); font-size: clamp(.5rem,.65vw,.6rem); letter-spacing: .1em; color: var(--text-light); font-weight: 500; }
.form-card { background: var(--white); padding: clamp(2rem,4vw,4rem); box-shadow: 0 40px 100px rgba(0,0,0,.08); position: relative; }
.form-card::before { content: ''; position: absolute; top: 0; left: 4rem; right: 4rem; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.form-title    { font-family: var(--serif); font-size: clamp(1.4rem,1.8vw,1.6rem); font-weight: 600; margin-bottom: .5rem; }
.form-subtitle { font-size: clamp(.86rem,.98vw,.88rem); color: var(--text-mid); margin-bottom: 2.5rem; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: clamp(.48rem,.62vw,.58rem); letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-bottom: .5rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .8rem 1rem; border: none; border-bottom: 1px solid var(--cream-mid); background: transparent; font-family: var(--sans); font-size: clamp(.9rem,1.04vw,.97rem); font-weight: 500; color: var(--charcoal); outline: none; transition: border-color .3s; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { font-family: var(--serif); font-style: italic; font-size: clamp(.82rem,.94vw,.86rem); color: var(--text-mid); text-align: center; margin-top: 1rem; font-weight: 500; }
.form-card .form-status { text-align: center; margin-top: 0.75rem; font-size: clamp(.82rem,.94vw,.88rem); font-weight: 500; min-height: 1.25em; }
.form-card .form-status--error { color: #8b3a3a; }
.form-card .form-status--ok { color: #3d6b3b; }
/* Honeypot for bots — keep off-screen; must stay in DOM for accessibility bots that skip hidden= */
.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ── FINAL CTA ──────────────────────────────────────────────────── */
.cta-section { padding: clamp(6rem,12vw,10rem) 0; background: linear-gradient(160deg,#111 0%,#1a1a1a 60%,#141210 100%); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content:''; position:absolute; border-radius:50%; border:1px solid rgba(197,160,89,.1); width:600px; height:600px; top:-200px; right:-100px; pointer-events:none; }
.cta-section::after  { content:''; position:absolute; border-radius:50%; border:1px solid rgba(197,160,89,.08); width:400px; height:400px; bottom:-150px; left:-80px; pointer-events:none; }
.cta-inner { position: relative; z-index: 1; }
.cta-section .eyebrow { color: var(--gold-pale); margin-bottom: 1.5rem; }
.cta-section h2 { color: var(--white); max-width: 800px; margin: 0 auto 1.5rem; }
.cta-section h2 em { color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,.64); max-width: 500px; margin: 0 auto 3rem; font-weight: 500; }
.cta-divider { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.cta-divider::before, .cta-divider::after { content:''; width:80px; height:.5px; background:rgba(197,160,89,.3); }
.cta-divider span { color: var(--gold); font-size: .78rem; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
/* z-index: sits above .float-book (650) so footer content (e.g. design credit) is not covered by the fixed CTA */
footer { position: relative; z-index: 720; background: #0e0e0e; color: rgba(255,255,255,.42); padding: clamp(4rem,8vw,6rem) 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--serif); font-size: clamp(1.1rem,1.4vw,1.35rem); font-weight: 600; color: var(--white); display: block; margin-bottom: 1.2rem; }
.footer-logo em { font-style: italic; color: var(--gold-light); }
.footer-bio p { font-size: clamp(.86rem,.98vw,.92rem); line-height: 1.9; margin-bottom: 1.8rem; color: rgba(255,255,255,.55); font-weight: 500; }
.footer-socials { display: flex; gap: .7rem; }
.footer-social { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 0; line-height: 0; color: rgba(255,255,255,.5); transition: all .28s; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { display: block; width: 18px; height: 18px; flex-shrink: 0; }
.footer-col h4 { font-family: var(--sans); font-size: clamp(.48rem,.62vw,.58rem); letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; font-weight: 600; }
.footer-col li { padding: .3rem 0; }
.footer-col a { font-size: clamp(.84rem,.96vw,.9rem); color: rgba(255,255,255,.32); transition: color .28s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: clamp(.66rem,.8vw,.72rem); letter-spacing: .05em; color: var(--white); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: center; }
.footer-legal a { font-size: clamp(.62rem,.76vw,.7rem); color: var(--white); transition: color .28s, opacity .28s; }
.footer-legal a:hover { color: var(--gold-light); }

.footer-credit {
  text-align: center;
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
  text-decoration: none;
  transition: opacity 0.28s;
}
.footer-credit-link:hover { opacity: 0.88; }
.footer-credit-text {
  font-size: clamp(0.58rem, 0.72vw, 0.66rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}
.footer-credit-link img {
  height: 38px;
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
  display: block;
}

/* ── FLOATING ───────────────────────────────────────────────────── */
.whatsapp-btn { position: fixed; bottom: 2.5rem; right: 2.5rem; width: 52px; height: 52px; background: var(--green-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0; line-height: 0; box-shadow: 0 8px 28px rgba(37,211,102,.32); z-index: 730; transition: transform .28s, box-shadow .28s; }
.whatsapp-btn svg { display: block; width: 30px; height: 30px; flex-shrink: 0; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 38px rgba(37,211,102,.48); }
.float-book { position: fixed; bottom: 2.5rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); padding: .75rem 2.2rem; font-family: var(--sans); font-size: clamp(.52rem,.67vw,.62rem); letter-spacing: .19em; text-transform: uppercase; font-weight: 700; box-shadow: 0 6px 24px rgba(197,160,89,.38); z-index: 650; display: none; white-space: nowrap; transition: all .28s; }
.float-book:hover { background: #a8883e; }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal-up    { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-26px);transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }
.delay-4 { transition-delay: .34s; }
.anim-1 { animation: slideUp  .9s var(--ease-out) .2s  both; }
.anim-2 { animation: slideUp  1s  var(--ease-out) .42s both; }
.anim-3 { animation: slideUp  .9s var(--ease-out) .64s both; }
.anim-4 { animation: slideUp  .9s var(--ease-out) .82s both; }
.anim-5 { animation: fadeIn   1s  ease            1.05s both; }
.anim-6 { animation: fadeIn   1.2s ease           1.25s both; }
@keyframes slideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width:1100px) {
  .hero-mosaic { display: none; }
  .hero-main-wrap { padding-top: 5.5rem; padding-bottom: 6.5rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .port-item:nth-child(1) { grid-column:1/7;  grid-row:1/2; aspect-ratio:1.4; }
  .port-item:nth-child(2) { grid-column:7/13; grid-row:1/2; aspect-ratio:1.4; }
  .port-item:nth-child(3) { grid-column:1/5;  grid-row:2/3; }
  .port-item:nth-child(4) { grid-column:5/9;  grid-row:2/3; }
  .port-item:nth-child(5) { grid-column:9/13; grid-row:2/3; }
  .faq-wrap { grid-template-columns:1fr; }
  .faq-col-left  { padding-right:0; border-right:none; padding-bottom:2rem; }
  .faq-col-right { padding-left:0; padding-top:2rem; border-top:1px solid var(--cream-mid); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:3rem; }
}
@media (max-width:900px) {
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .about-grid, .booking-grid { grid-template-columns:1fr; gap:4rem; }
  .about-counter { display:none; }
  .process-grid { grid-template-columns:1fr 1fr; gap:3rem; }
  .process-grid::before { display:none; }
  .testimonials-grid { grid-template-columns:1fr; }
  .testimonials-grid .testimonial-card:not(:first-child) { display:none; }
  .packages-grid { grid-template-columns:1fr; }
  .packages-grid--guest { margin-top: 1.25rem; }
  .hero-frame { opacity:.22; }
}
@media (max-width:768px) {
  .hero-main-wrap { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .trust-tags { justify-content: center; }
}
@media (max-width:640px) {
  .services-grid { grid-template-columns:1fr; }
  .portfolio-grid { grid-template-columns:1fr 1fr; }
  .port-item:nth-child(1) { grid-column:1/3; aspect-ratio:1.4; }
  .port-item:nth-child(2) { grid-column:1/2; aspect-ratio:1; }
  .port-item:nth-child(3) { grid-column:2/3; aspect-ratio:1; }
  .port-item:nth-child(4) { grid-column:1/3; aspect-ratio:1.6; }
  .port-item:nth-child(5) { grid-column:1/3; aspect-ratio:1.6; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns:1fr; }
  .form-card { padding:2.2rem 1.6rem; }
  .footer-top { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .hero-frame { display:none; }
  .float-book { display:block; }
  /* Scrolling: footer (z-index 720) covers CTA (650) where they overlap, so the design credit is visible; keep minimal scroll pad */
  footer { padding-bottom: max(3rem, calc(2.5rem + env(safe-area-inset-bottom, 0px))); }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .anim-hero { animation: none; opacity: 1; transform: none; }
}
