/* ═══════════════════════════════════════════════════
   RAJSHRI BAND – LANDING PAGE
   Theme: Deep Emerald × Champagne Ivory
   Fonts: Cormorant Garamond + DM Sans
════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  /* Palette */
  --champ:    #C8A96E;
  --champ2:   #E0C688;
  --champ3:   #F5E8C0;
  --emerald:  #0F8A68;
  --em2:      #0A6B50;
  --em3:      #0D7A5C;
  --bg:       #060D0A;
  --bg2:      #091510;
  --bg3:      #0C1B14;
  --card:     #0E1F18;
  --card2:    #112518;
  --ivory:    #F0E6CC;
  --text:     #CEC5AE;
  --muted:    #7A8A80;
  --white:    #FAFAF5;
  --border:   rgba(200,169,110,0.16);
  --border2:  rgba(15,138,104,0.2);

  /* Typography */
  --font-head: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --t:        0.35s;
  --shadow:   0 8px 40px rgba(0,0,0,0.5);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; background: none; }

/* ── Typography helpers ──────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champ); margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 0 0 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champ));
}
.section-label::after {
  background: linear-gradient(90deg, var(--champ), transparent);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--ivory); font-weight: 600;
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--champ); }
.section-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.85; max-width: 580px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }
.center .section-label { justify-content: center; }
.champ { color: var(--champ); }

/* ── Ornament divider ────────────────────────────── */
.ornament {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0; color: var(--champ);
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.ornament-inner {
  font-size: 1.1rem; letter-spacing: 8px; color: var(--champ); opacity: 0.7;
}
.center .ornament { justify-content: center; }

/* ── Container ───────────────────────────────────── */
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 28px; }

/* ── Section spacing ─────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; border: none; transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn-champ {
  background: linear-gradient(135deg, var(--champ), var(--champ2));
  color: var(--bg); box-shadow: 0 4px 24px rgba(200,169,110,0.35);
}
.btn-champ:hover {
  box-shadow: 0 8px 36px rgba(200,169,110,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--ivory);
  border: 1.5px solid rgba(240,230,204,0.3);
}
.btn-outline:hover {
  border-color: var(--champ); color: var(--champ);
}
.btn-ghost {
  background: rgba(200,169,110,0.08); color: var(--champ);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(200,169,110,0.18); }

/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 22px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease);
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(6,13,10,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 13px; flex-shrink: 0;
}
.logo-gem {
  width: 42px; height: 42px; position: relative; flex-shrink: 0;
}
.logo-gem svg { width: 100%; height: 100%; }
.logo-info .logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700;
  color: var(--ivory); letter-spacing: 0.02em; line-height: 1.1;
}
.logo-info .logo-tag {
  font-size: 0.62rem; color: var(--champ);
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
}
nav .nav-links {
  display: flex; list-style: none; gap: 2px;
}
nav .nav-links a {
  display: block; padding: 8px 15px; border-radius: 50px;
  font-size: 0.87rem; font-weight: 500;
  color: rgba(240,230,204,0.65); transition: color var(--t), background var(--t);
}
nav .nav-links a:hover { color: var(--ivory); background: rgba(255,255,255,0.05); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ivory); border-radius: 2px; transition: all var(--t);
}
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(6,13,10,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 16px 28px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  transition: background var(--t), color var(--t);
}
.mobile-nav a:hover { background: rgba(200,169,110,0.08); color: var(--champ); }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
#hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; }
.hero-track {
  display: flex; height: 100%;
  transition: transform 1s cubic-bezier(0.77,0,0.175,1);
}
.hero-slide {
  flex: 0 0 100%; height: 100%; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 7s ease-out;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,13,10,0.5) 0%, rgba(6,13,10,0.15) 50%, transparent 100%),
    linear-gradient(to top,   rgba(6,13,10,0.35) 0%, transparent 22%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 max(28px, calc((100vw - 1300px)/2 + 28px));
  padding-top: 80px;
}
.hero-text { max-width: 680px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.35);
  padding: 6px 18px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--champ);
}
.hero-pill::before { content: '✦'; font-size: 0.6rem; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  color: var(--white); line-height: 1.08; font-weight: 600;
  margin-bottom: 22px; margin-top: 0; letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--champ2); }
.hero-p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(240,230,204,0.65); margin-bottom: 44px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* slide counter bottom-left */
.hero-counter {
  position: absolute; bottom: 36px;
  left: max(28px, calc((100vw - 1300px)/2 + 28px));
  display: flex; align-items: flex-end; gap: 10px;
}
.h-num { font-family: var(--font-head); font-size: 2.8rem; color: var(--champ); font-weight: 600; line-height: 1; }
.h-sep { width: 1px; height: 44px; background: rgba(200,169,110,0.3); margin-bottom: 4px; }
.h-tot { font-size: 0.8rem; color: var(--muted); padding-bottom: 8px; letter-spacing: 0.05em; }
/* dots */
.hero-dots {
  position: absolute; bottom: 42px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px;
}
.h-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(200,169,110,0.25); cursor: pointer; transition: all 0.3s;
}
.h-dot.active { background: var(--champ); width: 26px; border-radius: 4px; }
/* arrows */
.hero-arrows {
  position: absolute; bottom: 28px;
  right: max(28px, calc((100vw - 1300px)/2 + 28px));
  display: flex; gap: 10px;
}
.h-arr {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,169,110,0.08); border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--champ); font-size: 1rem; cursor: pointer; transition: all var(--t);
}
.h-arr:hover { background: var(--champ); color: var(--bg); border-color: var(--champ); }
/* progress */
.hero-bar {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--champ));
  animation: hbar 5s linear infinite; transform-origin: left;
}
@keyframes hbar { from { width: 0 } to { width: 100% } }

/* ════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════ */
#stats {
  background: var(--bg2);
  border-top: 1px solid rgba(15,138,104,0.15);
  border-bottom: 1px solid rgba(15,138,104,0.15);
  padding: 52px 0;
}
.stats-wrap {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-box {
  padding: 20px 28px; text-align: center; position: relative;
}
.stat-box + .stat-box::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.s-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--champ); font-weight: 600; line-height: 1; margin-bottom: 8px;
}
.s-lbl { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════ */
#services { background: var(--bg3); }
.srv-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
}
.nav-arrows { display: flex; gap: 10px; }
.arr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(200,169,110,0.06); border: 1px solid var(--border);
  color: var(--champ); font-size: 1rem; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--t);
}
.arr-btn:hover { background: var(--champ); color: var(--bg); border-color: var(--champ); }
.srv-track-wrap { overflow: hidden; }
.srv-track {
  display: flex; gap: 22px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 6px;
}
.srv-track::-webkit-scrollbar { display: none; }
.srv-card {
  flex: 0 0 min(270px, 82vw); border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid transparent;
  background: var(--card); transition: all var(--t);
}
.srv-card:hover {
  border-color: rgba(200,169,110,0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.srv-img {
  height: 195px; overflow: hidden; position: relative;
}
.srv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.srv-card:hover .srv-img img { transform: scale(1.08); }
.srv-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(14,31,24,0.8), transparent);
}
.srv-body { padding: 22px 20px 24px; }
.srv-icon { font-size: 1.7rem; margin-bottom: 12px; }
.srv-name {
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--ivory); font-weight: 600; margin-bottom: 8px; line-height: 1.2;
}
.srv-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.srv-cta {
  font-size: 0.78rem; font-weight: 700; color: var(--champ);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--t);
}
.srv-card:hover .srv-cta { gap: 11px; }

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
#about { background: var(--bg); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
/* image side */
.about-imgs { position: relative; }
.a-main { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); }
.a-main img { width: 100%; height: 100%; object-fit: cover; }
.a-thumb {
  position: absolute; bottom: -32px; right: -32px;
  width: 195px; border-radius: 18px; overflow: hidden;
  border: 4px solid var(--bg); box-shadow: var(--shadow);
}
.a-thumb img { width: 100%; height: 100%; object-fit: cover; }
.a-badge {
  position: absolute; top: 32px; left: -28px;
  background: linear-gradient(135deg, var(--champ), var(--champ2));
  color: var(--bg); padding: 18px 22px; border-radius: 16px;
  text-align: center; box-shadow: 0 12px 36px rgba(200,169,110,0.4);
}
.a-badge strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.a-badge span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; }
/* text side */
.about-text { padding-bottom: 24px; }
.about-text p { color: var(--text); line-height: 1.9; margin-bottom: 20px; font-size: 0.97rem; }
.feats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px;
}
.feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(15,138,104,0.06); border: 1px solid rgba(15,138,104,0.18);
  padding: 16px; border-radius: 14px; transition: border-color var(--t);
}
.feat:hover { border-color: rgba(200,169,110,0.35); }
.feat-ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(200,169,110,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.feat-t { font-size: 0.88rem; font-weight: 700; color: var(--ivory); margin-bottom: 3px; }
.feat-s { font-size: 0.76rem; color: var(--muted); }

/* ════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════ */
#why {
  background: var(--bg2);
  position: relative; overflow: hidden;
}
#why::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(15,138,104,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(200,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.why-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px;
}
.why-card {
  padding: 36px 26px; border-radius: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all var(--t);
}
.why-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(15,138,104,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t);
}
.why-card:hover::after { opacity: 1; }
.why-card:hover { border-color: rgba(15,138,104,0.35); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.w-num {
  font-family: var(--font-head); font-size: 5rem; font-weight: 700;
  color: rgba(200,169,110,0.07); position: absolute; top: 14px; right: 18px; line-height: 1;
}
.w-icon { font-size: 2.2rem; margin-bottom: 22px; }
.w-title {
  font-family: var(--font-head); font-size: 1.25rem;
  color: var(--ivory); font-weight: 600; margin-bottom: 12px; line-height: 1.2;
}
.w-text { font-size: 0.86rem; color: var(--muted); line-height: 1.85; }

/* ════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════ */
#gallery { background: var(--bg3); }
.gal-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 36px 0 44px; justify-content: center;
}
.gf-btn {
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.83rem; font-weight: 600;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer; transition: all var(--t);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--champ); color: var(--bg); border-color: var(--champ);
}
.gal-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.g-item {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--card);
}
.g-item.hidden { display: none; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,10,0.85) 0%, rgba(6,13,10,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--t);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover img { transform: scale(1.07); }
.g-title { color: var(--ivory); font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.g-cat { color: var(--champ); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.g-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(200,169,110,0.15); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--champ); font-size: 0.9rem;
  opacity: 0; transform: scale(0.7); transition: all var(--t);
}
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,9,7,0.94); display: flex;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 0 80px rgba(0,0,0,0.8); }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: var(--text); cursor: pointer; line-height: 1; transition: color var(--t);
}
.lb-close:hover { color: var(--champ); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.2);
  color: var(--ivory); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t);
}
.lb-prev:hover, .lb-next:hover { background: var(--champ); color: var(--bg); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); color: var(--text); text-align: center; font-size: 0.88rem;
}
.lb-caption strong { color: var(--champ); }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
#testimonials { background: var(--bg); position: relative; overflow: hidden; }
#testimonials::before {
  content: '"'; font-family: var(--font-head); font-size: 32rem;
  color: rgba(200,169,110,0.025); position: absolute; top: -6rem; right: -2rem;
  line-height: 1; pointer-events: none;
}
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform 0.7s var(--ease); }
.t-card {
  flex: 0 0 calc(33.333% - 17px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  position: relative;
}
.t-card:hover { border-color: rgba(200,169,110,0.3); }
.t-quote {
  font-family: var(--font-head); font-size: 4.5rem; color: rgba(15,138,104,0.2);
  line-height: 0.7; margin-bottom: 18px; display: block;
}
.t-text {
  font-size: 0.93rem; color: var(--text); line-height: 1.9;
  font-style: italic; margin-bottom: 28px;
}
.t-footer { display: flex; align-items: center; gap: 14px; }
.t-av {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid rgba(200,169,110,0.4); overflow: hidden; flex-shrink: 0;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; color: var(--champ); font-weight: 700;
}
.t-av img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 700; color: var(--ivory); font-size: 0.92rem; }
.t-role { font-size: 0.76rem; color: var(--champ); margin-top: 2px; }
.t-stars { color: var(--champ); font-size: 0.78rem; letter-spacing: 2px; margin-top: 3px; }
.testi-ctrl {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px;
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(200,169,110,0.2); cursor: pointer; transition: all var(--t);
}
.t-dot.active { background: var(--champ); width: 22px; border-radius: 4px; }

/* ════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════ */
#cta-banner {
  padding: 110px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #030A07 0%, var(--bg2) 50%, #030A07 100%);
}
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, var(--champ) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15,138,104,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; }
.cta-h {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 600;
  line-height: 1.2; margin-bottom: 20px;
}
.cta-h span { color: var(--champ); font-style: italic; }
.cta-p { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.85; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,169,110,0.07); border: 1px solid rgba(200,169,110,0.25);
  padding: 14px 26px; border-radius: 50px; color: var(--ivory);
  font-weight: 600; font-size: 0.9rem; transition: all var(--t);
}
.btn-phone:hover { background: rgba(200,169,110,0.15); border-color: var(--champ); color: var(--champ); }

/* ════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════ */
#contact { background: var(--bg2); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.c-item { display: flex; gap: 18px; margin-bottom: 28px; }
.c-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  background: rgba(15,138,104,0.1); border: 1px solid rgba(15,138,104,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.c-lbl { font-size: 0.72rem; color: var(--champ); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 4px; }
.c-val { color: var(--text); font-size: 0.92rem; line-height: 1.6; }
.map-box {
  margin-top: 28px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); height: 260px;
}
.map-box iframe { width: 100%; height: 100%; border: none; filter: brightness(0.75) saturate(0.6); }
/* Form */
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { margin-bottom: 18px; }
.f-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--champ); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.f-group input, .f-group textarea, .f-group select {
  width: 100%; background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 12px 16px; color: var(--ivory); font-size: 0.88rem;
  font-family: var(--font-body); transition: border-color var(--t); outline: none;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus {
  border-color: rgba(200,169,110,0.5); background: rgba(200,169,110,0.04);
}
.f-group input::placeholder, .f-group textarea::placeholder { color: rgba(122,138,128,0.5); }
.f-group textarea { resize: vertical; min-height: 120px; }
.f-group select option { background: var(--bg2); }
.form-ok { display:none; background:rgba(15,138,104,0.1); border:1px solid rgba(15,138,104,0.3); color:#5fd4a8; padding:14px 18px; border-radius:12px; margin-bottom:16px; font-size:0.88rem; }
.form-ok.show { display:block; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
#footer {
  background: #030A07;
  border-top: 1px solid rgba(15,138,104,0.12);
  padding: 72px 0 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 52px; margin-bottom: 52px;
}
.foot-brand p { font-size: 0.86rem; color: var(--muted); line-height: 1.85; margin: 20px 0 28px; }
.foot-social { display: flex; gap: 10px; }
.soc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,169,110,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted); transition: all var(--t);
}
.soc:hover { background: var(--champ); color: var(--bg); border-color: var(--champ); }
.foot-col h4 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--champ); margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 0.86rem; color: var(--muted); transition: color var(--t); }
.foot-col a:hover { color: var(--champ); }
.f-contact { display: flex; gap: 12px; margin-bottom: 14px; }
.f-contact svg { flex-shrink: 0; margin-top: 3px; }
.f-contact span { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.foot-copy { font-size: 0.8rem; color: var(--muted); }
.foot-copy a { color: var(--champ); }
.foot-made { font-size: 0.75rem; color: rgba(255,255,255,0.18); }

/* ════════════════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════════════════ */
.floating {
  position: fixed; bottom: 24px; right: 20px;
  z-index: 998; display: flex; flex-direction: column; gap: 12px;
}
.fl-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t), box-shadow var(--t); text-decoration: none;
}
.fl-btn:hover { transform: scale(1.1); }
.fl-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.fl-wa:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.fl-wa svg { fill: white; width: 25px; height: 25px; }
.fl-call {
  background: linear-gradient(135deg, var(--champ), #a88040);
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
.fl-call:hover { box-shadow: 0 8px 32px rgba(200,169,110,0.6); }
.fl-call svg { stroke: var(--bg); width: 21px; height: 21px; }

#back-top {
  position: fixed; bottom: 24px; left: 20px; z-index: 998;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(200,169,110,0.08); border: 1px solid var(--border);
  color: var(--champ); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t);
  opacity: 0; pointer-events: none;
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--champ); color: var(--bg); }

/* ════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════
   VIDEO HIGHLIGHTS
════════════════════════════════════════════════════ */
#videos {
  background: var(--bg);
  position: relative; overflow: hidden;
}
/* Decorative string-light strip across top */
#videos::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, var(--champ) 20%,
    rgba(200,169,110,0.4) 50%,
    var(--champ) 80%, transparent 100%);
  opacity: 0.5;
}
.vid-lights {
  position: absolute; top: 0; left: 0; right: 0;
  height: 90px; overflow: hidden; pointer-events: none;
}
.vid-lights svg { width: 100%; height: 100%; opacity: 0.18; }
/* Slider wrapper */
.vid-slider-wrap {
  display: flex; align-items: center; gap: 16px;
  margin-top: 52px;
}
.vid-viewport {
  flex: 1; overflow: hidden;
}
.vid-track {
  display: flex; gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.vid-card {
  flex: 0 0 calc((100% - 40px) / 3); /* 3-up: 2 gaps of 20px */
  border-radius: 16px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer; position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
/* Slider arrows */
.vid-arr {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  color: var(--champ); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.vid-arr:hover {
  background: rgba(200,169,110,0.15); border-color: var(--champ);
  transform: scale(1.08);
}
.vid-arr:disabled { opacity: 0.25; pointer-events: none; }
/* Dots */
.vid-dots-wrap {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.vid-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(200,169,110,0.25); border: none; cursor: pointer;
  transition: all var(--t); padding: 0;
}
.vid-dot.active { background: var(--champ); width: 24px; border-radius: 4px; }
.vid-card:hover {
  border-color: rgba(200,169,110,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.5);
}
.vid-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: #030A07;
}
.vid-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
}
.vid-card:hover .vid-thumb img {
  transform: scale(1.05); filter: brightness(0.65);
}
/* Play button */
.vid-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vid-play-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(200,169,110,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t), background var(--t), box-shadow var(--t);
  box-shadow: 0 4px 24px rgba(200,169,110,0.5);
}
.vid-play-btn svg {
  width: 22px; height: 22px; fill: var(--bg);
  margin-left: 4px; /* optical center for play triangle */
}
.vid-card:hover .vid-play-btn {
  transform: scale(1.12);
  background: var(--champ2);
  box-shadow: 0 8px 36px rgba(200,169,110,0.7);
}
/* Duration badge */
.vid-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(4,10,7,0.85); color: var(--champ);
  font-size: 0.72rem; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; letter-spacing: 0.06em;
}
/* Card body */
.vid-body { padding: 18px 18px 20px; }
.vid-title {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--ivory); font-weight: 600; line-height: 1.3;
  margin-bottom: 6px;
}
.vid-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
/* Play icon on hover label */
.vid-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.75rem; font-weight: 700;
  color: var(--champ); letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--t), transform var(--t);
}
.vid-card:hover .vid-cta { opacity: 1; transform: translateY(0); }

/* Video Modal */
#video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(2,7,4,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#video-modal.open { opacity: 1; pointer-events: all; }
.vm-wrap {
  position: relative; width: calc(100% - 48px); max-width: 900px;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.3s ease;
}
#video-modal.open .vm-wrap { transform: none; }
.vm-inner {
  position: relative; padding-top: 56.25%;
  background: #000; border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 80px rgba(0,0,0,0.9);
}
.vm-inner iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.vm-close {
  position: absolute; top: -44px; right: 0;
  font-size: 1.8rem; color: rgba(240,230,204,0.6); cursor: pointer;
  line-height: 1; transition: color var(--t); background: none; border: none;
}
.vm-close:hover { color: var(--champ); }
.vm-title {
  margin-top: 16px; text-align: center;
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--ivory); opacity: 0.85;
}

/* responsive */
@media (max-width: 900px) {
  .vid-card { flex: 0 0 calc((100% - 20px) / 2); } /* 2-up */
}
@media (max-width: 560px) {
  .vid-card { flex: 0 0 100%; }                     /* 1-up */
  .vid-arr { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ════════════════════════════════════════════════════
   PITCH / HOOK SECTION
════════════════════════════════════════════════════ */
#pitch {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
/* vine border top & bottom */
#pitch::before,
#pitch::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 12px,
    rgba(200,169,110,0.25) 12px, rgba(200,169,110,0.25) 14px
  );
}
#pitch::before { top: 0; }
#pitch::after  { bottom: 0; }

/* inner floral ornament lines */
.pitch-vine {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 32px;
}
.pitch-vine-line {
  flex: 1; max-width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.4), transparent);
}
.pitch-vine-icon { color: var(--champ); font-size: 1rem; letter-spacing: 6px; }

.pitch-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.pitch-tagline {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--champ);
  margin-bottom: 24px; display: block;
}
.pitch-heading {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
  color: var(--ivory); line-height: 1.25;
  margin-bottom: 28px;
}
.pitch-text {
  font-size: 1rem; color: var(--text); line-height: 1.85;
  margin-bottom: 16px;
}
.pitch-divider {
  margin: 44px auto;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.pitch-divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.5));
}
.pitch-divider-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(200,169,110,0.5));
}
.pitch-divider-gem {
  width: 10px; height: 10px; border: 1px solid var(--champ);
  transform: rotate(45deg); background: rgba(200,169,110,0.15);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */

/* ── 1100px: Wide Tablet / Small Desktop ────────── */
@media (max-width: 1100px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── 900px: Tablet Landscape ────────────────────── */
@media (max-width: 900px) {
  .about-wrap   { grid-template-columns: 1fr; gap: 48px; }
  .a-thumb      { right: 12px; bottom: 12px; width: 150px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .stats-wrap   { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(3)::before { display: none; }
  nav .nav-links     { display: none; }
  .header-cta .btn   { display: none; }
  .hamburger         { display: flex; }
  .gal-grid          { grid-template-columns: repeat(2, 1fr); }
  .t-card            { flex: 0 0 calc(50% - 12px); }
  .map-box           { height: 230px; }
  .foot-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-bot          { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── 768px: Tablet Portrait ─────────────────────── */
@media (max-width: 768px) {
  .section       { padding: 72px 0; }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
  #hero          { height: 75vh; height: 75svh; min-height: 500px; }
  .hero-bg       { background-position: 50% 30%; }
  .hero-h1       { font-size: clamp(2rem, 8vw, 3.6rem); }
  .logo-gem      { width: 36px; height: 36px; }
  .logo-name     { font-size: 1.05rem; }
  .srv-card      { flex: 0 0 calc(50% - 11px); }
  .why-cards     { gap: 16px; }
  .vid-slider-wrap { gap: 10px; }
  .pitch-heading { font-size: clamp(1.5rem, 5vw, 2.4rem); }
  .pitch-text    { font-size: 0.95rem; }
  .about-imgs    { height: 320px; }
  .gf-btn        { padding: 8px 18px; font-size: 0.75rem; }
}

/* ── 640px: Mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .section         { padding: 56px 0; }
  .container       { padding: 0 18px; }
  #hero            { height: 65vh; height: 65svh; min-height: 420px; max-height: 560px; }
  .hero-bg         { background-position: 50% 25%; }
  .hero-bg,
  .hero-slide.active .hero-bg { transform: none; }
  .hero-content    { padding: 72px 20px 60px; align-items: center; justify-content: center; }
  .hero-text       { text-align: center; max-width: 100%; }
  .hero-h1         { margin-bottom: 14px; }
  .hero-p          { margin-bottom: 28px; }
  .hero-arrows     { display: none; }
  .hero-counter    { display: none; }
  .hero-dots       { bottom: 16px; }
  .hero-btns       { justify-content: center; gap: 10px; }
  .hero-btns .btn  { min-width: 130px; justify-content: center; }
  .why-cards       { grid-template-columns: 1fr; }
  .foot-grid       { grid-template-columns: 1fr; gap: 28px; }
  .foot-brand      { text-align: center; }
  .foot-social     { justify-content: center; }
  .foot-bot        { text-align: center; }
  .foot-copy       { text-align: center; }
  .gal-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .t-card          { flex: 0 0 100%; }
  .a-badge         { display: none; }
  .a-thumb         { display: none; }
  .about-imgs      { height: 260px; }
  .f-grid          { grid-template-columns: 1fr; }
  .feats           { grid-template-columns: 1fr; }
  .srv-header      { flex-direction: column; align-items: flex-start; gap: 16px; }
  .srv-card        { flex: 0 0 78vw; }
  .map-box         { height: 200px; }
  .stat-box        { padding: 18px 14px; }
  .stat-box + .stat-box::before { display: none; }
  .cta-btns        { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn   { width: 100%; max-width: 320px; justify-content: center; }
  .vid-arr         { width: 34px; height: 34px; font-size: 0.85rem; }
  .vid-slider-wrap { gap: 8px; }
  .pitch-divider   { margin: 28px auto; }
  #pitch           { padding: 56px 0; }
  .floating        { bottom: 16px; right: 14px; gap: 10px; }
  .fl-btn          { width: 46px; height: 46px; }
  .fl-wa svg       { width: 22px; height: 22px; }
  .fl-call svg     { width: 18px; height: 18px; }
}

/* ── 480px: Small Phone ──────────────────────────── */
@media (max-width: 480px) {
  .section         { padding: 48px 0; }
  .container       { padding: 0 14px; }
  .section-label   { font-size: 0.65rem; letter-spacing: 0.14em; }
  .section-title   { font-size: clamp(1.35rem, 7vw, 1.9rem); }
  .ornament        { font-size: 0.75rem; letter-spacing: 4px; }
  /* Header */
  .logo-gem        { width: 30px; height: 30px; }
  .logo-name       { font-size: 0.92rem; }
  .logo-info .logo-tag { display: none; }
  /* Hero */
  #hero            { height: 62vh; height: 62svh; min-height: 400px; max-height: 520px; }
  .hero-bg         { background-position: 50% 20%; }
  .hero-content    { padding: 68px 16px 52px; }
  .hero-h1         { font-size: clamp(1.6rem, 9vw, 2.6rem); line-height: 1.2; }
  .hero-p          { font-size: clamp(0.82rem, 3.5vw, 1rem); }
  .hero-pill       { font-size: 0.65rem; padding: 6px 14px; }
  .hero-bar        { display: none; }
  .h-dot           { width: 6px; height: 6px; }
  .h-dot.active    { width: 18px; }
  /* Stats */
  .s-num           { font-size: 2rem; }
  .s-lbl           { font-size: 0.65rem; }
  .stat-box        { padding: 16px 8px; }
  /* Services */
  .srv-card        { flex: 0 0 82vw; }
  .arr-btn         { width: 38px; height: 38px; font-size: 0.9rem; }
  /* Gallery */
  .gal-grid        { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gal-filters     { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap;
                     padding-bottom: 8px; justify-content: flex-start; }
  .gal-filters::-webkit-scrollbar { display: none; }
  .gf-btn          { white-space: nowrap; flex-shrink: 0; padding: 7px 14px; font-size: 0.72rem; }
  /* Videos */
  .vid-card        { flex: 0 0 100%; }
  .vid-arr         { display: none; }
  .vid-dots-wrap   { gap: 6px; }
  /* Testimonials */
  .testi-track-wrap { gap: 10px; }
  /* Why cards */
  .why-card        { padding: 24px 20px; }
  /* Pitch */
  .pitch-heading   { font-size: clamp(1.25rem, 7.5vw, 1.75rem); }
  .pitch-text      { font-size: 0.87rem; line-height: 1.75; }
  .pitch-divider   { margin: 20px auto; }
  #pitch           { padding: 48px 0; }
  /* CTA */
  .cta-h           { font-size: clamp(1.4rem, 7.5vw, 2rem); }
  .cta-p           { font-size: 0.9rem; }
  /* Footer */
  .foot-col h4     { font-size: 0.68rem; }
  .foot-col a,
  .foot-col li     { font-size: 0.82rem; }
  .foot-copy,
  .foot-made       { font-size: 0.7rem; }
  /* Map */
  .map-box         { height: 180px; }
  /* Floating */
  .floating        { bottom: 14px; right: 12px; gap: 8px; }
  .fl-btn          { width: 42px; height: 42px; }
  .fl-wa svg       { width: 20px; height: 20px; }
  .fl-call svg     { width: 17px; height: 17px; }
}

/* ── 380px: Extra-Small Phone ────────────────────── */
@media (max-width: 380px) {
  .container       { padding: 0 12px; }
  .logo-name       { font-size: 0.85rem; }
  .hero-btns       { gap: 8px; }
  .hero-btns .btn  { max-width: 100%; }
  .srv-card        { flex: 0 0 88vw; }
  .gal-grid        { grid-template-columns: 1fr; gap: 10px; }
  .stats-wrap      { grid-template-columns: 1fr 1fr; }
  .pitch-heading   { font-size: clamp(1.15rem, 8vw, 1.5rem); }
  .about-imgs      { height: 220px; }
  .why-cards       { gap: 12px; }
}
