/* ═══════════════════════════════════════════════════════════════
   SHARMA FILMS — Main Stylesheet
   Design: Luxury Cinematic | Gold × Ivory × Deep Burgundy × Black
   Fonts: Cormorant Garamond (display) + DM Sans (body) + Great Vibes (script)
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #9A7A2E;
  --ivory:         #F5F0E8;
  --ivory-muted:   #C8C0B0;
  --dark-film:     #0E0C0A;
  --dark-card:     #1A1612;
  --dark-border:   #2E2820;
  --burgundy:      #6B1A2C;
  --rose-soft:     #F2D7DC;
  --cream:         #FAF6F0;
  --text-dark:     #1C1810;
  --text-muted:    #6B6358;
  --whatsapp:      #25D366;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-script:   'Great Vibes', cursive;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --shadow-soft:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-glow:   0 0 40px rgba(201,168,76,0.20);
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

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

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; transition: var(--transition); }

/* ── Utility Colours ───────────────────────────────────────── */
.text-gold        { color: var(--gold) !important; }
.text-ivory       { color: var(--ivory) !important; }
.text-ivory-muted { color: var(--ivory-muted) !important; }
.bg-dark-film     { background: var(--dark-film); }
.bg-light-cream   { background: var(--cream); }

/* ── Section Spacing ────────────────────────────────────────── */
.section-pad { padding: 96px 0; }

@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* ── Section Headers ────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: var(--transition);
}
.btn-gold:hover, .btn-gold:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  color: #fff;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-ivory {
  border: 2px solid rgba(245,240,232,0.7);
  color: var(--ivory);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-ivory:hover {
  background: var(--ivory);
  color: var(--text-dark);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background-color: #1ebe5d; /* Slightly darker green */
   box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
   transform: scale(1.03); /* Slight zoom */
  color: #fff;
}

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.sf-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}
.sf-navbar.scrolled {
  background: rgba(14,12,10,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.sf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory) !important;
}
.brand-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sf-nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.8) !important;
  padding: 8px 12px !important;
  transition: var(--transition);
  position: relative;
}
.sf-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.sf-nav-link:hover::after,
.sf-nav-link.active::after { left: 12px; right: 12px; }
.sf-nav-link:hover, .sf-nav-link.active { color: var(--ivory) !important; }

/* Hamburger */
.sf-toggler {
  border: none;
  background: transparent;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0E0C0A 0%, #1A1612 40%, #2E1A0E 70%, #0E0C0A 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.28;
  filter: saturate(0.6);
}

/* Bokeh */
.bokeh-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bokeh {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.6) 0%, transparent 70%);
  animation: bokehFloat linear infinite;
}
.bokeh-1  { width:80px; height:80px;  top:10%;  left:5%;  animation-duration:18s; animation-delay:-2s; }
.bokeh-2  { width:50px; height:50px;  top:25%;  left:15%; animation-duration:22s; animation-delay:-5s; opacity:.6; }
.bokeh-3  { width:120px;height:120px; top:60%;  left:8%;  animation-duration:25s; animation-delay:-8s; opacity:.4; }
.bokeh-4  { width:60px; height:60px;  top:80%;  left:20%; animation-duration:19s; animation-delay:-1s; }
.bokeh-5  { width:90px; height:90px;  top:15%;  left:70%; animation-duration:21s; animation-delay:-6s; opacity:.7; }
.bokeh-6  { width:40px; height:40px;  top:40%;  left:80%; animation-duration:17s; animation-delay:-3s; }
.bokeh-7  { width:100px;height:100px; top:70%;  left:88%; animation-duration:24s; animation-delay:-9s; opacity:.5; }
.bokeh-8  { width:70px; height:70px;  top:85%;  left:60%; animation-duration:20s; animation-delay:-4s; }
.bokeh-9  { width:55px; height:55px;  top:5%;   left:45%; animation-duration:16s; animation-delay:-7s; opacity:.8; }
.bokeh-10 { width:85px; height:85px;  top:50%;  left:50%; animation-duration:23s; animation-delay:-2s; opacity:.3; }
.bokeh-11 { width:45px; height:45px;  top:35%;  left:35%; animation-duration:18s; animation-delay:-5s; }
.bokeh-12 { width:65px; height:65px;  top:92%;  left:40%; animation-duration:26s; animation-delay:-1s; opacity:.5; }

@keyframes bokehFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

.hero-content { padding-top: 100px; padding-bottom: 60px; position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 20px;
}
.hero-headline em {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--gold);
  display: block;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ivory-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { margin-bottom: 48px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── MARQUEE ────────────────────────────────────────────────────── */
.marquee-bar { background: var(--gold); padding: 0.75rem 0; overflow: hidden; }
.marquee-track {
  display: inline-flex; gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); padding: 0 2rem; }
.marquee-track .m-dot { color: rgba(13,11,9,0.35); padding: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════ */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  transition: var(--transition);
}
.service-card--gold .service-icon-wrap { background: rgba(201,168,76,0.12); color: var(--gold); }
.service-card--rose .service-icon-wrap { background: rgba(210,100,120,0.12); color: #D06478; }
.service-card--amber .service-icon-wrap { background: rgba(240,160,60,0.12); color: #F0A03C; }
.service-card--teal .service-icon-wrap { background: rgba(50,150,140,0.12); color: #32968C; }

.service-card:hover .service-icon-wrap { transform: scale(1.12) rotate(5deg); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-link:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.about-img-stack {
  position: relative;
  padding-bottom: 40px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img { border-radius: var(--radius-lg); object-fit: cover; width: 100%; height: 420px; }
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -20px;
  /* width: 200px; */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid #fff;
}
.about-img-accent img { height: 140px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.badge-year { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1; }
.badge-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-features { display: flex; flex-direction: column; gap: 8px; }
.about-feat { font-size: 0.9rem; color: var(--ivory-muted); display: flex; align-items: center; }

/* Script quote */
.script-quote {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1.4;
  margin: 16px 0;
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO GRID
═══════════════════════════════════════════════════════════════ */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }

.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; }

.portfolio-img-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; }

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  /* Placeholder gradient while real images load */
  background: linear-gradient(135deg, #2E2820 0%, #1A1612 50%, #3E2E1A 100%);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.9) 0%, rgba(14,12,10,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info {
  align-self: flex-start;
  margin-top: auto;
}
.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 2px;
}
.portfolio-info p { font-size: 0.75rem; color: var(--gold); margin: 0; }

.lightbox-trigger {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  align-self: flex-start;
  transition: var(--transition);
}
.lightbox-trigger:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: url('/assets/images/cta-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,26,44,0.92) 0%, rgba(14,12,10,0.88) 100%);
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ivory);
  line-height: 1.2;
}
.cta-sub { color: var(--ivory-muted); font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.12);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testimonial-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-event { font-size: 0.75rem; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 360px;
  background: linear-gradient(135deg, #0E0C0A 0%, #2E1A0E 50%, #1A0E18 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,12,10,0.7), rgba(14,12,10,0.5));
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 20px;
}
.breadcrumb { --bs-breadcrumb-divider-color: rgba(201,168,76,0.5); }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: var(--ivory-muted); }

/* ═══════════════════════════════════════════════════════════════
   TIMELINE (About page)
═══════════════════════════════════════════════════════════════ */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  padding: 24px 0;
  width: 50%;
}
.timeline-item.left  { padding-right: 48px; text-align: right; }
.timeline-item.right { padding-left: 48px;  margin-left: 50%; }
.timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  top: 32px;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.timeline-item.left  .timeline-dot { right: -7px; }
.timeline-item.right .timeline-dot { left: -7px; }
.timeline-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,168,76,0.15);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline-title { font-size: 1.05rem; font-weight: 600; margin: 4px 0 8px; color: var(--text-dark); }
.timeline-desc  { font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 640px) {
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item.left, .timeline-item.right {
    width: 100%; padding-left: 56px; padding-right: 0;
    margin-left: 0; text-align: left;
  }
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot { left: 13px; right: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   WHY CARDS (About page)
═══════════════════════════════════════════════════════════════ */
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.why-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.why-title { font-size: 1.1rem; margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════════════
   SERVICE DETAIL (Services page)
═══════════════════════════════════════════════════════════════ */
.service-detail-img { position: relative; }
.service-detail-img img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); }
.service-detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-detail-badge.gold  { background: var(--gold); color: #fff; }
.service-detail-badge.rose  { background: #D06478; color: #fff; }
.service-detail-badge.amber { background: #F0A03C; color: #fff; }

.service-detail-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.service-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }

.service-price-hint { display: flex; align-items: baseline; gap: 8px; }
.price-from  { font-size: 0.8rem; color: var(--text-muted); }
.price-amt   { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.price-note  { font-size: 0.8rem; color: var(--text-muted); }

.section-divider {
  text-align: center;
  padding: 8px 0;
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.divider-gem {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 16px;
  color: var(--gold);
  font-size: 0.8rem;
}
.bg-light-cream .divider-gem { background: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   PACKAGES (Services page)
═══════════════════════════════════════════════════════════════ */
.package-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-6px); }
.package-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--dark-card), #2A1E0E);
  box-shadow: var(--shadow-glow);
}
.package-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.package-price span { font-size: 0.9rem; font-weight: 400; color: var(--ivory-muted); }
.package-features { list-style: none; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.package-features li { font-size: 0.9rem; color: var(--ivory-muted); display: flex; gap: 10px; align-items: center; }
.package-features .bi { color: var(--gold); flex-shrink: 0; }
.package-note { font-size: 0.78rem; color: var(--gold); font-style: italic; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════════
   VIDEO THUMB (Portfolio)
═══════════════════════════════════════════════════════════════ */
.video-thumb-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-card);
}
.video-thumb-card img { width: 100%; height: 220px; object-fit: cover; filter: brightness(0.7); transition: var(--transition); }
.video-thumb-card:hover img { filter: brightness(0.5); transform: scale(1.04); }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.video-play-btn:hover { color: var(--gold); transform: translate(-50%,-50%) scale(1.15); }
.video-title {
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ivory-muted);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-info-block {
  position: sticky;
  top: 100px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-info-val { font-weight: 500; color: var(--text-dark); font-size: 0.95rem; }
a.contact-info-val:hover { color: var(--gold); }

.contact-trust { display: flex; flex-direction: column; gap: 8px; }
.trust-tag { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.12);
}
@media (max-width: 576px) { .contact-form-card { padding: 28px 20px; } }

.form-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Form inputs */
.sf-input {
  border: 1.5px solid #E8E4DC;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}
.sf-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: #fff;
  outline: none;
}
.input-group .input-group-text { background: var(--cream); border-color: #E8E4DC; color: var(--text-muted); }
.input-group .sf-input { border-left: none; }

.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Success state */
.form-success-state {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid rgba(201,168,76,0.2);
}
.map-container iframe { display: block; }

/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.spin { display: inline-block; animation: spin 0.8s linear infinite; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.sf-footer {
  background: var(--dark-film);
  border-top: 1px solid var(--dark-border);
}
.footer-top { padding: 72px 0 48px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
}
.footer-desc { font-size: 0.88rem; color: var(--ivory-muted); line-height: 1.8; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--ivory-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.footer-contact-item a { color: var(--ivory-muted); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span { color: var(--ivory-muted); }
.footer-contact-item i { font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.78rem; color: var(--ivory-muted); }
.footer-craft { font-size: 0.78rem; color: var(--ivory-muted); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .about-img-accent { display: none; }
  .cta-banner { background-attachment: scroll; }
}
@media (max-width: 768px) {
  .hero-trust { gap: 16px; }
  .trust-num { font-size: 1.4rem; }
  .service-detail-img img { height: 280px; }
  .package-card { margin-bottom: 0; }
}
@media (max-width: 480px) {
  .portfolio-grid { gap: 6px; }
  .hero-ctas .btn { width: 100%; margin-right: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   PLACEHOLDER IMAGES (CSS-only fallback while real photos load)
═══════════════════════════════════════════════════════════════ */
.portfolio-img[src*="p1.jpg"]  { background: linear-gradient(135deg, #2C1810, #5C3020); }
.portfolio-img[src*="p2.jpg"]  { background: linear-gradient(135deg, #0A1628, #1E3050); }
.portfolio-img[src*="p3.jpg"]  { background: linear-gradient(135deg, #1A1628, #3A1050); }
.portfolio-img[src*="p4.jpg"]  { background: linear-gradient(135deg, #28100A, #5A2810); }
.portfolio-img[src*="p5.jpg"]  { background: linear-gradient(135deg, #0A2010, #1A5028); }
.portfolio-img[src*="p6.jpg"]  { background: linear-gradient(135deg, #281028, #601060); }
.portfolio-img[src*="p7.jpg"]  { background: linear-gradient(135deg, #28200A, #5A4810); }
.portfolio-img[src*="p8.jpg"]  { background: linear-gradient(135deg, #0A2828, #105858); }

/* Image placeholder shimmer for missing images */
img:not([src]), img[src=""] {
  min-height: 200px;
  background: linear-gradient(90deg, #2E2820 25%, #3E3428 50%, #2E2820 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — NEW SECTIONS
═══════════════════════════════════════════════════════════════ */

/* ── Stat Cards ─────────────────────────────────────────────── */
.stat-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 28px 16px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}
.stat-card:hover .stat-icon { transform: scale(1.15); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Process Steps ──────────────────────────────────────────── */
.process-row { position: relative; }

.process-step {
  position: relative;
  padding: 36px 28px 36px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.12);
  height: 100%;
}
.process-step:last-child { border-right: none; }

@media (max-width: 992px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .process-step:last-child { border-bottom: none; }
}

.process-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.process-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover .process-icon-wrap {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.process-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
}
@media (max-width: 992px) { .process-arrow { display: none; } }

/* ── Gear Cards ─────────────────────────────────────────────── */
.gear-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: var(--transition);
  height: 100%;
}
.gear-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.gear-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.gear-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}
.gear-desc {
  font-size: 0.8rem;
  color: var(--ivory-muted);
  line-height: 1.6;
}

/* ── City Tags ──────────────────────────────────────────────── */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.city-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(201,168,76,0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}
.city-tag:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.city-tag--more {
  border-style: dashed;
  color: var(--text-muted);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   404 PAGE STYLES
═══════════════════════════════════════════════════════════════ */
.error-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0E0C0A 0%, #1A1612 40%, #2E1A0E 70%, #0E0C0A 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

.error-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.4);
}

.error-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.error-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201,168,76,0.25);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
  letter-spacing: -4px;
  margin-bottom: -20px;
}

.error-icon {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  animation: cameraWobble 3s ease-in-out infinite;
}

@keyframes cameraWobble {
  0%, 100% { transform: rotate(-4deg) scale(1);    }
  50%       { transform: rotate(4deg)  scale(1.08); }
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 16px;
}

.error-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--ivory-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* Quick nav links row */
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.error-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory-muted);
  transition: var(--transition);
  background: rgba(201,168,76,0.05);
}

.error-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.error-tagline {
  margin-top: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
}


/* ═══════════════════════════════════════════════════════════════
   YOUTUBE VIDEO CARDS — iframe embed (Portfolio page)
═══════════════════════════════════════════════════════════════ */

.video-yt-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
  height: 100%;
}
.video-yt-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}

/* ── iframe wrapper — 16:9 responsive ratio ────────────────── */
/* padding-top: 56.25% = 9/16 * 100 — keeps aspect ratio on all screens */
.video-yt-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;   /* 16:9 aspect ratio trick */
  background: #000;      /* Black behind iframe while loading */
  overflow: hidden;
}

.video-yt-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Gold top border appears on hover */
.video-yt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}
.video-yt-card:hover::before { transform: scaleX(1); }

/* ── Card Info below the player ────────────────────────────── */
.video-yt-info {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--dark-border);
}

.video-yt-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.video-yt-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.35;
}

.video-yt-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ivory-muted);
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.video-yt-link:hover { color: var(--gold); }

