/* ============================================================
   ARIA STUDIO — Design System
   ============================================================ */

/* 1. TOKENS */
:root {
  --obsidian:  #0F0C0A;
  --espresso:  #160F0D;
  --cocoa:     #241714;
  --ivory:     #F7F1EA;
  --cream:     #FBF7F1;
  --nude:      #E7CFC1;
  --gold:      #B98545;
  --champagne: #D2AF78;
  --rose:      #B98C82;
  --taupe:     #75645E;
  --white:     #FFFFFF;
  --ink:       #F8F2EA;
  --ink-2:     rgba(248,242,234,0.58);
  --line:      rgba(185,133,69,0.30);
  --sh-card:   0 4px 24px rgba(0,0,0,0.4);
  --r-sm:      4px;
  --r-md:      8px;
  --r-lg:      16px;
  --max-w:     1280px;
  --header-h:  88px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  background: var(--obsidian);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  text-wrap: balance;
  font-weight: 400;
}
h1 { font-size: clamp(42px, 7vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
.italic-accent { font-style: italic; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* 4. LAYOUT UTILITIES */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-2--contact { grid-template-columns: 1.2fr 0.8fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 36px; }
.mt-8 { margin-top: 48px; }

/* 5. BACKGROUND HELPERS */
.bg-obsidian { background: var(--obsidian); }
.bg-espresso { background: var(--espresso); }
.bg-cocoa    { background: var(--cocoa); }
.bg-ivory    { background: var(--ivory); color: var(--obsidian); }
.bg-ivory .eyebrow { color: var(--rose); }
.bg-ivory h2, .bg-ivory h3 { color: var(--obsidian); }
.bg-ivory p { color: #3a2e2b; }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--obsidian);
}
.btn-gold:hover { background: #d4b080; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-ghost:hover { background: rgba(201,165,116,0.1); }
.btn-ghost-ivory {
  border: 1px solid var(--rose);
  color: var(--obsidian);
}
.btn-ghost-ivory:hover { background: rgba(185,140,130,0.12); }
.btn-pair { display: flex; gap: 14px; flex-wrap: wrap; }

/* 7. GOLD CARD */
.card {
  background: var(--cocoa);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 28px 24px;
  box-shadow: var(--sh-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin-top: 14px;
}
.card-disclaimer {
  font-size: 13px;
  color: var(--taupe);
  text-align: center;
  margin-top: 28px;
  line-height: 1.6;
}

/* 8. SECTION DIVIDERS */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}
.gold-rule-left { margin-left: 0; }

/* 9. TRUST STRIP */
.trust-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--taupe);
}
.trust-item strong { color: var(--gold); font-size: 14px; }

/* 10. REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* 11. HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
/* Logo mark: mix-blend-mode:screen makes black background invisible on dark surfaces */
.logo-mark {
  /* Crest removed for the de-branded template — text wordmark stands alone.
     To add your own logo mark, set display:block and background-image below. */
  display: none;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}
/* Legacy img fallback — hidden when .logo-mark is used */
.logo-img { display: none; }
.footer-logo { gap: 14px; }
.footer-logo .logo-mark { width: 96px; height: 96px; }
/* Logo wordmark text */
.logo-monogram { display: none; }
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--champagne);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.logo-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(198,180,155,0.55);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
/* NAV LINKS — Playfair Display */
.nav { display: flex; align-items: center; gap: 36px; }
.nav a, .nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ivory);
  transition: color 0.2s;
  position: relative;
}
.nav a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover, .nav-link:hover { color: var(--gold); }
.nav a:hover::after, .nav-link:hover::after { transform: scaleX(1); }
.nav a.active, .nav-link.active { color: var(--gold); }
.nav a.active::after, .nav-link.active::after { transform: scaleX(1); opacity: 1; }
.nav-cta { margin-left: 8px; padding: 12px 26px !important; font-size: 13px !important; }

/* 12. MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu nav a, .mobile-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--ivory);
  transition: color 0.2s;
  text-align: center;
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* 13. FLOATING WHATSAPP */
.wa-fab {
  position: fixed;
  bottom: 84px;
  right: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 26px; height: 26px; fill: white; }

/* 14. MOBILE STICKY BAR */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 89;
  background: var(--espresso);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
}
.mobile-sticky .btn { width: 100%; justify-content: center; }

/* ── HEADER ACTIONS & BUTTON VARIANTS ─────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-champagne {
  background: var(--champagne);
  color: var(--obsidian);
}
.btn-champagne:hover { background: #d4aa74; transform: translateY(-1px); }
.btn-outline-ivory {
  border: 1px solid rgba(247,242,234,0.45);
  color: var(--ivory);
  background: transparent;
}
.btn-outline-ivory:hover { background: rgba(247,242,234,0.07); }
.btn-block { width: 100%; justify-content: center; }

/* ── MOBILE MENU (new structure) ──────────────────────────── */
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--ivory);
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-link:hover { color: var(--gold); }
.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--taupe);
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
}

/* ── MOBILE STICKY v2 (two-button bar) ────────────────────── */
.mobile-sticky-v2 {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 89;
  background: var(--espresso);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: stretch;
}
.mobile-sticky-v2 .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  min-height: 50px;
}

/* 15. HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  animation: kenburns 14s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,10,10,0.92) 0%,
    rgba(11,10,10,0.55) 50%,
    rgba(11,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 { color: var(--ivory); margin-bottom: 20px; }
.hero-lead {
  font-size: 17px;
  color: var(--taupe);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* 16. PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 0 72px;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.page-hero-lead { color: var(--taupe); max-width: 560px; margin-top: 16px; }

/* 17. PORTFOLIO / MASONRY */
.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.hidden { display: none; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }

/* 18. LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--ivory);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ivory);
  font-size: 40px;
  cursor: pointer;
  padding: 12px;
  user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* 19. REVIEW CAROUSEL */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}
.review-card {
  min-width: 340px;
  background: var(--espresso);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 28px;
  flex-shrink: 0;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.review-text { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-client { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
  background: var(--cocoa);
}
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--taupe); }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--gold); }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  cursor: pointer;
  transition: border-color 0.2s;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }

/* 20. FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cocoa);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #c0392b; }
.form-error { font-size: 12px; color: #e74c3c; margin-top: 2px; display: none; }
.form-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--cocoa); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
}
.form-success.show { display: block; }
.form-success h3 { font-size: 28px; color: var(--gold); margin-bottom: 12px; }

/* 21. ACADEMY OVERRIDES (also in academy.css) */
.academy-page .hero-bg { filter: brightness(0.6); }
.academy-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.academy-faq summary {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.academy-faq summary::after { content: '+'; color: var(--gold); font-size: 20px; }
.academy-faq details[open] summary::after { content: '−'; }
.academy-faq details p { margin-top: 12px; color: var(--taupe); font-size: 15px; line-height: 1.7; }

/* 22. STEP JOURNEY */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}
.journey-step { text-align: center; padding: 0 16px; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 20px;
  background: var(--espresso);
  position: relative;
  z-index: 1;
}
.journey-step h4 { font-style: italic; margin-bottom: 10px; }
.journey-step p { font-size: 14px; color: var(--taupe); }

/* 23. BRANDS ROW */
.brands-row {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--taupe);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.brand-name:hover { color: var(--ivory); }
.brands-note { font-size: 12px; color: var(--taupe); text-align: center; margin-top: 12px; }

/* 24. TRUST POINTS (products section) */
.trust-points { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 36px; }
.trust-point { text-align: center; }
.trust-point-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
}
.trust-point p { font-size: 13px; color: var(--taupe); line-height: 1.5; }

/* 25. INSTAGRAM GRID */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-item:hover img { transform: scale(1.05); }

/* 26. FINAL CTA SECTION */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,10,10,0.78);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 { color: var(--ivory); margin-bottom: 16px; }
.final-cta p { color: var(--taupe); max-width: 480px; margin: 0 auto 32px; }
.final-cta-note { font-size: 13px; color: var(--taupe); font-style: italic; margin-top: 20px; }

/* 27. FOOTER */
.footer {
  background: var(--obsidian);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
/* footer-inner = outer container */
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
/* footer-links = 3-column right side */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-tagline { font-size: 13px; color: var(--taupe); margin-top: 10px; line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
/* footer-col-title = column heading */
.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
/* footer-link = individual link */
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--taupe);
  transition: color 0.2s;
  margin-bottom: 10px;
}
.footer-link:last-child { margin-bottom: 0; }
.footer-link:hover { color: var(--ivory); }
/* footer-bottom */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--taupe);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--taupe); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* 27b. FOOTER GRID VARIANT (services.html 4-col layout) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li:last-child { margin-bottom: 0; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 13px;
  color: var(--taupe);
  text-decoration: none;
  display: block;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--ivory); }
/* Social wrapper div in services.html */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-size: 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--taupe); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* 28. WMGOOD BADGE */
.wmg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cocoa);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 12px 20px;
}
.wmg-score { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold); line-height: 1; }
.wmg-label { font-size: 12px; color: var(--taupe); }
.wmg-label strong { display: block; color: var(--ivory); margin-bottom: 2px; }

/* 29. RESPONSIVE */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-sticky { display: block; }
  .mobile-sticky-v2 { display: flex; }
  .wa-fab { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-points { grid-template-columns: repeat(3, 1fr); }
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .journey-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .masonry { columns: 2; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(36px, 10vw, 52px); }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .section { padding: 56px 0; }
  /* ── Mobile navbar fixes ──────────────────────────── */
  .header-inner { padding: 0 16px; gap: 8px; }
  .logo { gap: 8px; }
  /* Smaller logo mark on mobile */
  .logo-mark { width: 40px !important; height: 40px !important; }
  /* Hide subtitle so hamburger has room */
  .logo-sub { display: none; }
  /* Compact CTA button — single line */
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 7px 12px; font-size: 10px; white-space: nowrap; letter-spacing: 0.05em; }
  /* ── Hide FAB on mobile — sticky bar already has WhatsApp ── */
  .wa-fab { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--contact { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .journey-steps { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .masonry { columns: 1; }
  .brands-row { gap: 28px; }
  .review-card { min-width: 280px; }
}

/* 30. SERVICE EDITORIAL PANELS */
.svc-section {
  /* Full-bleed background holder */
}
.svc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-panel-img {
  overflow: hidden;
  position: relative;
  align-self: stretch;
}
.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.6s ease;
}
.svc-panel:hover .svc-panel-img img {
  transform: scale(1.04);
}
.svc-panel-body {
  padding: 44px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.svc-content-group {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  width: 100%;
}
.svc-content-group .eyebrow {
  margin-bottom: 11px;
}
.svc-panel-body h2 {
  margin: 0 0 18px;
  line-height: 1.1;
  font-size: clamp(34px, 3.2vw, 52px);
  overflow-wrap: break-word;
  word-break: normal;
}
.svc-panel-body > .svc-content-group > p:not(.svc-price) {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}
.svc-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: break-word;
}
.svc-checklist li svg { flex-shrink: 0; margin-top: 3px; }
.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin: 24px 0 0;
  font-weight: 400;
  overflow-wrap: break-word;
}
.svc-panel-body .btn {
  align-self: flex-start;
  margin-top: 18px;
  flex-shrink: 0;
}
.svc-upgrade {
  border-left: 2px solid var(--gold);
  padding: 14px 18px;
  margin: 20px 0 0;
  background: rgba(255,255,255,0.025);
  min-width: 0;
  overflow-wrap: break-word;
}
.svc-upgrade .eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 6px;
}
.svc-upgrade strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 8px;
  overflow-wrap: break-word;
}
.svc-upgrade p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 8px;
  overflow-wrap: break-word;
}
.svc-upgrade p:last-child { margin-bottom: 0; }
.img-right .svc-panel-body { order: -1; }
.img-right .svc-panel-img { order: 1; }

/* Tablet: keep two-col, reduce padding */
@media (max-width: 1100px) {
  .svc-panel { min-height: 460px; }
  .svc-panel-body { padding: 36px 40px; }
  .svc-content-group { max-width: 88%; }
}
@media (max-width: 1024px) {
  .svc-panel-body { padding: 32px 36px; }
}

/* Mobile: stack — image first (full natural height), content second */
@media (max-width: 768px) {
  .svc-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .svc-panel-img {
    aspect-ratio: unset;
    height: auto;
    overflow: hidden;
    order: 0 !important;
  }
  /* Image displays at full natural size — no fixed container, no cropping */
  .svc-panel-img img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }
  .svc-panel-body {
    padding: 30px 24px;
    order: 1 !important;
    justify-content: flex-start;
  }
  .svc-content-group { max-width: 100%; }
}
@media (max-width: 480px) {
  .svc-panel-body { padding: 28px 20px; }
}

/* 31. IMAGE ASPECT-RATIO RESERVES (prevents CLS on lazy-loaded placeholders) */
.masonry-item img { aspect-ratio: 3/4; width: 100%; height: auto; }
.ig-item img { aspect-ratio: 1/1; width: 100%; height: auto; }
.grid-2 > div > img { width: 100%; height: auto; display: block; }
.grid-3 .studio-img { aspect-ratio: 4/3; width: 100%; height: auto; }
