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

:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #141414;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --gold: #B8893A;
  --gold-light: #D4A55A;
  --gold-dim: rgba(184,137,58,0.15);
  --pink: #E8307A;
  --pink-light: #F050A0;
  --pink-dim: rgba(232,48,122,0.15);
  --white: #FFFFFF;
  --text-muted: #999999;
  --text-dim: #666666;
  --divider: #2A2A2A;
  --border: rgba(255,255,255,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

.display { font-size: clamp(52px, 7vw, 84px); font-weight: 300; letter-spacing: -0.02em; }
.section-title { font-size: clamp(36px, 5vw, 54px); }
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow-pink { color: var(--pink); }

p { font-size: 15px; color: var(--text-muted); line-height: 1.85; }

a { text-decoration: none; color: inherit; }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
section { padding: 120px 0; }

/* ── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 18px 0;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--divider);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 38px; width: auto; object-fit: contain; }
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--bg-primary) !important;
  padding: 10px 24px;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.2s !important;
  border-radius: 1px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--bg-primary); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.btn-outline-pink:hover { background: var(--pink-dim); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,137,58,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,48,122,0.05) 0%, transparent 50%),
              var(--bg-primary);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding-top: 100px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(184,137,58,0.3);
  margin-bottom: 2.5rem;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.hero-tag-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 17px; max-width: 560px; margin-bottom: 3rem; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── BRAND SPLIT ─────────────────────────────────── */
.brand-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; padding: 0; }
.brand-panel {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px;
  min-height: 560px;
  transition: flex 0.6s ease;
  cursor: pointer;
}
.brand-panel-studios { background: var(--bg-secondary); border-right: 1px solid var(--divider); }
.brand-panel-sbonie { background: #0F0A0D; }
.brand-panel-bg {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
}
.brand-panel-studios .brand-panel-bg { background: radial-gradient(ellipse at center, rgba(184,137,58,0.12), transparent 70%); }
.brand-panel-sbonie .brand-panel-bg { background: radial-gradient(ellipse at center, rgba(232,48,122,0.12), transparent 70%); }
.brand-panel:hover .brand-panel-bg { opacity: 1; }
.brand-panel-logo { width: 100px; height: 100px; object-fit: contain; margin-bottom: 2rem; position: relative; z-index: 1; }
.brand-panel-content { position: relative; z-index: 1; }
.brand-panel-tag { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem; }
.brand-panel-studios .brand-panel-tag { color: var(--gold); }
.brand-panel-sbonie .brand-panel-tag { color: var(--pink); }
.brand-panel h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 1rem; font-weight: 300; }
.brand-panel p { font-size: 14px; max-width: 340px; margin-bottom: 2rem; }
.brand-panel-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
}
.brand-panel-studios .brand-panel-link { color: var(--gold); }
.brand-panel-sbonie .brand-panel-link { color: var(--pink); }
.brand-panel-link .arrow { transition: transform 0.3s; }
.brand-panel:hover .brand-panel-link .arrow { transform: translateX(6px); }
.brand-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--divider); transform: scaleY(0);
  transform-origin: top; z-index: 10;
}

/* ── ABOUT TEASER ────────────────────────────────── */
.about-teaser { text-align: center; background: var(--bg-secondary); }
.about-teaser .section-title { max-width: 700px; margin: 0 auto 1.5rem; }
.about-teaser p { max-width: 580px; margin: 0 auto 2.5rem; font-size: 16px; }

/* ── STATS ───────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 20px 30px;
  border-right: 1px solid var(--divider);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: var(--white); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* ── WHY US ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.why-card {
  background: var(--bg-card);
  padding: 48px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.3s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { background: var(--bg-card-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(184,137,58,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--gold); font-size: 22px;
}
.why-card h3 { font-size: 24px; margin-bottom: 0.75rem; }
.why-card p { font-size: 14px; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { background: var(--bg-secondary); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(184,137,58,0.2); }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; line-height: 0.8;
  color: var(--gold); opacity: 0.3;
  margin-bottom: 1rem; display: block;
}
.testimonial-card blockquote { font-size: 14px; color: #CCC; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.testimonial-badge {
  display: inline-block;
  margin-top: 8px; padding: 4px 10px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold-dim); color: var(--gold);
  border-radius: 2px;
}

/* ── PORTFOLIO PREVIEW ───────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  cursor: pointer;
}
.portfolio-thumb {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.7);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 28px;
  opacity: 0; transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.portfolio-title { font-size: 18px; font-family: 'Cormorant Garamond', serif; }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.portfolio-placeholder .icon { font-size: 32px; opacity: 0.3; }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,137,58,0.07), transparent 70%);
  pointer-events: none;
}
.cta-banner .section-title { max-width: 600px; margin: 0 auto 1rem; }
.cta-banner p { max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #080808;
  border-top: 1px solid var(--divider);
  padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 13px; margin-top: 1rem; max-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo img { height: 32px; object-fit: contain; }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--divider); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-socials { display: flex; gap: 20px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

/* ── PAGE HERO VARIANTS ──────────────────────────── */
.page-hero {
  padding: 180px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,137,58,0.07), transparent 60%),
              var(--bg-primary);
}
.page-hero-bg.pink-glow {
  background: radial-gradient(ellipse at 60% 40%, rgba(232,48,122,0.08), transparent 60%),
              #0F0A0D;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 17px; max-width: 560px; margin-bottom: 2.5rem; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image {
  position: relative;
  background: var(--bg-card);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.story-image::after {
  content: ''; position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(184,137,58,0.2);
  pointer-events: none;
}
.story-text .eyebrow { margin-bottom: 1.5rem; }
.story-text h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 1.5rem; }
.story-text p { margin-bottom: 1.2rem; }

.mission-section {
  background: var(--bg-secondary);
  text-align: center;
  padding: 100px 0;
}
.mission-line {
  width: 60px; height: 1px; background: var(--gold);
  margin: 0 auto 2rem;
}
.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300; font-style: italic;
  color: var(--white);
  max-width: 800px; margin: 0 auto;
  line-height: 1.5;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(184,137,58,0.2); }
.team-photo {
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
  position: relative; overflow: hidden;
}
.team-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-card), transparent);
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-info p { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; }
.value-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: relative;
}
.value-card:not(:last-child) { border-right: none; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: 0.15;
  line-height: 1; margin-bottom: 1rem;
}
.value-card h3 { font-size: 22px; margin-bottom: 0.75rem; }

/* ── SBONIE PAGE ─────────────────────────────────── */
.sbonie-page { background: #0F0A0D; }
.sbonie-page nav { }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(232,48,122,0.25); }
.product-image {
  aspect-ratio: 1;
  background: #1A1020;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-image-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
}
.product-quick {
  position: absolute; inset: 0;
  background: rgba(15,10,13,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-quick { opacity: 1; }
.product-info { padding: 20px; }
.product-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.product-info h3 { font-size: 18px; margin-bottom: 6px; }
.product-price { font-size: 15px; color: var(--white); font-weight: 400; margin-bottom: 14px; }
.btn-pink { background: var(--pink); color: var(--white); width: 100%; justify-content: center; padding: 12px; font-size: 11px; }
.btn-pink:hover { background: var(--pink-light); transform: none; }
.product-filters {
  display: flex; gap: 8px; margin-top: 48px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--pink); color: var(--pink); }

/* ── STUDIOS PAGE ────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.3s;
}
.service-card:not(:last-child) { border-right: none; }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 32px; margin-bottom: 1.5rem; display: block; }
.service-card h3 { font-size: 22px; margin-bottom: 0.5rem; }
.service-from { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.service-card p { font-size: 13px; }

.packages-section { background: var(--bg-secondary); }
.package-category { margin-bottom: 60px; }
.package-category h3 {
  font-size: 28px; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--divider);
}
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.package-grid-2 { grid-template-columns: repeat(2, 1fr); }
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.package-card:hover { border-color: rgba(184,137,58,0.3); transform: translateY(-2px); }
.package-card.featured { border-color: var(--gold); }
.package-name { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--gold);
  margin-bottom: 16px; line-height: 1;
}
.package-price span { font-size: 14px; color: var(--text-muted); }
.package-includes { list-style: none; }
.package-includes li {
  font-size: 13px; color: var(--text-muted);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.package-includes li::before { content: '—'; color: var(--gold); font-size: 10px; }
.package-includes li:last-child { border-bottom: none; }

.addons-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px; margin-top: 40px;
}
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }
.addon-item { text-align: center; }
.addon-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold); }
.addon-name { font-size: 12px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.policy-card {
  background: rgba(184,137,58,0.05);
  border: 1px solid rgba(184,137,58,0.2);
  padding: 36px 40px; margin-top: 60px;
}
.policy-card h3 { font-size: 18px; margin-bottom: 1rem; }
.policy-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.policy-list li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.policy-list li::before { content: '·'; color: var(--gold); font-size: 20px; }

/* ── BOOKING PAGE ────────────────────────────────── */
.booking-page { background: var(--bg-secondary); }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
}
.booking-progress { display: flex; align-items: center; margin-bottom: 48px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; position: relative; }
.progress-step::after {
  content: ''; position: absolute; top: 16px; left: 50%; right: -50%;
  height: 1px; background: var(--divider); z-index: 0;
}
.progress-step:last-child::after { display: none; }
.step-dot {
  width: 32px; height: 32px;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-dim);
  position: relative; z-index: 1;
  background: var(--bg-card);
  transition: all 0.3s;
}
.step-dot.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.step-dot.done { border-color: var(--gold); background: var(--gold); color: var(--bg-primary); }
.step-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.step-label.active { color: var(--gold); }

.booking-step { display: none; }
.booking-step.active { display: block; }
.step-title { font-size: 28px; margin-bottom: 8px; }
.step-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.service-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-select-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 28px 24px;
  cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.service-select-card:hover { border-color: rgba(184,137,58,0.4); }
.service-select-card.selected { border-color: var(--gold); background: var(--gold-dim); }
.service-select-card .svc-icon { font-size: 28px; }
.service-select-card h3 { font-size: 18px; }
.service-select-card p { font-size: 13px; }

.pkg-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pkg-select-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 24px;
  cursor: pointer; transition: all 0.3s;
}
.pkg-select-card:hover { border-color: rgba(184,137,58,0.4); }
.pkg-select-card.selected { border-color: var(--gold); background: var(--gold-dim); }
.pkg-select-name { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.pkg-select-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold); margin-bottom: 12px; }
.pkg-select-includes { list-style: none; }
.pkg-select-includes li { font-size: 12px; color: var(--text-muted); padding: 3px 0; }
.pkg-select-includes li::before { content: '— '; color: var(--gold); }

.addons-check { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.addon-check {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  cursor: pointer; transition: border-color 0.3s;
}
.addon-check:hover { border-color: rgba(184,137,58,0.3); }
.addon-check input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; }
.addon-check-label { font-size: 13px; color: var(--text-muted); }
.addon-check-price { font-size: 12px; color: var(--gold); margin-left: auto; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s;
  appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-field textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 24px; }
.cal-header { text-align: center; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); padding: 8px 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s; color: var(--text-muted);
}
.cal-day:hover { border-color: rgba(184,137,58,0.4); color: var(--white); }
.cal-day.selected { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); font-weight: 500; }
.cal-day.disabled { opacity: 0.2; cursor: not-allowed; pointer-events: none; }
.cal-day.empty { cursor: default; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-slot {
  padding: 10px;  text-align: center;
  background: var(--bg-secondary); border: 1px solid var(--border);
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.time-slot:hover { border-color: rgba(184,137,58,0.4); }
.time-slot.selected { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

.booking-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--divider); }
.booking-sidebar { position: sticky; top: 100px; }
.booking-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px;
}
.summary-title { font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--divider); }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { font-size: 12px; color: var(--text-muted); }
.summary-value { font-size: 13px; text-align: right; }
.summary-total { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--divider); display: flex; justify-content: space-between; align-items: center; }
.summary-total .label { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.summary-total .amount { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold); }
.deposit-note { margin-top: 12px; font-size: 11px; color: var(--text-dim); line-height: 1.6; }

.booking-success {
  display: none; text-align: center; padding: 60px 40px;
}
.booking-success .success-icon { font-size: 48px; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.booking-success h2 { font-size: 36px; margin-bottom: 1rem; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scrollLine { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes drawLine { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-up { opacity: 0; }
.animate-fade-up.animated { animation: fadeUp 0.8s ease forwards; }
.animate-slide-left { opacity: 0; }
.animate-slide-left.animated { animation: slideInLeft 0.8s ease forwards; }
.animate-slide-right { opacity: 0; }
.animate-slide-right.animated { animation: slideInRight 0.8s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .container-wide { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-primary); align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-panel { min-height: 380px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card:not(:last-child) { border-right: 1px solid var(--border); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: 1fr; }
  .pkg-select-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .booking-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── UTILITY ─────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-pink { color: var(--pink); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.section-header { max-width: 640px; margin-bottom: 60px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { margin-top: 1rem; font-size: 16px; }
.gold-line { width: 40px; height: 1px; background: var(--gold); margin-top: 1.5rem; }
.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ── LIGHT THEME ─────────────────────────────────────────────────────────── */
body.light-theme {
  --bg-primary:    #F8F6F2;
  --bg-secondary:  #F0EDE8;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F5F3EF;
  --white:         #1A1A1A;
  --text-muted:    #555555;
  --text-dim:      #888888;
  --divider:       #E0DDD8;
  --border:        rgba(0,0,0,0.08);
  background: #F8F6F2;
  color: #1A1A1A;
}
body.light-theme nav { border-bottom-color: #E0DDD8; }
body.light-theme nav.scrolled { background: rgba(248,246,242,0.95); border-bottom-color: #E0DDD8; }
body.light-theme .nav-wordmark { color: #1A1A1A; }
body.light-theme .nav-links a { color: #555; }
body.light-theme .nav-links a:hover { color: #1A1A1A; }
body.light-theme .hero { background: #F8F6F2; }
body.light-theme .hero-bg { background: radial-gradient(ellipse at 70% 50%, rgba(184,137,58,0.1) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(232,48,122,0.06) 0%, transparent 50%), #F8F6F2; }
body.light-theme .hero h1 { color: #1A1A1A; }
body.light-theme .hero p { color: #555; }
body.light-theme .hero-grid { opacity: 0.06; background-image: linear-gradient(#1A1A1A 1px, transparent 1px), linear-gradient(90deg, #1A1A1A 1px, transparent 1px); }
body.light-theme .brand-panel-studios { background: #F0EDE8; }
body.light-theme .brand-panel-sbonie { background: #FAF0F4; }
body.light-theme .brand-panel h2 { color: #1A1A1A; }
body.light-theme .brand-panel p { color: #555; }
body.light-theme .about-teaser { background: #F0EDE8; }
body.light-theme .about-teaser .section-title { color: #1A1A1A; }
body.light-theme .stats-bar { background: #FFFFFF; border-color: #E0DDD8; }
body.light-theme .stat-number { color: #1A1A1A; }
body.light-theme .stat-label { color: #555; }
body.light-theme .stat-item { border-right-color: #E0DDD8; }
body.light-theme .why-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .why-card:hover { background: #F5F3EF; }
body.light-theme .why-card h3 { color: #1A1A1A; }
body.light-theme .testimonials { background: #F0EDE8; }
body.light-theme .testimonial-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .testimonial-card blockquote { color: #444; }
body.light-theme .portfolio-thumb { background: #E8E5E0; }
body.light-theme .portfolio-placeholder { color: #999; }
body.light-theme .cta-banner { background: #FFFFFF; border-color: #E0DDD8; }
body.light-theme .cta-banner .section-title { color: #1A1A1A; }
body.light-theme footer { background: #1A1A1A; }
body.light-theme .footer-grid p, body.light-theme .footer-col ul li a { color: #AAA; }
body.light-theme .footer-col h4, body.light-theme .footer-bottom p { color: #DDD; }
body.light-theme .footer-social { border-color: rgba(255,255,255,0.15); color: #AAA; }
body.light-theme .page-hero { background: #F8F6F2; }
body.light-theme .page-hero-bg { background: radial-gradient(ellipse at 60% 40%, rgba(184,137,58,0.08), transparent 60%), #F8F6F2; }
body.light-theme .page-hero h1 { color: #1A1A1A; }
body.light-theme .page-hero p { color: #555; }
body.light-theme .section-title { color: #1A1A1A; }
body.light-theme h1, body.light-theme h2, body.light-theme h3, body.light-theme h4 { color: #1A1A1A; }
body.light-theme .story-image { background: #E8E5E0; }
body.light-theme .mission-section { background: #F0EDE8; }
body.light-theme .mission-quote { color: #1A1A1A; }
body.light-theme .team-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .team-photo { background: #E8E5E0; }
body.light-theme .value-card { border-color: rgba(0,0,0,0.08); }
body.light-theme .package-card, body.light-theme .service-card, body.light-theme .product-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .package-card:hover { background: #F5F3EF; }
body.light-theme .package-includes li { color: #555; border-color: rgba(0,0,0,0.06); }
body.light-theme .package-name { color: #1A1A1A; }
body.light-theme .addons-section { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .addon-name { color: #555; }
body.light-theme .policy-card { background: rgba(184,137,58,0.06); border-color: rgba(184,137,58,0.25); }
body.light-theme .policy-list li { color: #555; }
body.light-theme .booking-form-wrap { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .booking-summary { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
body.light-theme .service-select-card, body.light-theme .pkg-select-card { background: #F5F3EF; border-color: rgba(0,0,0,0.08); color: #1A1A1A; }
body.light-theme .service-select-card h3 { color: #1A1A1A; }
body.light-theme .service-select-card p { color: #555; }
body.light-theme .form-field input, body.light-theme .form-field textarea { background: #F5F3EF; border-color: rgba(0,0,0,0.12); color: #1A1A1A; }
body.light-theme .addon-check { background: #F5F3EF; border-color: rgba(0,0,0,0.08); }
body.light-theme .addon-check-label { color: #555; }
body.light-theme .cal-day { color: #555; }
body.light-theme .cal-day:hover { border-color: rgba(184,137,58,0.5); color: #1A1A1A; }
body.light-theme .time-slot { background: #F5F3EF; border-color: rgba(0,0,0,0.08); color: #555; }
body.light-theme .summary-label { color: #555; }
body.light-theme .summary-row { border-color: rgba(0,0,0,0.06); }
body.light-theme .deposit-note { color: #777; }
body.light-theme .product-image { background: #F0ECF5; }
body.light-theme .product-image-placeholder { color: #AAA; }
body.light-theme .product-cat { color: var(--pink); }
body.light-theme .product-info h3 { color: #1A1A1A; }
body.light-theme .product-price { color: #1A1A1A; }
body.light-theme .product-filters .filter-btn { border-color: rgba(0,0,0,0.12); color: #555; background: #fff; }

/* ── THEME TOGGLE BUTTON ──────────────────────────────────────────────── */
.theme-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, background 0.3s;
  user-select: none;
}
.theme-toggle:hover { transform: scale(1.1); }
body.light-theme .theme-toggle { background: #FFFFFF; border-color: rgba(0,0,0,0.12); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

/* ── GLOBAL CART ICON IN NAV ─────────────────────────────────────────── */
.nav-cart-link {
  position: relative;
  display: inline-flex; align-items: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-cart-link:hover { color: var(--white); }
#cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--pink); color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px; font-weight: 500;
  font-family: 'Jost', sans-serif;
  display: none;
  align-items: center; justify-content: center;
  line-height: 1;
}
body.light-theme .nav-cart-link { color: #555; }
body.light-theme .nav-cart-link:hover { color: #1A1A1A; }
