/* ============================================================
   NANDIYAM PRIVATE LIMITED — ELITE MATCHMAKING
   Design System: Luxury Dark Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

:root {
  /* Core Palette */
  --ink:        #0a0e0a;
  --ink-alt:    #111711;
  --surface:    #141a14;
  --surface-2:  #1c241c;
  --surface-3:  #232d23;
  --border:     rgba(201,168,76,0.15);
  --border-2:   rgba(201,168,76,0.30);

  /* Gold Spectrum */
  --gold:       #c9a84c;
  --gold-light: #e4c97a;
  --gold-dim:   #8b7235;
  --gold-glow:  rgba(201,168,76,0.12);

  /* Text */
  --text-primary:   #f5f0e8;
  --text-secondary: #b8b0a0;
  --text-muted:     #7a7268;
  --text-gold:      #c9a84c;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-heading: 'Cinzel', 'Times New Roman', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--ink);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Grain Overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(3.2rem, 8vw, 7rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.eyebrow::before { width: 32px; }
.eyebrow::after  { width: 16px; }

em, .accent {
  font-style: italic;
  color: var(--gold);
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 20px;
}

/* ── Gold Divider ───────────────────────────────────────── */
.gold-divider {
  display: flex; align-items: center;
  gap: 16px; margin: 20px 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.3;
}
.gold-divider span {
  color: var(--gold); font-size: 0.9rem;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out),
              border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,14,10,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  border-color: var(--border);
  padding-top: 0; padding-bottom: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  max-width: var(--container); margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
}
.nav-logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-heading);
  font-size: 1rem; letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
}
.nav-logo-text span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
  font-family: var(--font-heading);
  font-weight: 400;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-size: 0.72rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--text-secondary);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-hamburger span:last-child { width: 60%; }
.nav-hamburger:hover span { background: var(--gold); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,14,10,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 30px; right: clamp(20px,5vw,60px);
  font-size: 1.8rem; color: var(--text-muted);
  cursor: pointer; transition: color 0.3s;
}
.nav-mobile-close:hover { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  border-radius: 2px;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold::before {
  content: ''; position: absolute;
  top: 0; left: -100%; right: 100%; bottom: 0;
  background: rgba(255,255,255,0.12);
  transition: left 0.4s var(--ease-out), right 0.4s var(--ease-out);
}
.btn-gold:hover::before { left: 0; right: 0; }
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Geometric background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 30%, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e0a 0%, #0d130d 60%, #0a0e0a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.04) 60px);
}
.hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50%       { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 380px; gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  background: rgba(201,168,76,0.06);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title .line-italic {
  font-style: italic; color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.2rem; color: var(--text-secondary);
  line-height: 1.9; max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  margin-top: 64px;
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: uppercase;
  font-family: var(--font-heading);
}
.hero-scroll-line {
  width: 48px; height: 1px;
  background: var(--gold); opacity: 0.4;
}

/* Hero stats card */
.hero-stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 32px;
  position: relative;
  overflow: hidden;
}
.hero-stats-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--text-muted); text-transform: uppercase;
  font-family: var(--font-heading);
}
.hero-stat-divider {
  width: 100%; height: 1px;
  background: var(--border);
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 28px;
  font-family: var(--font-heading);
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: uppercase;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Feature Cards ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover { background: var(--surface-2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 2rem; margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-size: 1.25rem; margin-bottom: 12px;
  font-weight: 400;
}
.feature-card p {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.8;
}
.feature-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  transition: color 0.3s;
}
.feature-card:hover .feature-num { color: rgba(201,168,76,0.1); }

/* ── About / Story Section ───────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-visual {
  position: relative;
}
.story-visual-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.story-visual-inner {
  text-align: center; padding: 40px;
}
.story-visual-inner .big-num {
  font-family: var(--font-display);
  font-size: 7rem; font-weight: 300;
  color: var(--gold); opacity: 0.15;
  line-height: 1;
}
.story-visual-inner .label {
  font-family: var(--font-heading);
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase;
}
.story-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 28px;
  text-align: center;
  border-radius: 4px;
}
.story-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
}
.story-badge span {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-family: var(--font-heading);
}

.story-content { padding-left: 20px; }
.story-content h2 { margin-bottom: 28px; }
.story-content p {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 20px;
}
.story-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.story-pillar {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.story-pillar:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.story-pillar-icon { font-size: 1.4rem; margin-bottom: 8px; }
.story-pillar h4 {
  font-size: 0.85rem; font-family: var(--font-heading);
  letter-spacing: 0.08em; font-weight: 400;
  color: var(--text-primary); margin-bottom: 4px;
}
.story-pillar p {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.5; margin: 0;
}

/* ── Process Steps ───────────────────────────────────────── */
.process-wrap {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; position: relative;
}
.process-wrap::before {
  content: '';
  position: absolute;
  top: 52px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--gold) 20%,
    var(--gold) 80%, transparent 100%);
  opacity: 0.2; z-index: 0;
}
.process-step {
  text-align: center; padding: 40px 24px;
  background: var(--surface);
  position: relative; z-index: 1;
  transition: background 0.3s;
}
.process-step:hover { background: var(--surface-2); }
.process-num {
  width: 64px; height: 64px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 300;
  color: var(--gold);
  background: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .process-num {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 1rem; color: var(--text-secondary); }
.process-icon { font-size: 1.5rem; margin-bottom: 12px; }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 48px 40px;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::after { opacity: 1; }
.service-card.featured {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
}
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-2);
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 20px; border-radius: 2px;
}
.service-icon { font-size: 2.5rem; margin-bottom: 22px; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.service-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; }
.service-features {
  margin-top: 24px; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.service-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.service-features li::before {
  content: '◆'; color: var(--gold); font-size: 0.4rem; flex-shrink: 0;
}

/* ── Team ────────────────────────────────────────────────── */
.team-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.3s;
}
.founder-card:hover { border-color: var(--gold); }
.founder-avatar-wrap {
  height: 280px;
  background: var(--surface-2);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.founder-avatar-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
}
.founder-avatar-initials {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 300;
  color: var(--gold); opacity: 0.4;
  letter-spacing: 0.1em;
}
.founder-avatar-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.founder-info { padding: 32px; }
.founder-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.founder-title {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
  font-family: var(--font-heading); margin-bottom: 16px;
}
.founder-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.founder-tag {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem; color: var(--text-muted);
  font-family: var(--font-heading); letter-spacing: 0.1em;
  transition: border-color 0.3s, color 0.3s;
}
.founder-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.testi-stars {
  color: var(--gold); font-size: 0.85rem;
  letter-spacing: 3px; margin-bottom: 20px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 300;
  font-style: italic; line-height: 1.75;
  color: var(--text-primary); margin-bottom: 24px;
}
.testi-quote::before { content: '\201C'; color: var(--gold); font-size: 1.6rem; }
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--gold-glow);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.testi-name { font-size: 1rem; font-weight: 500; }
.testi-loc { font-size: 0.82rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 { margin-bottom: 20px; font-size: clamp(2rem,4vw,3.5rem); }
.cta-section p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-trust {
  display: flex; justify-content: center; align-items: center;
  gap: 28px; margin-top: 40px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  font-family: var(--font-heading); letter-spacing: 0.1em;
}
.cta-trust-item::before { content: '✓'; color: var(--gold); }

/* ── Contact Form ────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 40px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
}
.contact-detail h4 {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 4px; font-weight: 400;
}
.contact-detail p { color: var(--text-secondary); font-size: 1rem; margin: 0; }
.contact-detail a { color: var(--text-secondary); transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 44px;
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-select option { background: var(--surface); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; padding: 16px; font-size: 0.78rem; }
.form-privacy {
  text-align: center; margin-top: 14px;
  font-size: 0.72rem; color: var(--text-muted);
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--ink) 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.03) 40px);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 20px;
  font-size: 0.72rem; color: var(--text-muted);
  font-family: var(--font-heading); letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: var(--border-2); }

/* ── Stats Band ──────────────────────────────────────────── */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-band-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.82rem; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: uppercase;
  font-family: var(--font-heading);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
}
.footer-brand p {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.85; margin: 16px 0 24px;
  max-width: 300px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: grid; place-items: center; font-size: 1.1rem;
}
.footer-logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem; letter-spacing: 0.08em; color: var(--gold);
}
.footer-logo-text span {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: uppercase;
}
.footer-social {
  display: flex; gap: 12px; margin-top: 8px;
}
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem; color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
  font-weight: 400; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.98rem; color: var(--text-secondary);
  transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a::before { content: '→'; font-size: 0.78rem; opacity: 0.4; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--text-muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── Floating CTA bar ────────────────────────────────────── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-cta-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.78rem; font-family: var(--font-heading);
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-cta-btn:hover { transform: translateY(-3px); }
.float-wa {
  background: #25d366; color: #fff;
}
.float-call {
  background: var(--gold); color: var(--ink);
}

/* ── Scroll Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Media Sections ──────────────────────────────────────── */
.yt-channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  display: flex; align-items: center; gap: 32px;
  margin-bottom: 48px;
  transition: border-color 0.3s;
}
.yt-channel-card:hover { border-color: var(--border-2); }
.yt-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(255,0,0,0.12);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem;
  border: 1px solid rgba(255,0,0,0.2);
}
.yt-info h3 { font-size: 1.4rem; margin-bottom: 6px; }
.yt-info p { font-size: 0.9rem; color: var(--text-secondary); }
.yt-actions { margin-left: auto; display: flex; gap: 12px; flex-shrink: 0; }

.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.video-thumb {
  height: 160px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.video-thumb-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  transition: background 0.3s, transform 0.3s;
}
.video-card:hover .video-thumb-icon {
  background: rgba(201,168,76,0.25);
  transform: scale(1.1);
}
.video-thumb-overlay {
  position: absolute; bottom: 10px; right: 10px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.7);
  font-size: 0.7rem; color: var(--text-secondary);
  border-radius: 3px;
}
.video-info { padding: 20px; }
.video-tag {
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase;
  font-family: var(--font-heading); margin-bottom: 8px;
}
.video-info h4 { font-size: 0.95rem; line-height: 1.4; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats-card { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .story-content { padding-left: 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-founders { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .process-wrap::before { display: none; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .story-pillars { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .yt-channel-card { flex-direction: column; text-align: center; }
  .yt-actions { margin: 0; justify-content: center; }
}
