/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SAISHA INTERIORS — GLOBAL DESIGN SYSTEM
   Tokens · Reset · Layout · Sections
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* ── LUXURY SECTION PALETTES ── */
  --bg-black-gold:  linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  --bg-beige-cream: linear-gradient(135deg, #FDFBF7 0%, #F5EFE6 100%);
  --bg-olive:       linear-gradient(135deg, #2D372B 0%, #1A2218 100%);
  --bg-charcoal:    linear-gradient(135deg, #1C1C1E 0%, #111111 100%);
  --bg-soft-gray:   linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  --bg-sand-nude:   linear-gradient(135deg, #F2EBE1 0%, #E6DCCF 100%);

  /* ── BRAND COLORS ── */
  --gold:         #D4A437;      /* primary gold accent */
  --gold-light:   #C4922A;      /* deeper gold / hover */
  --gold-pale:    #9A6B10;      /* em / italic text gold */
  --gold-line:    rgba(212,164,55,0.28);
  
  /* ── DYNAMIC THEME DEFAULTS (Dark Theme by default) ── */
  --text-main:      #FFFFFF;
  --text-dim:       rgba(255,255,255,0.70);
  --glass-bg:       rgba(255,255,255,0.03);
  --glass-border:   rgba(255,255,255,0.08);
  --glass-shadow:   0 8px 32px rgba(0,0,0,0.3);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* Light Theme Variables for specific sections */
.about, .before-after, .packages, .testimonials, .team {
  --text-main:      #1A1A1A;
  --text-dim:       rgba(26,26,26,0.70);
  --glass-bg:       rgba(255,255,255,0.65);
  --glass-border:   rgba(255,255,255,0.40);
  --glass-shadow:   0 8px 32px rgba(0,0,0,0.05);
}
.about .section-eyebrow, .before-after .section-eyebrow, .packages .section-eyebrow, .testimonials .section-eyebrow, .team .section-eyebrow {
  color: var(--gold-pale);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: auto; font-size: 16px; }
body  { background: #0a0a0a; color: var(--text-main); font-family: var(--font-sans); font-weight: 400; overflow-x: hidden; cursor: none; border-color: inherit; }
section { position: relative; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(24px,5vw,80px); height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(14,12,8,0.75); backdrop-filter: blur(20px) saturate(1.3);
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-bottom 0.6s ease, box-shadow 0.6s ease;
  border-bottom: 1px solid rgba(212,164,55,0.15);
}
nav.scrolled { background: rgba(14,12,8,0.96); backdrop-filter: blur(28px) saturate(1.4); border-bottom: 1px solid rgba(212,164,55,0.22); box-shadow: 0 4px 32px rgba(0,0,0,0.28); }
.nav-logo { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: #FFFFFF; text-decoration: none; display: flex; flex-direction: row; align-items: center; line-height: 1; gap: 12px; }
.nav-logo-img { filter: brightness(1.05) saturate(1.1); }
.nav-logo span { font-size: 0.45rem; font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.55em; color: #D4A437; margin-top: 5px; text-transform: uppercase; }

/* ── NAV LOGO IMAGE ── */
.nav-logo { gap: 12px; }
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(72%) sepia(86%) saturate(400%) hue-rotate(351deg) brightness(95%) contrast(105%);
  transition: opacity 0.3s, transform 0.3s;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.45rem;
  font-family: var(--font-sans);
  font-weight: 200;
  letter-spacing: 0.55em;
  color: var(--gold);
  margin-top: 5px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: clamp(24px,3vw,48px); list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.70); text-decoration: none; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 1px; background: var(--gold); transition: width 0.4s cubic-bezier(0.25,1,0.5,1); }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; border: 1px solid rgba(212,164,55,0.40); color: #D4A437 !important; transition: background 0.3s, color 0.3s, border-color 0.3s !important; }
.nav-cta:hover { background: rgba(212,164,55,0.15) !important; border-color: rgba(212,164,55,0.7) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 28px; height: 1px; background: #D4A437; transition: all 0.4s ease; transform-origin: center; }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; background: #0e0c08; z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-serif); font-size: clamp(2rem,8vw,4rem); font-weight: 400; letter-spacing: 0.1em; color: #FFFFFF; text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: #D4A437; }
.mobile-close { position: absolute; top: 28px; right: 28px; font-size: 1.5rem; color: #D4A437; cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }

/* Real hero photo — sits behind all overlays */
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.38) saturate(0.80);
}

.hero-bg { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 80% 80% at 50% 60%, rgba(212,164,55,0.08) 0%, transparent 60%), linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.82) 100%); }
.hero-grid { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(212,164,55,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(212,164,55,0.07) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%); }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: floatOrb 12s ease-in-out infinite; }
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,164,55,0.8), transparent); top: 10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(196,146,42,0.6), transparent); bottom: 15%; right: -5%; animation-delay: -6s; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 clamp(20px,6vw,80px); max-width: 1200px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 16px; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.6em; text-transform: uppercase; color: #D4A437; margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: rgba(212,164,55,0.5); }
.hero-h1 { font-family: var(--font-serif); font-size: clamp(3rem,8vw,8rem); font-weight: 300; line-height: 1.02; letter-spacing: 0.02em; color: #FFFFFF; margin-bottom: 28px; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.hero-h1 em { font-style: italic; color: #e8c97a; }
.hero-sub { font-family: var(--font-sans); font-size: clamp(0.7rem,1.5vw,0.85rem); font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.80); margin-bottom: 56px; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3; }
.hero-scroll span { font-size: 0.5rem; font-weight: 200; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(212,164,55,0.7); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(180deg, rgba(212,164,55,0.7), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── METRICS ── */
.metrics {
  padding: clamp(60px,8vw,120px) clamp(24px,8vw,120px);
  border-top: 1px solid rgba(212,164,55,0.15);
  border-bottom: 1px solid rgba(212,164,55,0.15);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(212,164,55,0.1);
}
.metrics .metric-item {
  background: #000000;
  border-right: 1px solid rgba(212,164,55,0.15);
}
.metrics .metric-item:last-child { border-right: none; }
.metrics .metric-num { color: var(--gold); text-shadow: 0 0 15px rgba(212,164,55,0.2); }
.metrics .metric-label { color: rgba(255,255,255,0.6); }

/* ── ABOUT ── */
.about {
  padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,8vw,120px);
  align-items: center;
  background: #FFFFFF;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,164,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.about .section-eyebrow { color: var(--gold); }
.about .section-title { color: var(--text-main); }
.about .section-body { color: var(--text-dim); }
.about-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-visual-inner {
  width: clamp(280px, 80%, 450px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #000000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 5vw, 48px);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 50px rgba(212,164,55,0.25), inset 0 0 40px rgba(212,164,55,0.1);
  z-index: 2;
}

/* Rotating gold glow ring behind logo */
.about-visual-inner::before {
  display: none;
}

/* Gold pulse halo */
.about-visual-inner::after {
  display: none;
}

/* Logo image — rotate + float */
.about-logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  animation:
    logoRotate 22s linear infinite,
    logoFloat  6s  ease-in-out infinite;
  filter: brightness(0) saturate(100%) invert(72%) sepia(86%) saturate(400%) hue-rotate(351deg) brightness(95%) contrast(110%) drop-shadow(0 0 12px rgba(212,164,55,0.4));
  transform-origin: center center;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-animation:
    logoRotate 22s linear infinite,
    logoFloat  6s  ease-in-out infinite;
}

/* Pause animations on hover for a nice interactive feel */
.about-visual:hover .about-logo-img {
  animation-play-state: paused;
  filter: drop-shadow(0 12px 44px rgba(212,164,55,0.55));
}
.about-visual:hover .about-visual-inner::before,
.about-visual:hover .about-visual-inner::after {
  animation-play-state: paused;
}
.about-visual::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-top: 1px solid var(--gold-line); border-right: 1px solid var(--gold-line); z-index: 1; }
.about-visual::after  { content: ''; position: absolute; bottom: -20px; left: -20px; width: 100px; height: 100px; border-bottom: 1px solid var(--gold-line); border-left: 1px solid var(--gold-line); z-index: 1; }
.about-year-badge {
  position: absolute;
  bottom: 32px; right: 32px;
  background: #000000;
  border: 1px solid var(--gold);
  padding: 24px 32px;
  text-align: center;
  z-index: 5;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.about-year-badge .num   { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; display: block; text-shadow: 0 0 20px rgba(212,164,55,0.3); }
.about-year-badge .label { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.4em; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-top: 8px; display: block; }
.about-text { display: flex; flex-direction: column; gap: 32px; }

/* Inner Page About Sections */
#page-about .inner-hero { background: #000000; }
#page-about .inner-section, #page-about .inner-section-alt { background: #FFFFFF; color: var(--text-main); }
#page-about .section-title { color: var(--text-main); }
#page-about .section-body { color: var(--text-dim); }
#page-about .metric-item { background: #000000; border-color: rgba(212,164,55,0.1); }
#page-about .metric-label { color: rgba(255,255,255,0.6); }
#page-about .timeline-year { color: var(--gold); }
#page-about .timeline-title { color: var(--text-main); }
#page-about .timeline-body { color: var(--text-dim); }
#page-about .founder-quote { color: var(--text-main); border-left-color: var(--gold); }
#page-about .founder-sig { color: var(--text-main); }

.services { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-olive); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(48px,7vw,80px); gap: 32px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gold-line); }

/* ── PORTFOLIO ── */
.portfolio { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-charcoal); }
.portfolio-header { text-align: center; margin-bottom: clamp(48px,7vw,80px); }
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: clamp(32px,5vw,56px); }
.filter-tab { background: transparent; border: 1px solid var(--gold-line); color: rgba(34,34,34,0.55); font-family: var(--font-sans); font-size: 0.58rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; padding: 10px 20px; cursor: pointer; transition: all 0.3s; }
.filter-tab:hover, .filter-tab.active { background: rgba(184,151,42,0.1); border-color: var(--gold); color: var(--gold-light); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.portfolio-item { position: relative; overflow: hidden; cursor: pointer; }

/* ── Row 1: item 1 big left (spans 2 rows), items 2-3 right stacked ── */
.portfolio-item:nth-child(1)  { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(2)  { grid-column: span 5; }
.portfolio-item:nth-child(3)  { grid-column: span 5; }

/* ── Row 2 (fills under item 1): items 4-6 ── */
.portfolio-item:nth-child(4)  { grid-column: span 4; }
.portfolio-item:nth-child(5)  { grid-column: span 4; }
.portfolio-item:nth-child(6)  { grid-column: span 4; }

/* ── Row 3: items 7-9, middle spanning two rows ── */
.portfolio-item:nth-child(7)  { grid-column: span 5; }
.portfolio-item:nth-child(8)  { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(9)  { grid-column: span 5; }

/* ── Row 4 (fills under item 8): items 10-11 ── */
.portfolio-item:nth-child(10) { grid-column: span 5; }
.portfolio-item:nth-child(11) { grid-column: span 5; }

/* ── Row 5: items 12-13 equal thirds ── */
.portfolio-item:nth-child(12) { grid-column: span 4; }
.portfolio-item:nth-child(13) { grid-column: span 4; }
.portfolio-item:nth-child(14) { grid-column: span 4; }

.portfolio-bg { width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.25,1,0.5,1); display: flex; align-items: center; justify-content: center; }
.portfolio-item:hover .portfolio-bg { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.88) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0.75; transition: opacity 0.4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat    { font-size: 0.52rem; font-weight: 200; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.portfolio-name   { font-family: var(--font-serif); font-size: clamp(1rem,2.5vw,1.6rem); font-weight: 400; color: #FFFFFF; line-height: 1.2; }
.portfolio-detail { font-size: 0.6rem; font-weight: 200; letter-spacing: 0.2em; color: rgba(255,255,255,0.65); margin-top: 6px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; }
.portfolio-item:hover .portfolio-detail { opacity: 1; transform: translateY(0); }
.p1 { background: linear-gradient(135deg, #1a1510 0%, #0d0b08 50%, #1a1510 100%); }
.p2 { background: linear-gradient(135deg, #0f1318 0%, #080b0d 50%, #0f1318 100%); }
.p3 { background: linear-gradient(135deg, #141018 0%, #0c0a12 50%, #141018 100%); }
.p4 { background: linear-gradient(135deg, #111510 0%, #0a0f09 50%, #111510 100%); }
.p5 { background: linear-gradient(135deg, #18100e 0%, #100908 50%, #18100e 100%); }
.p6 { background: linear-gradient(135deg, #10141a 0%, #090d12 50%, #10141a 100%); }
.portfolio-pattern { position: absolute; inset: 0; opacity: 0.4; }

/* ── PORTFOLIO REAL IMAGES ── */
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.06); }

/* ── BEFORE / AFTER ── */
.before-after { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-soft-gray); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,120px); align-items: center; }
.ba-visual { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--charcoal-3); border: 1px solid var(--gold-line); }
.ba-slider-container { position: relative; width: 100%; height: 100%; overflow: hidden; cursor: ew-resize; touch-action: none; user-select: none; -webkit-user-drag: none; }
.ba-before-wrap, .ba-after-wrap { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ba-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; pointer-events: none; -webkit-user-drag: none; }
.ba-after-wrap { clip-path: inset(0 50% 0 0); z-index: 1; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); z-index: 10; pointer-events: none; }
.ba-handle-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; background: rgba(255,253,248,0.9); backdrop-filter: blur(4px); border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.15); transition: transform 0.2s, background 0.2s; }
.ba-slider-container:hover .ba-handle-circle { transform: translate(-50%,-50%) scale(1.1); background: #FFFFFF; }
.ba-arrows { font-size: 1rem; color: var(--gold); font-weight: 300; letter-spacing: 2px; }
.ba-label { position: absolute; bottom: 20px; font-size: 0.55rem; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: #FFFFFF; z-index: 5; padding: 6px 12px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; }
.ba-label-before { left: 20px; }
.ba-label-after  { right: 20px; }
.ba-hint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 20; color: #FFFFFF; background: rgba(0,0,0,0.6); padding: 12px 20px; border-radius: 40px; backdrop-filter: blur(8px); pointer-events: none; opacity: 0; transition: opacity 0.5s; font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em; }
.ba-hint i { font-size: 1.2rem; color: var(--gold); animation: swipeHint 2s infinite ease-in-out; }
@keyframes swipeHint { 0% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 100% { transform: translateX(-5px); } }

/* ── PACKAGES ── */
.packages        { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-soft-gray); }
.packages-header { text-align: center; margin-bottom: clamp(48px,7vw,80px); }
.packages-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gold-line); max-width: 1100px; margin: 0 auto; }

/* ── FOUNDER & TEAM SPOTLIGHT ── */
.founder-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
  background: var(--bg-charcoal);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.founder {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
  background: var(--bg-charcoal);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.founder-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-portrait:hover .founder-img {
  transform: scale(1.05);
}

.founder-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

.founder-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
  z-index: 2;
  box-shadow: 0 0 20px rgba(212,164,55,0.4);
}

.founder-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.4;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.founder-sig {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 8px;
}

.founder-role {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: -8px;
}

/* ── TEAM ── */
.team        { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-beige-cream); }
.team-header { text-align: center; margin-bottom: clamp(48px,7vw,80px); }
.team-grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gold-line); }

/* ── TESTIMONIALS ── */
.testimonials        { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); background: var(--bg-sand-nude); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: clamp(48px,7vw,80px); }
.testimonials-track  { display: flex; gap: 24px; }
.testimonials-slider { overflow: hidden; }

/* ── CTA BAND ── */
.cta-band { padding: clamp(80px,12vw,140px) clamp(24px,8vw,120px); background: var(--bg-charcoal); border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
.cta-large { font-family: var(--font-serif); font-size: clamp(2.5rem,7vw,7rem); font-weight: 300; line-height: 1.05; color: var(--text-main); }
.cta-large em { font-style: italic; color: var(--gold-pale); }

/* ── CONTACT ── */
.contact      { padding: clamp(80px,12vw,160px) clamp(24px,8vw,120px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,120px); background: var(--bg-black-gold); }
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.contact-detail { display: flex; flex-direction: column; gap: 8px; }
.contact-detail .label { font-size: 0.55rem; font-weight: 300; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); }
.contact-detail .value { font-family: var(--font-serif); font-size: clamp(1rem,2vw,1.4rem); font-weight: 400; color: var(--text-main); }

/* ── FOOTER ── */
footer { padding: clamp(48px,7vw,80px) clamp(24px,8vw,120px); border-top: 1px solid var(--gold-line); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px,5vw,64px); background: var(--bg-black-gold); }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo  { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-main); }
.footer-logo span { display: block; font-family: var(--font-sans); font-size: 0.45rem; font-weight: 300; letter-spacing: 0.5em; color: var(--gold); margin-top: 4px; }
.footer-desc  { font-size: 0.7rem; font-weight: 200; line-height: 1.9; color: var(--text-dim); max-width: 280px; }
.footer-col h4 { font-size: 0.58rem; font-weight: 300; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.68rem; font-weight: 300; color: var(--text-dim); text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding: 24px clamp(24px,8vw,120px); border-top: 1px solid rgba(212,164,55,0.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; background: transparent; }
.footer-bottom p { font-size: 0.58rem; font-weight: 300; letter-spacing: 0.2em; color: var(--text-dim); }

/* ── PAGE HERO ── */
.page-hero { padding: 160px clamp(24px,8vw,120px) clamp(60px,8vw,100px); border-bottom: 1px solid var(--gold-line); }
.page-hero .eyebrow { color: var(--gold); font-size: 0.58rem; letter-spacing: 0.55em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.page-hero .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(3rem,7vw,7rem); font-weight: 300; line-height: 1.05; color: var(--text-main); }
.page-hero h1 em { font-style: italic; color: var(--gold-pale); }

/* ── PROJECT DETAIL ── */
.project-detail         { display: none; }
.project-detail.active  { display: block; }

/* ── BUDGET CALCULATOR SECTION ── */
.calc-section { padding: clamp(64px,10vw,120px) clamp(24px,8vw,120px); background: var(--bg-soft-gray); }
