/* ═══════════════════════════════════════════════════════════════
   NIAN LUXURY SPA — LANDING PAGE CSS
   Uses the same color tokens as the main website (style.css)
   Link AFTER style.css, or use standalone with the :root below.
   Remove the :root block if style.css is already loaded.
═══════════════════════════════════════════════════════════════ */

/* ── Color tokens (same as main website) ── */
:root {
  --magenta:      #A01050;
  --magenta-dark: #780c3c;
  --magenta-light:#c01860;
  --gold:         #D4AF37;
  --gold-dark:    #B8902E;
  --gold-light:   #f0d870;
  --gold-deep:    #8a6a1f;
  --gold-deepest: #5c4515;
  --bronze:       #6b4f1a;
  --cream:        #FFF8F5;
  --cream-2:      #f9f0eb;
  --charcoal:     #1A1A1A;
  --text:         #2d2d2d;
  --text-light:   #6b5b46;
  --white:        #ffffff;
  --radius:       4px;
  --shadow:       0 4px 24px rgba(184, 144, 46, 0.16);
  --shadow-lg:    0 16px 48px rgba(184, 144, 46, 0.22);

  /* Landing-page semantic aliases → mapped to website tokens */
  --ink:        var(--charcoal);
  --muted:      var(--text-light);
  --gold-lp:    var(--gold);           /* avoid clash if style.css loaded */
  --border:     rgba(212, 175, 55, 0.25);
}

/* ══════ RESET ══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════ TYPOGRAPHY ══════ */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; height: 1px; width: 32px;
  background: var(--gold); opacity: 0.7;
}
.eyebrow.left::before { display: none; }

/* ══════ LAYOUT ══════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ══════ BUTTONS ══════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--gold);
}
.btn-dark:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════ STICKY CTA BAR (mobile) ══════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--charcoal); z-index: 999;
  padding: 12px 16px; gap: 12px;
}
.sticky-cta a {
  flex: 1; text-align: center; padding: 13px 10px;
  border-radius: var(--radius); font-size: 13px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sticky-cta .scta-call { background: var(--gold); color: var(--charcoal); }
.sticky-cta .scta-wa   { background: #25D366; color: var(--white); }

/* ══════ FLOATING BUTTONS (desktop) ══════ */
.floating-buttons {
  position: fixed; right: 24px; bottom: 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; z-index: 998;
  background: var(--charcoal); border-radius: 40px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.floating-buttons .icon-btn {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); transition: all 0.25s;
}
.floating-buttons .icon-btn:hover       { background: var(--gold); color: var(--charcoal); }
.floating-buttons .icon-btn.wa:hover    { background: #25D366; color: var(--white); }
.floating-buttons .divider {
  width: 28px; height: 1px;
  background: rgba(212, 175, 55, 0.25);
}

/* ══════ TOP BAR ══════ */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 10px 0; font-size: 12px; letter-spacing: 0.5px;
}
.top-bar .inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.top-bar a          { color: var(--gold-light); }
.top-bar a:hover    { color: var(--gold); }
.top-bar-links      { display: flex; gap: 20px; }
.top-bar-links a    { display: flex; align-items: center; gap: 6px; }

/* ══════ HERO ══════ */
.hero {
  background: linear-gradient(135deg,
    var(--gold-deepest) 0%,
    var(--gold-deep)    35%,
    var(--gold-dark)    65%,
    var(--bronze)       100%);
  padding: 72px 0 68px; position: relative; overflow: hidden;
}
.hero::before {
  content: 'N';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 30vw, 420px); font-weight: 700;
  color: rgba(255,255,255,0.035); line-height: 1;
  pointer-events: none; user-select: none;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
  max-width: 820px; margin: 0 auto;
}

/* Logo + brand */
.hero-logo-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-logo-wrap img {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.7); object-fit: cover;
}
.hero-logo-wrap .brand-name {
  font-family: 'Playfair Display', serif; font-size: 30px;
  font-weight: 600; color: var(--white); line-height: 1;
}
.hero-logo-wrap .brand-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.35);
  border-radius: 40px; padding: 6px 16px; margin-bottom: 20px;
}
.hero-badge span {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-light);
}
.hero-badge i { color: var(--gold); font-size: 10px; }

.hero h1 {
  font-size: clamp(28px, 5vw, 56px); color: var(--white);
  font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; display: block; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px); color: rgba(255,255,255,0.75);
   margin: 0 auto 32px; line-height: 1.85;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px; justify-content: center;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 0;
}
.hero-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px; padding: 5px 14px;
  font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.5px;
}
.hero-info-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px; justify-content: center;
}
.hero-info-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 40px; padding: 8px 16px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.hero-info-pill i { color: var(--gold); font-size: 12px; }
.hero-info-pill a { color: var(--gold-light); }

/* ══════ TRUST BAR ══════ */
.trust-bar {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: space-around; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 18px; }
.trust-item-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.trust-item-text span   { font-size: 12px; color: var(--text-light); }

/* ══════ ABOUT ══════ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg,
    var(--gold-deepest) 0%,
    var(--gold-deep)    35%,
    var(--gold-dark)    65%,
    var(--bronze)       100%);
  border-radius: 12px; padding: 48px 36px; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.about-visual-logo {
  width: 90px; height: 90px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.6); margin-bottom: 24px; object-fit: cover;
}
.about-visual h3 { font-size: 28px; color: var(--white); margin-bottom: 8px; }
.about-visual-tagline {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px; padding: 16px; text-align: center;
}
.about-stat-n {
  font-family: 'Playfair Display', serif; font-size: 32px;
  color: var(--gold-light); font-weight: 700;
}
.about-stat-l {
  font-size: 11px; color: rgba(255,255,255,0.6);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}
.about-text h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.about-text h2 em { color: var(--gold-dark); font-style: italic; }
.about-text p { color: var(--text-light); margin-bottom: 18px; font-size: 16px; line-height: 1.85; }
.about-checks { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.about-check i { color: var(--gold); font-size: 13px; width: 18px; }

/* ══════ SERVICES ══════ */
.services {
  background: linear-gradient(135deg,
    var(--gold-deepest) 0%,
    var(--gold-deep)    35%,
    var(--gold-dark)    65%,
    var(--bronze)       100%);
  position: relative; overflow: hidden;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.sec-header { margin-bottom: 48px; }
.sec-header.center {
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.sec-header.center .eyebrow { justify-content: center; }
.sec-header h2 { font-size: clamp(26px, 3.5vw, 42px); }
.sec-header p  { font-size: 16px; color: var(--text-light); max-width: 540px; margin-top: 10px; }
.sec-header.light h2 { color: var(--white); }
.sec-header.light p  { color: rgba(255,255,255,0.65); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative;
}
.svc-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.18);
  border-radius: 10px; padding: 32px 24px;
  transition: all 0.35s ease; cursor: default;
}
.svc-card:hover {
  background: rgba(255,255,255,0.11); border-color: rgba(212,175,55,0.45);
  transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}
.svc-icon {
  width: 52px; height: 52px; background: rgba(212,175,55,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); margin-bottom: 18px;
}
.svc-card h3 { font-size: 19px; color: var(--white); margin-bottom: 10px; }
.svc-card p  { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 14px; }
.svc-badge {
  display: inline-block; background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 40px;
  padding: 3px 12px; font-size: 11px; color: var(--gold-light); letter-spacing: 1px;
}

/* ══════ WHY CHOOSE ══════ */
.why { background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--white); border-radius: 10px; padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(184,144,46,0.07);
  border-bottom: 3px solid transparent; transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
.why-icon {
  width: 48px; height: 48px; background: var(--cream-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-dark); margin-bottom: 16px; transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--cream); }
.why-card h4 { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.why-card p  { font-size: 14.5px; color: var(--text-light); line-height: 1.75; }

/* ══════ LOCATION ══════ */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 14px; }
.location h2 em { color: var(--gold-dark); font-style: italic; }
.location-intro { color: var(--text-light); font-size: 16px; line-height: 1.85; margin-bottom: 28px; }
.location-address {
  background: var(--cream-2); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin-bottom: 24px;
}
.location-address p { font-size: 15px; color: var(--text); line-height: 1.7; }
.landmarks h4 {
  font-size: 15px; font-weight: 600; margin-bottom: 14px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.landmarks h4 i { color: var(--gold); }
.landmarks-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.landmark-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-light); padding: 6px 0;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.landmark-item i { color: var(--gold); font-size: 11px; width: 14px; }
.landmark-time  { margin-left: auto; font-size: 12px; color: var(--gold-dark); font-weight: 500; }
.map-embed {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 3px solid var(--cream-2);
}
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* ══════ AREAS ══════ */
.areas { background: var(--cream-2); padding: 60px 0; }
.areas h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 8px; text-align: center; }
.areas h2 em { color: var(--gold-dark); font-style: italic; }
.areas-sub { text-align: center; color: var(--text-light); font-size: 15px; margin-bottom: 32px; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 14px; text-align: center; transition: all 0.3s;
}
.area-chip:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-chip-name { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.area-chip-pin  { font-size: 12px; color: var(--text-light); }
.area-chip-dist { font-size: 11px; color: var(--gold-dark); font-weight: 500; margin-top: 4px; }

/* ══════ REVIEWS ══════ */
.reviews {
  background: linear-gradient(135deg,
    var(--gold-deepest) 0%,
    var(--gold-deep)    50%,
    var(--bronze)       100%);
  padding: 80px 0;
}
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px; padding: 28px 24px; transition: all 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(212,175,55,0.4); }
.review-stars  { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text   { font-size: 15.5px; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; margin-bottom: 16px; }
.review-author { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.reviews-agg {
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px; padding: 28px; text-align: center; margin-bottom: 32px;
}
.agg-score { font-family: 'Playfair Display', serif; font-size: 56px; color: var(--gold-light); font-weight: 700; line-height: 1; }
.agg-stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin: 6px 0; }
.agg-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; }

/* ══════ FAQ ══════ */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', 'Montserrat', sans-serif; font-size: 16px; font-weight: 500;
  color: var(--text); text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-q i { font-size: 12px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--text-light); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ══════ CTA BANNER ══════ */
.cta-banner {
  background: linear-gradient(135deg,
    var(--gold-deepest) 0%,
    var(--gold-deep)    35%,
    var(--gold-dark)    65%,
    var(--bronze)       100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 46px); color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 32px; position: relative; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone-big {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 12px 24px; color: var(--white);
  font-size: 20px; font-family: 'Playfair Display', serif; font-weight: 500;
  transition: all 0.3s;
}
.cta-phone-big:hover { background: rgba(255,255,255,0.18); }
.cta-phone-big i { color: var(--gold); }

/* ══════ FOOTER ══════ */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.4); object-fit: cover;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); font-weight: 500; }
.footer-brand-sub  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col h5 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 10px; color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ══════ SEO KEYWORD TAGS ══════ */
.seo-keywords { background: var(--cream); padding: 32px 0; border-top: 1px solid var(--border); }
.seo-keywords-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 14px; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 40px; padding: 5px 14px;
  font-size: 12px; color: var(--text-light);
}

/* ══════ SCROLL REVEAL ══════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════ SCROLLBAR ══════ */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 48px 0 44px; }
  .hero-inner { max-width: 100%; }
  .hero-logo-wrap img { width: 58px; height: 58px; }
  .hero-logo-wrap .brand-name { font-size: 24px; }

  .about-grid    { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }

  .trust-items { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 8px; }
  .trust-item  { border-right: none; border-bottom: 1px solid var(--border); padding: 8px 0; width: 100%; }

  .top-bar-links   { display: none; }
  .floating-buttons{ display: none; }
  .sticky-cta      { display: flex; }
  body             { padding-bottom: 70px; }

  .landmarks-list { grid-template-columns: 1fr; }
  .about-checks   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero h1       { font-size: 26px; }
}