@charset "UTF-8";
/* ============================================================
   THE HEAVENLY GROUP — style.css
   Luxury Construction Landing Page
   ============================================================ */


/* ══════════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES
   ══════════════════════════════════════════════════════════ */
:root {
  /* Navy palette */
  --navy:         #0A1628;
  --navy-deepest: #080f1e;
  --navy-deep:    #0c1528;
  --navy-base:    #0f1e3c;
  --navy-mid:     #152440;
  --navy-card:    #111d35;
  --navy-card2:   #162038;
  --navy-border:  rgba(201, 168, 92, 0.18);
  --navy-light:   #152848;

  /* Gold palette */
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-lighter: #F5DFA0;
  --gold-dark:    #8A6820;
  --gold-glow:    rgba(201, 168, 92, 0.18);
  --gold-pale:    rgba(201, 168, 92, 0.12);
  --gold-primary: #c9a84c;
  --gold-dim:     #8a6f32;

  /* Text */
  --cream:        #F7F0E0;
  --white:        #FFFFFF;
  --mist:         #7A94B0;
  --text-white:   #f0ede6;
  --text-soft:    rgba(240, 237, 230, 0.55);
  --text-muted:   rgba(240, 237, 230, 0.35);
  --text-dim:     rgba(245, 239, 224, 0.55);
  --text-body:    rgba(245, 239, 224, 0.82);
  --white-70:     rgba(255, 255, 255, 0.70);
  --white-40:     rgba(255, 255, 255, 0.40);
  --white-15:     rgba(255, 255, 255, 0.15);

  /* Borders & Shadows */
  --border:        rgba(201, 168, 76, 0.18);
  --border-strong: rgba(201, 168, 76, 0.42);
  --shadow-gold:   0 8px 32px rgba(201, 168, 76, 0.28);
  --shadow:        0 4px 30px rgba(0, 0, 0, 0.35);
  --shadow-hover:  0 16px 50px rgba(0, 0, 0, 0.55);

  /* Misc */
  --transition:    0.28s ease;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', sans-serif;
}


/* ══════════════════════════════════════════════════════════
   2. RESET & BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

section { scroll-margin-top: 120px; }


/* ══════════════════════════════════════════════════════════
   3. ANIMATIONS & KEYFRAMES
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50%       { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0.12); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes navSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  from { left: 50%; right: 50%; opacity: 0; }
  to   { left: 0;   right: 0;   opacity: 1; }
}


/* ══════════════════════════════════════════════════════════
   4. SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible    { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: 0.15s; }
.reveal-delay-2    { transition-delay: 0.30s; }
.reveal-delay-3    { transition-delay: 0.45s; }


/* ══════════════════════════════════════════════════════════
   5. TYPOGRAPHY HELPERS
   ══════════════════════════════════════════════════════════ */
.gold { color: var(--gold); }

.section-eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold-dark);
}
.section-eyebrow.left            { justify-content: flex-start; }
.section-eyebrow.left::before    { display: none; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 0.03em;
}


/* ══════════════════════════════════════════════════════════
   6. BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 0.95rem 2.6rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 0.95rem 2.6rem;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Shared primary button (used in hero & featured sections) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deepest);
  border: none;
  padding: 13px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border-radius: 2px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 92, 0.35);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.82rem;
}

/* CTA banner button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deepest);
  padding: 16px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  flex-shrink: 0;
}
.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 92, 0.4);
}

/* Video button */
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-video:hover { color: var(--gold); }

.play-icon svg { width: 42px; height: 42px; }


/* ══════════════════════════════════════════════════════════
   7. SECTIONS (generic)
   ══════════════════════════════════════════════════════════ */
section { padding: 7rem 5vw; }


/* ══════════════════════════════════════════════════════════
   8. NAVIGATION
   ══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: navSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
}

nav.scrolled {
  background: rgba(10, 20, 34, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(201, 168, 76, 0.12);
  height: 64px;
}

/* Ornamental gold line */
nav::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineExpand 1.4s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  animation: fadeUp 0.8s 0.2s both;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
}

.logo-text { line-height: 1; }

.logo-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  text-transform: uppercase;
  transition: color 0.3s;
}

.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  transition: color 0.3s;
}

.logo:hover .logo-title { color: var(--gold-light); }
.logo:hover .logo-sub   { color: rgba(255, 255, 255, 0.75); }

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li { animation: fadeUp 0.7s both; }
.nav-links li:nth-child(1) { animation-delay: 0.30s; }
.nav-links li:nth-child(2) { animation-delay: 0.38s; }
.nav-links li:nth-child(3) { animation-delay: 0.46s; }
.nav-links li:nth-child(4) { animation-delay: 0.54s; }
.nav-links li:nth-child(5) { animation-delay: 0.62s; }

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 16px;
  position: relative;
  display: block;
  transition: color 0.3s;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              right 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s;
  opacity: 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.nav-links a:hover             { color: var(--gold-light); }
.nav-links a:hover::before     { left: 16px; right: 16px; opacity: 1; }
.nav-links a:hover::after      { opacity: 1; }
.nav-links a.active            { color: var(--gold); }
.nav-links a.active::before    { left: 16px; right: 16px; opacity: 0.8; }

/* ── Diamond separator ── */
.sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.3;
  flex-shrink: 0;
  margin: 0 2px;
  animation: fadeUp 0.7s 0.5s both;
}

/* ── Nav CTA button ── */
.cta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  background: var(--gold);
  padding: 11px 22px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  animation: fadeUp 0.7s 0.72s both;
  transition: color 0.3s, box-shadow 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta span { position: relative; z-index: 1; }

.cta:hover {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35), 0 4px 20px rgba(0, 0, 0, 0.4);
  color: var(--navy);
}
.cta:hover::before { transform: translateX(200%); }
.cta:hover::after  { opacity: 1; }

/* ── Mobile hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
  display: flex; /* always flex */
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 20, 34, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  gap: 2px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu a::before {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu a:hover              { color: var(--gold); padding-left: 6px; }
.mobile-menu a:hover::before      { opacity: 1; }

.mobile-cta {
  margin-top: 1.2rem;
  text-align: center;
}

/* desktop */
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }

  .hamburger {
    display: none;
  }
}

/* mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ══════════════════════════════════════════════════════════
   9. HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 40px;
}

/* Subtle grid background texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow top-left */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at top left, rgba(13, 40, 80, 0.85) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Badge top line ── */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.badge-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--white-70);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Two-column layout ── */
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: var(--font-serif);
  line-height: 1.05;
  margin-bottom: 24px;
}

.heading-white {
  display: block;
  font-weight: 700;
  font-size: clamp(52px, 5vw, 78px);
  color: var(--white);
  letter-spacing: -0.01em;
}

.heading-gold {
  display: block;
  font-weight: 400;
  font-size: clamp(52px, 5vw, 78px);
  color: var(--gold);
  letter-spacing: -0.01em;
}

.italic { font-style: italic; }

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 480px;
  margin-bottom: 40px;
}

/* ── Action buttons ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}

/* ── Stats row ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--white-15);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--white-70);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-15);
  flex-shrink: 0;
}

/* ── Right column: image stack ── */
.hero-right {
  position: relative;
  height: 560px;
}

.img-main-wrapper {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 100%;
  z-index: 1;
}

.img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--white-15);
}

.established-card {
  position: absolute;
  top: 50px;
  left: 0;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--white-15);
  padding: 20px 24px;
  z-index: 3;
  min-width: 200px;
}

.est-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white-40);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.est-year {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.est-location {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--white-70);
}

.img-secondary-wrapper {
  position: absolute;
  bottom: 0; left: 0;
  width: 46%;
  height: 45%;
  z-index: 2;
}

.img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--white-15);
}

.award-card {
  position: absolute;
  bottom: 0; right: -10px;
  background: var(--navy-card);
  border: 1px solid var(--white-15);
  padding: 16px 20px;
  z-index: 4;
  min-width: 160px;
}

.award-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.award-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.award-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--white-70);
  margin-top: 2px;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white-70);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white-70), transparent);
}


/* ══════════════════════════════════════════════════════════
   10. HERO BANNER (Testimonials page hero)
   ══════════════════════════════════════════════════════════ */
.hero-banner {
  background: var(--navy-base);
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(201, 168, 92, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 100%, rgba(15, 30, 60, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(201, 168, 92, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(201, 168, 92, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(201, 168, 92, 0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 80%, rgba(201, 168, 92, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.hero-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.08;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-banner h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  margin: 20px auto 0;
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.7;
}

.section-label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════
   11. ABOUT / HERITAGE
   ══════════════════════════════════════════════════════════ */
#heritage {
  background: var(--navy-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.95;
}

.founder-card {
  margin-top: 2.5rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color var(--transition);
}
.founder-card:hover      { border-color: var(--border-strong); }
.founder-icon            { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.founder-name            { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--gold); }
.founder-role            { font-size: 0.74rem; color: var(--mist); margin-top: 0.2rem; }
.founder-story           { font-size: 0.83rem; color: var(--cream); margin-top: 0.5rem; line-height: 1.72; }

.about-visual            { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
  filter: brightness(0.95) saturate(0.9);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.72) 0%, transparent 55%);
}

.about-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
}

.caption-name {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gold);
}

.caption-role {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.25rem;
}

.est-badge {
  position: absolute;
  top: -1.2rem; right: -1.2rem;
  width: 92px; height: 92px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  z-index: 3;
  box-shadow: var(--shadow-gold);
  font-family: 'Cinzel', serif;
}

.est-badge .est-year { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.est-text            { font-size: 0.46rem; letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase; margin-top: 2px; }


/* ══════════════════════════════════════════════════════════
   12. VISION / MISSION / VALUES
   ══════════════════════════════════════════════════════════ */
#vision {
  background: var(--navy);
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: left;
}

.vision-card {
  padding: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.03);
  transition: border-color var(--transition), background var(--transition);
}
.vision-card:hover { border-color: var(--border-strong); background: rgba(201, 168, 76, 0.06); }

.vision-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vision-card p { font-size: 0.87rem; color: var(--mist); line-height: 1.9; font-weight: 300; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-item {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.value-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-num        { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.value-name       { font-family: 'Cinzel', serif; font-size: 0.82rem; color: var(--cream); margin-top: 0.4rem; font-weight: 600; }
.value-desc       { font-size: 0.75rem; color: var(--mist); margin-top: 0.5rem; line-height: 1.65; }


/* ══════════════════════════════════════════════════════════
   13. PROJECTS
   ══════════════════════════════════════════════════════════ */
#projects { background: var(--navy-mid); }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-type-card {
  padding: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--navy-mid);
  transition: border-color var(--transition), transform var(--transition);
}
.project-type-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.pt-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.pt-name { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; color: var(--gold); margin-bottom: 0.6rem; }
.pt-desc { font-size: 0.84rem; color: var(--mist); line-height: 1.78; }

.site-photo {
  margin-top: 3rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.site-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.site-photo:hover img { transform: scale(1.03); filter: brightness(0.9) saturate(1); }

.site-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.site-photo-title { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--cream); font-weight: 600; }
.site-photo-sub   { font-size: 0.84rem; color: var(--gold); margin-top: 0.5rem; }


/* ══════════════════════════════════════════════════════════
   14. PHOTO GALLERY (Scrolling)
   ══════════════════════════════════════════════════════════ */
.photo-gallery-section {
  background: var(--navy-deepest);
  padding: 80px 0 60px;
  position: relative;
}

.photo-gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dim) 25%,
    var(--gold-primary) 50%,
    var(--gold-dim) 75%,
    transparent 100%);
}

.photo-gallery-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.photo-gallery-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.photo-gallery-label::before,
.photo-gallery-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
  vertical-align: middle;
  margin: 0 10px;
}

.photo-gallery-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.photo-gallery-heading em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
}

/* ── Track wrapper ── */
.photo-track-wrapper {
  position: relative;
  width: 100%;
}

.photo-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.photo-fade-left  { left: 0;  background: linear-gradient(to right, var(--navy-deep), transparent); }
.photo-fade-right { right: 0; background: linear-gradient(to left,  var(--navy-deep), transparent); }

.photo-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 80px 18px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}
.photo-track:active              { cursor: grabbing; }
.photo-track::-webkit-scrollbar  { display: none; }

.photo-slide {
  flex: 0 0 380px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--navy-border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.photo-slide:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold-dim);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--gold-dim),
    0 0 24px rgba(201, 168, 76, 0.1);
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-slide:hover img { transform: scale(1.07); }

/* Gold shimmer bottom line on hover */
.photo-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-primary), var(--gold-dim));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: center;
}
.photo-slide:hover::after { transform: scaleX(1); }

/* ── Navigation ── */
.photo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.photo-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  flex-shrink: 0;
}
.photo-nav-btn svg { width: 17px; height: 17px; }
.photo-nav-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-deep);
  transform: scale(1.1);
}
.photo-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; transform: none; }

/* ── Dots ── */
.photo-dots { display: flex; gap: 7px; align-items: center; }

.photo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.photo-dot.active { background: var(--gold-primary); width: 20px; border-radius: 3px; }


/* ══════════════════════════════════════════════════════════
   15. QUALITY PROCESS
   ══════════════════════════════════════════════════════════ */
#quality {
  background: var(--navy-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.quality-intro p { margin-top: 1.4rem; font-size: 0.9rem; color: var(--mist); line-height: 1.95; font-weight: 300; }

.quality-stages { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2.5rem; }

.stage {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.03);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.stage:hover {
  border-color: var(--border-strong);
  background: rgba(201, 168, 76, 0.07);
  transform: translateX(5px);
}
.stage-num  { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold); font-weight: 700; flex-shrink: 0; width: 28px; text-align: center; }
.stage-name { font-size: 0.84rem; color: var(--cream); font-weight: 500; }

.quality-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.q-highlight {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  background: rgba(201, 168, 76, 0.03);
  transition: border-color var(--transition), transform var(--transition);
}
.q-highlight:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.q-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-lighter));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.q-label { font-size: 0.71rem; color: var(--mist); margin-top: 0.3rem; letter-spacing: 0.08em; }


/* ══════════════════════════════════════════════════════════
   16. TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
#clients {
  background: var(--navy-mid);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

.testimonial {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.t-stars   { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 1rem; }

.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--cream);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.t-name    { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.t-project { font-size: 0.7rem; color: var(--mist); margin-top: 0.2rem; }


/* ══════════════════════════════════════════════════════════
   17. CONTACT
   ══════════════════════════════════════════════════════════ */
#contact {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p { margin-top: 1.5rem; font-size: 0.9rem; color: var(--mist); line-height: 1.9; font-weight: 300; }

.c-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

.c-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color var(--transition), background var(--transition);
}
.c-item:hover { border-color: var(--border-strong); background: rgba(201, 168, 76, 0.04); }

.c-icon  { font-size: 1.3rem; flex-shrink: 0; }
.c-label { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }
.c-val   { font-size: 0.88rem; color: var(--cream); margin-top: 0.1rem; font-weight: 500; }

.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.wa-button:hover {
  background: #1fb356;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.42);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.78rem 1rem;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-strong); }
.form-group select option   { background: var(--navy-mid); }
.form-group textarea        { resize: vertical; min-height: 112px; }


/* ══════════════════════════════════════════════════════════
   18. FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.footer-logo img { width: 44px; height: 44px; object-fit: contain; }

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
}

.footer-brand span {
  display: block;
  font-size: 0.58rem;
  color: var(--mist);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
}

.footer-copy { font-size: 0.68rem; color: var(--mist); margin-top: 0.8rem; letter-spacing: 0.06em; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.7;
  transition: color var(--transition), opacity var(--transition);
}
.footer-links a:hover { color: var(--gold); opacity: 1; }


/* ══════════════════════════════════════════════════════════
   19. FLOATING WHATSAPP
   ══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
  animation: borderPulse 2.5s infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.12); }


/* ══════════════════════════════════════════════════════════
   20. FEATURED STORY
   ══════════════════════════════════════════════════════════ */
.featured-section {
  background: var(--navy-mid);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  position: relative;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.featured-label::before { content: '★'; font-size: 12px; }

.featured-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 16px;
}
.featured-left p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Video Card */
.video-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  aspect-ratio: 4/3;
  border: 1px solid var(--navy-border);
}

.video-card .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 15, 30, 0.28);
  cursor: pointer;
  transition: background 0.3s;
}
.video-card .play-btn:hover { background: rgba(8, 15, 30, 0.48); }

.play-circle {
  width: 64px; height: 64px;
  background: rgba(201, 168, 92, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 30px rgba(201, 168, 92, 0.5);
  transition: transform 0.2s;
}
.play-circle:hover          { transform: scale(1.08); }
.play-circle svg            { width: 22px; height: 22px; fill: var(--navy-deepest); margin-left: 3px; }

.video-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(8, 15, 30, 0.92));
  color: var(--text-white);
  padding: 36px 18px 18px;
}
.video-caption strong { font-size: 16px; display: block; font-family: 'Playfair Display', serif; }
.video-caption span   { font-size: 12px; opacity: 0.65; }

/* Mini Quotes */
.mini-quotes { display: flex; flex-direction: column; gap: 18px; }

.mini-quote {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 20px 22px;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.mini-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.mini-quote:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 168, 92, 0.4);
  transform: translateX(3px);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.mini-quote p {
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
}
.mini-quote p strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.mini-quote .attr { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.stars            { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }


/* ══════════════════════════════════════════════════════════
   21. VIDEO CAROUSEL
   ══════════════════════════════════════════════════════════ */
.carousel-section {
  padding: 90px 64px;
  background: var(--navy-deep);
  position: relative;
}

.carousel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.section-heading {
  text-align: center;
  margin-bottom: 16px;
}
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--text-white);
  font-weight: 700;
}
.section-heading p {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 10px;
  font-weight: 300;
}

.carousel-wrapper {
  position: relative;
  margin-top: 46px;
}

.carousel-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
  flex: 0 0 calc(20% - 18px);
  cursor: pointer;
}

.carousel-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  border: 1px solid var(--navy-border);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.carousel-thumb:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
  border-color: rgba(201, 168, 92, 0.4);
}

.carousel-thumb svg     { width: 100%; height: 100%; display: block; }

.carousel-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.carousel-thumb:hover .overlay { background: rgba(8, 15, 30, 0.45); }

.small-play {
  width: 42px; height: 42px;
  background: rgba(201, 168, 92, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(201, 168, 92, 0.4);
  transition: transform 0.2s;
}
.carousel-thumb:hover .small-play { transform: scale(1.1); }
.small-play svg { width: 14px; height: 14px; fill: var(--navy-deepest); margin-left: 2px; }

.duration-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(8, 15, 30, 0.82);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 92, 0.2);
}

.carousel-item-name { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--text-white); }
.carousel-item-role { font-size: 12px; color: var(--text-soft); margin-top: 4px; font-weight: 300; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  width: 44px; height: 44px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}
.carousel-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-65%) scale(1.08);
}
.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }
.carousel-btn svg  { width: 16px; height: 16px; stroke: var(--gold); }


/* ══════════════════════════════════════════════════════════
   22. WRITTEN REVIEWS
   ══════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--navy-base);
  padding: 90px 64px;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.review-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.review-card::after {
  content: '"';
  position: absolute;
  bottom: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 92, 0.35);
}
.review-card:hover::before { opacity: 1; }

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 92, 0.35);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--navy-mid);
}
.reviewer-avatar svg { width: 100%; height: 100%; }

.reviewer-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #5ec47a;
  font-weight: 500;
  margin-top: 3px;
}
.verified::before { content: '✓'; font-weight: 800; }

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-soft);
  font-weight: 300;
  font-style: italic;
}

.review-text strong {
  color: var(--gold-light);
  font-weight: 600;
  font-style: normal;
  background: rgba(201, 168, 92, 0.1);
  padding: 1px 5px;
  border-radius: 3px;
}

.read-all { text-align: center; margin-top: 48px; }

.read-all a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 92, 0.4);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.read-all a:hover { color: var(--gold-light); border-color: var(--gold-light); }


/* ══════════════════════════════════════════════════════════
   23. CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy-deepest);
  padding: 70px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 168, 92, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--text-white);
  font-weight: 700;
  position: relative;
}
.cta-text p {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
  font-weight: 300;
  position: relative;
}


/* ══════════════════════════════════════════════════════════
   24. FULL RESPONSIVE SYSTEM
   Breakpoints: 325px | 375px | 768px | 1024px | 1440px | 2560px
   ══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────
   ① 2560px — 4K / Large Displays (min-width: 1441px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 1441px) {
  html { font-size: 18px; }

  nav  { padding: 0 4rem; height: 80px; }
  nav.scrolled { height: 72px; }

  /* Hero — use clip so horizontal overflow is cut but vertical cards still show */
  .hero                 { padding: 80px 0 60px; overflow: hidden; }
  .hero-inner           { max-width: 1800px; padding: 0 100px; }
  .hero-columns         { gap: 100px; align-items: center; }
  .hero-right           { height: 720px; }

  /* Established card: use left:0 + transform so it overlaps left without causing scroll */
  .established-card     { left: 0; transform: translateX(-55%); top: 60px; min-width: 220px; padding: 24px 28px; }
  .est-year             { font-size: 50px; }

  /* Secondary image + award card */
  .img-secondary-wrapper { width: 48%; height: 46%; }
  .award-card           { right: -14px; min-width: 180px; padding: 18px 22px; }
  .award-title          { font-size: 26px; }

  .heading-white,
  .heading-gold         { font-size: clamp(72px, 5vw, 96px); }
  .hero-tagline         { font-size: 22px; }
  .hero-description     { font-size: 17px; max-width: 560px; }
  .stat-number          { font-size: 42px; }

  #heritage             { gap: 7rem; }
  .about-img-wrap img   { height: 600px; }
  .section-title        { font-size: clamp(2.4rem, 3vw, 3.8rem); }
  section               { padding: 9rem 6vw; }

  .featured-section     { padding: 100px 80px; gap: 72px; }
  .featured-left h2     { font-size: 42px; }
  .carousel-section,
  .reviews-section      { padding: 110px 80px; }
  .reviews-grid         { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .cta-banner           { padding: 90px 80px; }
  .cta-text h2          { font-size: 38px; }
  .photo-slide          { flex: 0 0 480px; height: 320px; }
  .testimonial-grid     { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .values-grid          { grid-template-columns: repeat(3, 1fr); }
  .vision-grid          { grid-template-columns: 1fr 1fr; }
  .logo-title           { font-size: 16px; }
  .logo-icon            { width: 52px; height: 52px; }
}


/* ─────────────────────────────────────────────────────────
   ② 1440px — Standard Desktop (1281px – 1440px)
   ───────────────────────────────────────────────────────── */
@media (min-width: 1281px) and (max-width: 1440px) {
  .hero                 { overflow: hidden; }
  .hero-inner           { padding: 0 60px; }
  .hero-columns         { gap: 60px; }
  .hero-right           { height: 560px; }

  /* established-card: sits inside hero-right, no negative left needed */
  .established-card     { left: 0; transform: translateX(-50%); top: 50px; min-width: 200px; }
  .est-year             { font-size: 42px; }
  .award-card           { right: -8px; }

  .heading-white,
  .heading-gold         { font-size: clamp(52px, 4.5vw, 78px); }

  .featured-section     { padding: 80px 56px; gap: 50px; }
  .carousel-section,
  .reviews-section      { padding: 90px 56px; }
  .cta-banner           { padding: 70px 56px; }
  section               { padding: 7rem 5vw; }
}


/* ─────────────────────────────────────────────────────────
   ③a 1025px – 1280px — Small Laptop / Large Tablet Landscape
   ───────────────────────────────────────────────────────── */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero                 { overflow: hidden; }
  .hero-inner           { padding: 0 48px; }
  .hero-columns         { gap: 48px; }
  .hero-right           { height: 500px; }

  /* established-card: transform overlap, no negative left */
  .established-card     { left: 0; transform: translateX(-45%); top: 44px; min-width: 180px; padding: 16px 20px; }
  .est-year             { font-size: 36px; }
  .est-label            { font-size: 8px; }
  .est-location         { font-size: 11px; }

  /* Secondary + award */
  .img-secondary-wrapper { width: 44%; height: 43%; }
  .award-card           { right: 0; min-width: 148px; padding: 14px 18px; }
  .award-title          { font-size: 19px; }
  .award-sub            { font-size: 10px; }

  .heading-white,
  .heading-gold         { font-size: clamp(42px, 4vw, 58px); }
  .hero-description     { font-size: 13.5px; }
  .stat-number          { font-size: 28px; }

  section               { padding: 6rem 4vw; }
  .featured-section     { padding: 60px 36px; gap: 36px; }
  .carousel-section,
  .reviews-section,
  .cta-banner           { padding: 64px 36px; }
}


/* ─────────────────────────────────────────────────────────
   ③b 1024px — Tablet Landscape (max-width: 1024px general)
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Nav */
  nav                   { padding: 0 2rem; }

  /* Hero — clip overflow to prevent horizontal scroll */
  .hero                 { overflow: hidden; }
  .hero-inner           { padding: 0 40px; }
  .hero-columns         { gap: 36px; align-items: center; }
  .hero-right           { height: 460px; }

  /* Established card: transform overlap stays inside hero clip boundary */
  .established-card     { left: 0; transform: translateX(-40%); top: 40px; min-width: 170px; padding: 14px 18px; }
  .est-year             { font-size: 34px; }
  .est-label            { font-size: 8px; }
  .est-location         { font-size: 11px; }

  /* Secondary image */
  .img-secondary-wrapper { width: 43%; height: 42%; }

  /* Award card: pull inward */
  .award-card           { right: 0; bottom: 0; min-width: 140px; padding: 12px 16px; }
  .award-title          { font-size: 18px; }
  .award-label          { font-size: 8px; }
  .award-sub            { font-size: 10px; }

  .heading-white,
  .heading-gold         { font-size: clamp(40px, 4.2vw, 58px); }
  .hero-tagline         { font-size: 16px; }
  .hero-description     { font-size: 13.5px; max-width: 420px; }
  .stat-number          { font-size: 26px; }
  .hero-actions         { gap: 18px; margin-bottom: 40px; }
  .scroll-indicator     { right: 16px; }

  /* Sections */
  section               { padding: 6rem 4vw; }
  #heritage             { gap: 3.5rem; }
  .about-img-wrap img   { height: 420px; }

  /* Featured + carousel + reviews */
  .featured-section     { padding: 60px 36px; gap: 36px; }
  .carousel-section,
  .reviews-section,
  .cta-banner           { padding: 64px 36px; }
  .reviews-grid         { grid-template-columns: repeat(3, 1fr); }

  /* Grids */
  .testimonial-grid     { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .vision-grid          { grid-template-columns: 1fr 1fr; }
  .quality-highlights   { grid-template-columns: 1fr 1fr; }
  .project-categories   { grid-template-columns: 1fr 1fr; }
  .carousel-item        { flex: 0 0 calc(25% - 17px); }

  /* Contact */
  #contact              { gap: 4rem; }
  #quality              { gap: 3.5rem; }
}


/* ─────────────────────────────────────────────────────────
   ④ 768px — Tablet Portrait
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Navigation ── */
  nav                   { padding: 0 18px; height: 64px; }
  nav.scrolled          { height: 58px; }
  .nav-links            { display: none; }
  .hamburger            { display: flex; }
  .mobile-menu          { top: 64px; }

  /* ── Hero: overflow hidden on hero, visible on inner ── */
  .hero                 { padding: 74px 0 48px; min-height: auto; overflow: hidden; }
  .hero-inner           { padding: 0 24px; }

  /* Single column: text on top, image below */
  .hero-columns         { grid-template-columns: 1fr; gap: 32px; }

  /* Left column: full width */
  .hero-left            { width: 100%; }

  .heading-white,
  .heading-gold         { font-size: clamp(38px, 8vw, 52px); word-break: break-word; }
  .hero-tagline         { font-size: 15px; margin-bottom: 14px; }
  .hero-description     { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .hero-badge           { margin-bottom: 22px; }
  .hero-divider         { margin-bottom: 20px; }

  /* Hero actions */
  .hero-actions         { flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

  /* Hero stats */
  .hero-stats           { flex-wrap: wrap; gap: 18px 28px; padding-top: 20px; }
  .stat-divider         { display: none; }
  .stat-number          { font-size: 24px; }
  .stat-label           { font-size: 10px; }
  .stat-item            { flex: 0 0 auto; min-width: 80px; }

  /* ── Hero right: reset absolute positioning, show as normal block ── */
  .hero-right           {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
  }

  /* Main image: fill the entire hero-right block */
  .img-main-wrapper     {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .img-main             {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Secondary image: repositioned bottom-left as a small inset */
  .img-secondary-wrapper {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42%;
    height: 42%;
    z-index: 2;
    border: 2px solid var(--navy);
  }
  .img-secondary        {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Established card: compact, top-left overlay */
  .established-card     {
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    min-width: auto;
    z-index: 3;
    background: rgba(11, 21, 40, 0.92);
    backdrop-filter: blur(8px);
  }
  .est-year             { font-size: 26px; margin-bottom: 2px; }
  .est-label            { font-size: 7px; letter-spacing: 0.2em; margin-bottom: 3px; }
  .est-location         { font-size: 10px; }

  /* Award card: compact, bottom-right overlay */
  .award-card           {
    display: block;
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
    min-width: auto;
    z-index: 4;
    background: rgba(11, 21, 40, 0.92);
    backdrop-filter: blur(8px);
  }
  .award-label          { font-size: 7px; letter-spacing: 0.2em; margin-bottom: 3px; }
  .award-title          { font-size: 16px; line-height: 1.1; }
  .award-sub            { font-size: 9px; }

  .scroll-indicator     { display: none; }

  /* ── Sections ── */
  section               { padding: 4rem 5vw; }

  /* Heritage */
  #heritage             { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img   { height: 300px; }
  .about-visual         { overflow: visible; }
  .est-badge            { width: 72px; height: 72px; top: -0.7rem; right: -0.7rem; }
  .est-badge .est-year  { font-size: 1.1rem; }
  .founder-card         { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1.2rem; margin-top: 1.5rem; }

  /* MD Message */
  #md-message           { grid-template-columns: 1fr; gap: 2.5rem; }
  .md-photo-wrap img    { height: 340px; }

  /* Vision / Values */
  .vision-grid          { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
  .values-grid          { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }

  /* Projects */
  #projects             { padding: 4rem 5vw; }
  .projects-header      { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .project-categories   { grid-template-columns: 1fr; gap: 1rem; }
  .site-photo img       { height: 240px; }

  /* Quality */
  #quality              { grid-template-columns: 1fr; gap: 2.5rem; }
  .quality-highlights   { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Testimonials */
  #clients              { padding: 4rem 5vw; }
  .testimonial-grid     { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Reviews */
  .reviews-section      { padding: 56px 24px; }
  .reviews-grid         { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .review-card          { padding: 24px 20px; }
  .review-text strong   { background: none; padding: 0; font-weight: 600; font-style: normal; }
  .reviewer-avatar      { width: 44px; height: 44px; }

  /* Contact */
  #contact              { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row             { grid-template-columns: 1fr; }

  /* Stats bar */
  .stats-bar,
  .hero-stats-bar       { display: flex; flex-wrap: wrap; justify-content: center; overflow: hidden; }
  .stat-block,
  .stats-bar .stat-item { flex: 0 0 50%; max-width: 50%; border-right: none !important; padding: 20px 12px; text-align: center; box-sizing: border-box; }
  .stat-block .stat-num,
  .stats-bar .stat-num  { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Featured */
  .featured-section     { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }

  /* Carousel */
  .carousel-section     { padding: 50px 20px; }
  .carousel-item        { flex: 0 0 calc(33.33% - 15px); }
  .carousel-btn.prev    { left: -14px; }
  .carousel-btn.next    { right: -14px; }

  /* Reviews */
  .reviews-section      { padding: 50px 20px; }
  .reviews-grid         { grid-template-columns: 1fr; gap: 16px; }
  .review-card          { padding: 22px 18px; }
  .review-text strong   { background: none; padding: 0; }
  .reviewer-avatar      { width: 44px; height: 44px; }

  /* CTA */
  .cta-banner           { flex-direction: column; text-align: center; padding: 50px 24px; gap: 24px; }

  /* Photo gallery */
  .photo-track          { padding: 10px 20px 16px; }
  .photo-slide          { flex: 0 0 280px; height: 200px; }
  .photo-fade           { width: 40px; }

  /* Hero banner (testimonials page) */
  .hero-banner          { padding: 70px 20px 60px; }

  /* Section title */
  .section-title        { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Footer */
  .footer-links         { gap: 1.2rem; }
}


/* ─────────────────────────────────────────────────────────
   ⑤ 375px — Standard Mobile (iPhone SE / most Androids)
   ───────────────────────────────────────────────────────── */
@media (max-width: 375px) {

  /* Nav */
  nav                   { padding: 0 14px; height: 60px; }
  .mobile-menu          { top: 60px; }
  .logo-title           { font-size: 12px; letter-spacing: 0.12em; }
  .logo-icon            { width: 36px; height: 36px; }

  /* Hero */
  .hero                 { padding: 70px 0 40px; }
  .hero-inner           { padding: 0 16px; }
  .hero-columns         { gap: 28px; }
  .heading-white,
  .heading-gold         { font-size: clamp(30px, 9.5vw, 40px); }
  .hero-tagline         { font-size: 13px; margin-bottom: 14px; }
  .hero-description     { font-size: 13px; line-height: 1.7; margin-bottom: 22px; }
  .hero-badge           { margin-bottom: 20px; }
  .badge-text           { font-size: 10px; letter-spacing: 0.2em; }

  /* Hero actions */
  .hero-actions         { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
  .btn-primary,
  .btn-gold             { padding: 12px 22px; font-size: 11px; width: 100%; justify-content: center; }
  .btn-video            { font-size: 12px; }

  /* Hero stats: 2-column grid */
  .hero-stats           { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 16px; }
  .stat-item            { min-width: unset; }
  .stat-number          { font-size: 22px; }
  .stat-label           { font-size: 9px; }

  /* Hero image */
  .hero-right           { height: 230px; }
  .img-main-wrapper     { height: 100%; }
  .img-main             { height: 100%; }
  .est-year             { font-size: 22px; }
  .award-title          { font-size: 14px; }

  /* Sections */
  section               { padding: 3.5rem 4.5vw; }

  /* Heritage */
  .about-img-wrap img   { height: 240px; }
  .about-text p         { font-size: 0.85rem; }
  .founder-name         { font-size: 0.9rem; }
  .founder-story        { font-size: 0.78rem; }
  .caption-name         { font-size: 0.95rem; }

  /* Vision / Values */
  .vision-card          { padding: 1.4rem; }
  .values-grid          { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .value-item           { padding: 1.1rem; }
  .value-num            { font-size: 1.2rem; }
  .value-name           { font-size: 0.72rem; }
  .value-desc           { font-size: 0.68rem; }

  /* Quality */
  .q-highlight          { padding: 1.2rem; }
  .q-num                { font-size: 1.6rem; }
  .q-label              { font-size: 0.65rem; }

  /* Stats bar */
  .stat-block,
  .stats-bar .stat-item { flex: 0 0 50%; max-width: 50%; padding: 16px 8px; }
  .stat-block .stat-num,
  .stats-bar .stat-num  { font-size: clamp(1.5rem, 7.5vw, 2rem); }

  /* Testimonials */
  .testimonial-grid     { grid-template-columns: 1fr; }
  .testimonial          { padding: 1.4rem; }
  .t-text               { font-size: 0.88rem; }

  /* Reviews */
  .reviews-section      { padding: 40px 16px; }
  .reviews-grid         { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .review-card          { padding: 18px 16px; }
  .reviewer-avatar      { width: 40px; height: 40px; }
  .reviewer-info strong { font-size: 12.5px; }
  .review-stars         { font-size: 13px; margin-bottom: 10px; }
  .review-text          { font-size: 13px; line-height: 1.7; }
  .review-text strong   { background: none; padding: 0; font-weight: 600; }
  .reviewer-row         { gap: 10px; margin-bottom: 14px; }
  .verified             { font-size: 10px; }

  /* Carousel */
  .carousel-item        { flex: 0 0 calc(50% - 11px); }
  .section-heading h2   { font-size: 26px; }

  /* Contact */
  .wa-button            { padding: 0.85rem 1.4rem; font-size: 0.8rem; }
  .c-val                { font-size: 0.8rem; }

  /* CTA Banner */
  .cta-text h2          { font-size: 22px; }
  .btn-cta              { padding: 13px 24px; font-size: 12px; width: 100%; justify-content: center; }

  /* Photo gallery */
  .photo-slide          { flex: 0 0 240px; height: 170px; }

  /* Footer */
  .footer-links         { gap: 0.8rem; flex-direction: column; align-items: center; }
  .footer-brand         { font-size: 0.85rem; }
  .footer-copy          { font-size: 0.62rem; }

  /* Section title */
  .section-title        { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .section-eyebrow      { font-size: 0.58rem; letter-spacing: 0.28em; }

  /* WhatsApp float */
  .wa-float             { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
}


/* ─────────────────────────────────────────────────────────
   ⑥ 325px — Very Small / Narrow Phones (Galaxy Fold, etc.)
   ───────────────────────────────────────────────────────── */
@media (max-width: 325px) {

  html                  { font-size: 14px; }

  /* Nav */
  nav                   { padding: 0 10px; height: 56px; }
  .mobile-menu          { top: 56px; }
  .logo-title           { font-size: 10px; letter-spacing: 0.1em; }
  .logo-sub             { display: none; }
  .logo-icon            { width: 30px; height: 30px; }

  /* Hero */
  .hero                 { padding: 66px 0 36px; }
  .hero-inner           { padding: 0 12px; }
  .hero-columns         { gap: 24px; }
  .heading-white,
  .heading-gold         { font-size: clamp(24px, 9vw, 32px); letter-spacing: -0.01em; }
  .hero-tagline         { font-size: 12px; margin-bottom: 12px; }
  .hero-description     { font-size: 12px; line-height: 1.65; margin-bottom: 18px; }
  .hero-badge           { margin-bottom: 16px; }
  .badge-line           { width: 30px; }
  .badge-text           { font-size: 9px; letter-spacing: 0.16em; }
  .hero-divider         { width: 40px; margin-bottom: 16px; }

  /* Hero actions */
  .hero-actions         { flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .btn-primary,
  .btn-gold,
  .btn-cta              { padding: 10px 16px; font-size: 10px; width: 100%; justify-content: center; }
  .btn-video            { font-size: 11px; }
  .play-icon svg        { width: 32px; height: 32px; }

  /* Hero stats */
  .hero-stats           { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 14px; }
  .stat-number          { font-size: 18px; }
  .stat-label           { font-size: 8px; letter-spacing: 0.04em; }

  /* Hero image */
  .hero-right           { height: 190px; }
  .img-main-wrapper     { height: 100%; }
  .img-main             { height: 100%; }
  .established-card     { padding: 8px 10px; top: 8px; left: 8px; }
  .est-year             { font-size: 20px; }
  .award-card           { padding: 8px 10px; bottom: 8px; right: 8px; }
  .award-title          { font-size: 13px; }
  .img-secondary-wrapper { width: 38%; height: 38%; }

  /* Sections */
  section               { padding: 3rem 4vw; }

  /* Heritage */
  .about-img-wrap img   { height: 200px; }
  .founder-card         { padding: 1rem; gap: 0.6rem; }
  .founder-icon         { font-size: 1.6rem; }
  .founder-name         { font-size: 0.82rem; }
  .founder-story        { font-size: 0.72rem; }
  .about-text p         { font-size: 0.78rem; }

  /* Est badge */
  .est-badge            { width: 58px; height: 58px; top: -0.5rem; right: -0.4rem; }
  .est-badge .est-year  { font-size: 0.9rem; }
  .est-text             { font-size: 0.4rem; }

  /* Section title / eyebrow */
  .section-title        { font-size: clamp(1.2rem, 7.5vw, 1.6rem); }
  .section-eyebrow      { font-size: 0.52rem; letter-spacing: 0.22em; gap: 0.5rem; }
  .section-eyebrow::before,
  .section-eyebrow::after { flex: 0 0 18px; }

  /* Vision / Values */
  .vision-grid          { grid-template-columns: 1fr; gap: 1rem; }
  .vision-card          { padding: 1.1rem; }
  .vision-card p        { font-size: 0.78rem; }
  .values-grid          { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .value-item           { padding: 0.9rem 0.7rem; }
  .value-num            { font-size: 1.1rem; }
  .value-name           { font-size: 0.66rem; }
  .value-desc           { font-size: 0.62rem; }

  /* Projects */
  .pt-name              { font-size: 0.9rem; }
  .pt-desc              { font-size: 0.76rem; }
  .site-photo img       { height: 180px; }

  /* Quality */
  .quality-highlights   { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .q-highlight          { padding: 1rem 0.8rem; }
  .q-num                { font-size: 1.4rem; }
  .q-label              { font-size: 0.6rem; }

  /* Stats bar */
  .stat-block,
  .stats-bar .stat-item { flex: 0 0 50%; max-width: 50%; padding: 14px 6px; }
  .stat-block .stat-num,
  .stats-bar .stat-num  { font-size: clamp(1.3rem, 7vw, 1.7rem); }

  /* Testimonials */
  .testimonial-grid     { grid-template-columns: 1fr; gap: 0.8rem; }
  .testimonial          { padding: 1.1rem; }
  .t-text               { font-size: 0.82rem; }
  .t-name               { font-size: 0.7rem; }

  /* Reviews */
  .reviews-grid         { grid-template-columns: 1fr; gap: 12px; }
  .review-card          { padding: 14px 12px; }
  .review-text          { font-size: 12px; }
  .reviewer-info strong { font-size: 12px; }
  .reviewer-avatar      { width: 36px; height: 36px; }
  .review-text strong   { background: none; padding: 0; }

  /* Carousel */
  .carousel-item        { flex: 0 0 calc(50% - 11px); }
  .carousel-section     { padding: 40px 14px; }
  .section-heading h2   { font-size: 22px; }
  .section-heading p    { font-size: 12px; }
  .carousel-btn         { width: 34px; height: 34px; }
  .carousel-btn.prev    { left: -8px; }
  .carousel-btn.next    { right: -8px; }

  /* Featured */
  .featured-section     { padding: 36px 14px; }
  .featured-left h2     { font-size: 22px; }
  .featured-left p      { font-size: 12px; }

  /* Contact */
  #contact              { padding: 3rem 4vw; }
  .c-item               { padding: 0.8rem 1rem; gap: 0.7rem; }
  .c-val                { font-size: 0.75rem; }
  .wa-button            { padding: 0.75rem 1.1rem; font-size: 0.75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea  { font-size: 0.8rem; padding: 0.65rem 0.85rem; }
  .btn-submit           { font-size: 0.75rem; }

  /* CTA Banner */
  .cta-banner           { padding: 40px 14px; }
  .cta-text h2          { font-size: 19px; }
  .cta-text p           { font-size: 12px; }

  /* Photo gallery */
  .photo-slide          { flex: 0 0 200px; height: 148px; }
  .photo-gallery-heading { font-size: 1.4rem; }

  /* Hero banner (testimonials page) */
  .hero-banner          { padding: 60px 14px 48px; }
  .hero-banner h1       { font-size: clamp(32px, 9vw, 48px); }
  .hero-subtitle        { font-size: 12px; }

  /* Nav mobile menu padding */
  .mobile-menu a        { padding: 12px 0; font-size: 11px; }

  /* Footer */
  footer                { padding: 2.4rem 4vw 1.5rem; }
  .footer-logo          { gap: 0.6rem; margin-bottom: 1rem; }
  .footer-brand         { font-size: 0.78rem; }
  .footer-copy          { font-size: 0.58rem; }
  .footer-links         { flex-direction: column; align-items: center; gap: 0.6rem; }
  .footer-links a       { font-size: 0.6rem; }

  /* WhatsApp float */
  .wa-float             { bottom: 1rem; right: 1rem; width: 46px; height: 46px; }
}
@charset "UTF-8";
