/* ═══════════════════════════════════════════════════════════
   SHUBHAKRUTH WEDDINGS & EVENTS — MASTER STYLESHEET
   Fonts: Cormorant Garamond (display) + Jost (body) + Pinyon Script (logo)
   Palette: Ivory · Champagne Gold · Deep Charcoal · Blush
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9E7A3F;
  --ivory:       #FAF7F2;
  --cream:       #F3EDE4;
  --charcoal:    #1C1C1C;
  --charcoal-2:  #2D2D2D;
  --charcoal-3:  #444444;
  --blush:       #EDD5C5;
  --white:       #FFFFFF;
  --text:        #2D2D2D;
  --text-light:  #666666;
  --border:      #E8DDD0;

  --font-serif:  'Poppins', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
  --font-script: 'Bodoni Moda', cursive;

  --radius:      5px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.16);

  --container:   1200px;
  --pad-section: 96px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--pad-section) 0; }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--charcoal); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title.light { color: var(--ivory); }
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.section-sub a { color: var(--gold); border-bottom: 1px solid var(--gold-light); }

.section-header { text-align: center; margin-bottom: 56px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary, .btn-ghost, .btn-outline,
.btn-primary-light, .btn-ghost-light, .btn-ghost-dark, .btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: #D4AF37;
  color: #1C1C1C;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-primary:hover {background: #B8962E; border-color: var(--gold-dark); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: #FFFFFF;
}
.btn-outline {
  background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-primary-light {
  background: var(--white); color: var(--charcoal); border: 2px solid var(--white);
}
.btn-primary-light:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost-light {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.15); }
.btn-ghost-dark {
  background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal-3);
}
.btn-ghost-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-nav {
  background: #D4AF37;
  color: #1C1C1C;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  padding: 10px 22px;
}
.btn-nav:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28, 22, 20, 0.55);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
 
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 26px; color: #E8D5A3;text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--charcoal-3);
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 400; letter-spacing: .05em;
  color: rgba(255,255,255,0.85);
}
.nav-links a:hover, .nav-links a.active { color: #E8D5A3; }
.nav-links li.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
      rgba(25,25,25,.78) 0%,
    rgba(25,25,25,.55) 50%,
    rgba(25,25,25,.35) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 48px 24px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-headline {
  display: flex; flex-direction: column; gap: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.hero-headline .script-line {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--gold-light); line-height: 1;
}
.hero-headline .serif-line {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.hero-headline .serif-line.thin { font-weight: 300; opacity: .85; }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 36px; max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 400; letter-spacing: .05em;
  color: rgba(255,255,255,.7);
}
.hero-badge .dot { color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 80px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}



.pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* Ticker */
.ticker-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(201,169,110,.12);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(201,169,110,.2);
  overflow: hidden; padding: 12px 0;
}
.ticker-track {
  display: flex; gap: 40px; width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-light);
  white-space: nowrap;
}
.ticker-dot { color: var(--gold) !important; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  padding: 28px 0;
}
.trust-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 40px;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 500;
  color: var(--gold);
}
.trust-item span {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 300; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 2px; overflow: hidden;border-radius: 20px;
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: -12px -12px auto auto;
  width: 60%; height: 60%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1; pointer-events: none;
}
.about-img-frame::after {
  content: '';
  position: absolute; inset: auto auto -12px -12px;
  width: 60%; height: 60%;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1; pointer-events: none;
}
.about-img {
  width: 100%; height: 720px; object-fit: cover;
  filter: brightness(.95) saturate(.95);
  transition: filter var(--transition);
}
.about-img:hover { filter: brightness(1) saturate(1); }
.about-img-accent {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.25) 0%, transparent 50%);
}
.about-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--charcoal); color: var(--white);
  padding: 20px 28px; text-align: center;
  box-shadow: var(--shadow-md);border-radius: 5px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.stat-label {
  display: block;
  font-size: 10px; font-weight: 400; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: var(--gold-dark); border-left: 3px solid var(--gold);
  padding-left: 20px; margin: 24px 0;
}
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-text p strong { color: var(--charcoal); font-weight: 600; }
.about-pillars {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin: 28px 0;
}
.pillar {
  display: grid; grid-template-columns: 20px 1fr;
  gap: 8px 12px; align-items: start;
}
.pillar-icon { color: var(--gold); font-size: 12px; margin-top: 4px; }
.pillar strong { font-size: .9rem; color: var(--charcoal); display: block; }
.pillar p { font-size: .85rem; color: var(--text-light); grid-column: 2; margin: 0; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  display: block;
  background: var(--white);
  padding: 40px 32px;
  position: relative; border-radius: 10px;overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.service-num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300;
  color: var(--border); margin-bottom: 16px; line-height: 1;
}
.service-icon { font-size: 1.6rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }
.service-link {
  display: inline-block; margin-top: 20px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  transition: gap var(--transition);
}
.section-cta {
  text-align: center; margin-top: 48px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   PORTFOLIO / ELFSIGHT
═══════════════════════════════════════════ */
.elfsight-wrap {
  margin: 0 -24px;
  min-height: 300px;
}
.elfsight-wrap > div { min-height: 300px; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.stars-display {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  margin-top: 8px;
}
.static-reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.review-stars { font-size: 1rem; margin-bottom: 16px; }
.review-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 20px;
}
.review-author strong {
  display: block; font-size: .9rem; font-weight: 500;
  color: var(--gold); margin-bottom: 4px; font-style: normal;
  font-family: var(--font-sans);
}
.review-author span {
  font-size: .8rem; color: rgba(255,255,255,.4);
  font-family: var(--font-sans); font-style: normal;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: center;
}
.process-step {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold); margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 10px;
}
.process-step p { font-size: .85rem; color: var(--text-light); }
.process-arrow {
  font-size: 1.5rem; color: var(--gold);
  padding: 0 16px; margin-top: -8px;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-container { max-width: 760px; }
.faq-list { margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  padding: 22px 0; text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 400;
  color: var(--charcoal); transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem; color: var(--gold);
  transition: transform var(--transition); flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: .95rem; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  position: relative; overflow: hidden;
  padding: 120px 0;
}
.cta-band-bg {
  position: absolute; inset: 0;
}
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,.88) 0%, rgba(28,28,28,.65) 100%);
}
.cta-band-content {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.cta-band-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.25; margin-bottom: 16px;
}
.cta-band-content h2 em { font-style: italic; color: var(--gold); }
.cta-band-content > p {
  font-size: 1rem; color: rgba(255,255,255,.7);
  max-width: 480px; margin: 0 auto 36px;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.cta-hours {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal-2);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand p {
  font-size: .9rem; color: rgba(255,255,255,.5);
  line-height: 1.6; margin-top: 16px; max-width: 280px;
}
.footer-social {
  display: flex; gap: 16px; margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: .875rem; color: rgba(255,255,255,.5);
  margin-bottom: 10px; line-height: 1.5;
}
.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours {
  font-size: .8rem !important;
  color: rgba(255,255,255,.35) !important;
  margin-top: 12px !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-seo-text {
  font-size: .75rem !important;
  color: rgba(255,255,255,.2) !important;
}

/* ═══════════════════════════════════════════
   STICKY BAR (Mobile)
═══════════════════════════════════════════ */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 0; height: 56px;
}
.sticky-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex: 1; height: 100%;
  font-size: 12px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  transition: background var(--transition);
}
.sticky-btn.call { color: var(--white); background: rgba(255,255,255,.06); }
.sticky-btn.whatsapp { color: var(--white); background: rgba(255,255,255,.06); }
.sticky-btn.enquiry { color: var(--gold); background: rgba(201,169,110,.12); }
.sticky-btn:hover { background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════════
   WHATSAPP BUBBLE
═══════════════════════════════════════════ */
.whatsapp-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #C9A96E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waBounce 2s ease-in-out 3s 3;
}
.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: .1s; }
.service-card.reveal:nth-child(3) { transition-delay: .2s; }
.service-card.reveal:nth-child(4) { transition-delay: .3s; }

/* ═══════════════════════════════════════════
   PAGE HERO (Inner pages)
═══════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 160px 0 80px;
  overflow: hidden; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,28,28,.72);
}
.page-hero-content {
  position: relative; z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,.7);
  max-width: 520px; margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-full-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.about-sticky { position: sticky; top: 100px; }
.founder-photo-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  margin-bottom: 24px;
}
.founder-photo-wrap img {
  width: 100%; height: 560px; object-fit: cover;
  object-position: top center;border-radius: 20px;
}
.founder-credentials {
  background: var(--cream); border: 1px solid var(--border);
  padding: 24px; border-radius: 10px;
}
.founder-credentials h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.cred-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px; font-size: .875rem;
}
.cred-icon { color: var(--gold); flex-shrink: 0; }
.about-full-text h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 400; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 8px;
}
.about-full-text h2 em { font-style: italic; color: var(--gold); }
.about-full-text p {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 20px;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 300; font-style: italic;
  color: var(--gold-dark); border-left: 3px solid var(--gold);
  padding: 16px 24px; background: var(--cream);
  margin: 32px 0; border-radius: 0 var(--radius) var(--radius) 0;
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.value-card {
  background: var(--cream); border: 1px solid var(--border);
  padding: 24px; border-radius: 10px;
}
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--charcoal); margin-bottom: 8px;
}
.value-card p { font-size: .85rem; color: var(--text-light); }

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.services-full .service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-full .service-block:nth-child(even) .service-block-img { order: 2; }
.services-full .service-block:nth-child(even) .service-block-text { order: 1; }
.service-block-img img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--radius);
}
.service-block-text .service-num {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 300; color: var(--border); line-height: 1;
  margin-bottom: 8px;
}
.service-block-text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 400; color: var(--charcoal);
  margin-bottom: 20px; line-height: 1.2;
}
.service-block-text p {
  font-size: .95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px;
}
.service-includes {
  margin: 20px 0;
}
.service-includes h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.service-includes li {
  font-size: .875rem; color: var(--text-light);
  padding: 6px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.service-includes li::before {
  content: '◆'; color: var(--gold); font-size: .6rem;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 16px;
}
.contact-info p { font-size: .95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-method:hover { border-color: var(--gold); }
.contact-method-icon { font-size: 1.4rem; }
.contact-method-text strong {
  display: block; font-size: .875rem; color: var(--charcoal); margin-bottom: 2px;
}
.contact-method-text span { font-size: .8rem; color: var(--text-light); }

/* Enquiry Form */
.enquiry-form {
  background: var(--cream); border: 1px solid var(--border);
  padding: 40px; border-radius: var(--radius);
}
.enquiry-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--charcoal); margin-bottom: 8px;
}
.enquiry-form > p { font-size: .875rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--charcoal-3);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-sans); font-size: .9rem;
  background: var(--white); color: var(--charcoal);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--charcoal); color: var(--white);
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--gold); color: var(--charcoal); }
.form-note {
  font-size: .78rem; color: var(--text-light);
  text-align: center; margin-top: 12px;
}
.form-success {
  display: none; text-align: center; padding: 40px;
}
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--charcoal); margin-bottom: 8px;
}
.form-success p { font-size: .9rem; color: var(--text-light); }

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; border-radius: var(--radius); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-cat {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500; color: var(--charcoal);
  line-height: 1.35; margin-bottom: 10px;
}
.blog-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-card-link {
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
.blog-card-date { font-size: .78rem; color: var(--text-light); margin-top: 8px; }

/* ═══════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════ */
.portfolio-filter {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  background: transparent; color: var(--text-light);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-section: 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process-arrow { display: none; }

  .static-reviews { grid-template-columns: 1fr 1fr; }
  .static-reviews .review-card:last-child { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .services-full .service-block { grid-template-columns: 1fr; gap: 36px; }
  .services-full .service-block:nth-child(even) .service-block-img { order: 0; }
  .services-full .service-block:nth-child(even) .service-block-text { order: 0; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 12px 24px; }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-section: 56px; 
  .cta-band-bg img {
    object-fit: cover;
    object-position: 85% center;}

  /* Nav */
  .nav-toggle { display: flex;opacity: 0.5; backdrop-filter: blur(4px);
  border-radius: 6px;
  background:  var(--gold); }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--gold-dark);
    flex-direction: column; gap: 0;
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
    border-bottom: 1px solid var(--border);
    z-index: 99;
	
  }
  .nav-links.open { max-height: 80vh; overflow-y: auto; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block; padding: 16px 24px;
    font-size: 15px;
  }
  .nav-links li.nav-cta { margin: 16px 24px; border: none; }
  .nav-links li.nav-cta a { display: block; text-align: center; }

  /* Hero */
  .hero-headline .script-line { font-size: 2.8rem; }
  .hero-headline .serif-line { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a { text-align: center; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-badge { flex-direction: column; gap: 4px; align-items: flex-start; }

  /* Trust */
  .trust-grid { flex-wrap: wrap; gap: 0; }
  .trust-item { width: 50%; padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }

  /* About */
  .about-stat-card { right: 0; bottom: -16px; }
  .about-img { height: 380px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Reviews */
  .static-reviews { grid-template-columns: 1fr; }
  .static-reviews .review-card:last-child { display: block; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  /* Sticky bar */
  .sticky-bar { display: flex; }
  .whatsapp-bubble { bottom: 70px; }

  /* CTA Band */
  .cta-band { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form { padding: 28px 20px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Section cta */
  .section-cta { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0 !important; }
