/* =========================================================
   VARAMMA — Luxury Beauty Editorial
   Design system, components, responsive & motion
   ========================================================= */

:root {
  --bg: #181818;
  --bg-deep: #0a0a0a;
  --charcoal: #242424;
  --charcoal-soft: #2b2b2b;
  --white: #f5f3ef;
  --gray: #b8b4ae;
  --border: #555555;
  --champagne: #c9b79c;

  --serif: "Cormorant Garamond", "Playfair Display", "Bodoni Moda", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --script: "Great Vibes", cursive;

  --header-h: 84px;
  --container: 1240px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--white); color: var(--bg-deep); }

:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.container--narrow { max-width: 820px; }

section { position: relative; scroll-margin-top: var(--header-h); }

.section { padding-block: clamp(72px, 10vw, 132px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gray);
}
.eyebrow--light { color: var(--white); }

.section-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: -6px 0 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray);
}

.text { color: var(--gray); margin: 0 0 26px; }
.lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

/* Decorative divider */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 34px;
}
.divider span { width: 64px; height: 1px; background: linear-gradient(90deg, transparent, var(--border)); }
.divider span:last-child { background: linear-gradient(90deg, var(--border), transparent); }
.divider i {
  width: 6px; height: 6px; transform: rotate(45deg);
  background: transparent; border: 1px solid var(--champagne);
}
.divider--left { justify-content: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 0 2.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--btn-pad);
  min-height: 52px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: color .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--white); color: var(--bg-deep); border-color: var(--white); }
.btn-primary:hover { background: var(--bg-deep); color: var(--white); }

.btn-light { background: var(--white); color: var(--bg-deep); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }

.btn-outline { border-color: var(--border); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--bg-deep); }

.btn-ghost { border-color: rgba(245, 243, 239, 0.45); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--white); background: var(--white); color: var(--bg-deep); }

.btn-sm { min-height: 44px; padding: 0 1.9rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), height .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(24, 24, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(85, 85, 85, 0.45);
}

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  font-family: var(--serif);
  font-size: 1.5rem; line-height: 1;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color .4s var(--ease), border-color .4s var(--ease), transform .6s var(--ease);
}
.brand:hover .brand-monogram { color: var(--champagne); border-color: var(--champagne); transform: rotate(-12deg); }
.brand-word {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.34em;
  margin-left: 0.12em;
}

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.site-nav a {
  position: relative;
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gray);
  padding: 6px 0;
  transition: color .35s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--champagne);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  position: relative;
  width: 34px; height: 26px;
  padding: 0; border: 0; background: transparent;
}
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--white);
  transition: transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 4px;  }
.nav-toggle span:nth-child(2) { top: 12px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 28px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  padding: 8px 12px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu.open nav a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: .38s; }
.mobile-menu .btn { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease) .44s, transform .6s var(--ease) .44s; }
.mobile-menu.open .btn { opacity: 1; transform: none; }
.mobile-menu-script {
  position: absolute; bottom: 8vh;
  font-family: var(--script); font-size: clamp(2.4rem, 6vw, 4rem);
  color: rgba(245, 243, 239, 0.14);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media .media {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 42%, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.88) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.12) 50%, rgba(10,10,10,0.9) 100%);
}

.hero-content { position: relative; z-index: 1; padding-block: 90px; }

.hero-label {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0 0 34px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gray);
}
.hero-label .line { width: 44px; height: 1px; background: var(--border); }

.hero-title {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 7.2vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 60px rgba(0,0,0,.4);
}
.hero-title em { font-weight: 300; color: var(--white); }

.hero-sub {
  margin: 0 auto 42px;
  max-width: 520px;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
}

.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 56px;
  display: block;
}
.scroll-line {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--white));
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Hero entrance */
.fade-in { opacity: 0; transform: translateY(28px); animation: fadeUp 1.1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* =========================================================
   QUICK NAV
   ========================================================= */
.quicknav {
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  background: linear-gradient(180deg, #131313, var(--bg));
  padding-block: clamp(40px, 6vw, 72px);
}
.quicknav-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(18px, 3vw, 44px);
  scrollbar-width: none;
}
.quicknav-row::-webkit-scrollbar { display: none; }
.quicknav-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.quicknav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(70px, 9vw, 104px); height: clamp(70px, 9vw, 104px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  transition: border-color .45s var(--ease), transform .55s var(--ease), box-shadow .45s var(--ease), color .45s var(--ease);
}
.quicknav-icon svg { width: 40%; height: 40%; }
.quicknav-item:hover .quicknav-icon {
  border-color: var(--champagne);
  color: var(--champagne);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.9);
}
.quicknav-label {
  font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray);
  transition: color .35s var(--ease);
}
.quicknav-item:hover .quicknav-label { color: var(--white); }

/* =========================================================
   ABOUT / ARTIST
   ========================================================= */
.about { background: var(--bg); }
.section-head { text-align: center; }

.artist { background: var(--charcoal); }
.artist-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
}
.portrait-ring {
  position: relative;
  width: min(380px, 72vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid rgba(245, 243, 239, 0.5);
  background: transparent;
}
.portrait-ring::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px dashed rgba(245, 243, 239, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.portrait-ring .media {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  filter: saturate(0.82) contrast(1.05);
}
.artist-copy { padding-block: 12px; }
.artist-name {
  margin: 30px 0 0;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--white);
}
.artist-role {
  margin: 8px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gray);
}
.artist-sign {
  margin: 18px 0 30px;
  font-family: var(--script);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--champagne);
  transform: rotate(-4deg);
}
.artist-copy .btn { margin-top: 8px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
  margin-top: clamp(44px, 6vw, 76px);
}
.service-card { text-align: center; }
.service-media { position: relative; display: block; }
.service-ring {
  display: block;
  width: min(clamp(150px, 17vw, 220px), 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(245, 243, 239, 0.38);
  border-radius: 50%;
  padding: 6px;
  transition: border-color .5s var(--ease), transform .6s var(--ease);
  overflow: hidden;
}
.service-ring .media {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  transform: scale(1);
  transition: transform 1s var(--ease);
  filter: saturate(0.85) contrast(1.05);
}
.service-card:hover .service-ring { border-color: var(--champagne); transform: translateY(-6px); }
.service-card:hover .service-ring .media { transform: scale(1.08); }

.service-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.service-hover span {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
  transform: translateY(8px);
  transition: transform .5s var(--ease);
}
.service-card:hover .service-hover { opacity: 1; }
.service-card:hover .service-hover span { transform: none; }

.service-title {
  margin: 26px 0 10px;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white);
}
.service-desc {
  margin: 0 auto 12px;
  max-width: 250px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-price {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champagne);
}
.price-placeholder { color: var(--champagne); opacity: .7; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio { background: var(--bg); }
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 26px;
  margin: clamp(36px, 5vw, 60px) 0 clamp(30px, 4vw, 46px);
}
.filter-btn {
  padding: 8px 2px;
  background: none; border: 0;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color .35s var(--ease);
}
.filter-btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--champagne);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.filter-btn:hover, .filter-btn.is-active { color: var(--white); }
.filter-btn.is-active::after, .filter-btn:hover::after { transform: scaleX(1); transform-origin: left; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 15px;
  gap: clamp(14px, 2vw, 24px);
}
.folio-item { margin: 0; position: relative; grid-row: span 11; }
.folio-item.tall { grid-row: span 17; }
.folio-item .folio-link {
  display: block; width: 100%; height: 100%;
  position: relative;
  padding: 0; border: 0; background: none;
  overflow: hidden;
}

.folio-item .media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
  filter: saturate(0.8) contrast(1.04);
}
.folio-item .folio-link:hover .media { transform: scale(1.07); filter: saturate(1) contrast(1.04); }
.folio-item figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(14px, 2vw, 26px);
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.82) 100%);
  opacity: 0;
  transition: opacity .55s var(--ease);
  text-align: left;
}
.folio-item figcaption span {
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.folio-item figcaption {
  font-family: var(--serif);
  font-size: 1.25rem; color: var(--white);
}
.folio-item .folio-link:hover figcaption { opacity: 1; }

.folio-item.fade-out { opacity: 0; transform: scale(0.96); }
.folio-item.fade-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.folio-item.hide { display: none; }

/* =========================================================
   BOOKING CTA
   ========================================================= */
.booking {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 110px 0;
}
.booking-bg { position: absolute; inset: 0; z-index: -2; }
.booking-bg .media { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.booking-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(75% 70% at 50% 50%, rgba(10,10,10,0.55), rgba(10,10,10,0.94)),
    linear-gradient(180deg, var(--bg-deep), transparent 40%, transparent 60%, var(--bg-deep));
}

.booking-type {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: -1;
  pointer-events: none;
}
.booking-type span {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(70px, 16vw, 230px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 243, 239, 0.07);
  white-space: nowrap;
  user-select: none;
}
.booking-type span:nth-child(2) { color: rgba(245, 243, 239, 0.035); -webkit-text-stroke: 0; }

.booking-content { position: relative; z-index: 1; }
.booking-title {
  margin: 0 0 22px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.08;
}
.booking-sub {
  margin: 0 auto 40px;
  max-width: 560px;
  color: var(--gray);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.9;
}
.booking-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg-deep); }
.accordion { margin-top: clamp(36px, 5vw, 60px); }
.acc-item {
  border: 1px solid var(--charcoal);
  background: var(--bg);
  margin-bottom: 10px;
  transition: border-color .45s var(--ease);
}
.acc-item.open { border-color: var(--border); }
.acc-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: none; border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--white);
}
.acc-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--champagne);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease);
}
.acc-icon::before { width: 18px; height: 1px; }
.acc-icon::after { width: 1px; height: 18px; }
.acc-item.open .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--ease);
}
.acc-body p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.85;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--charcoal); }
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(40px, 5vw, 64px);
}
.tst-card {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  background: var(--bg);
  border: 1px solid var(--charcoal);
  display: flex; flex-direction: column;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.tst-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  transform: scaleX(0); transition: transform .7s var(--ease);
}
.tst-card:hover { border-color: var(--border); transform: translateY(-6px); }
.tst-card:hover::before { transform: scaleX(1); }
.tst-stars {
  color: var(--champagne);
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.tst-card blockquote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
}
.tst-meta { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--charcoal); }
.tst-name { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); }
.tst-service { display: block; margin-top: 6px; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray); }
.tst-note {
  margin: 34px 0 0; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(184, 180, 174, 0.55);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.contact-list { margin-top: 8px; }
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--charcoal);
  font-size: 0.92rem;
}
.contact-list li:first-child { border-top: 1px solid var(--charcoal); }
.contact-list .clabel {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray);
  padding-top: 2px;
}
.contact-list a { color: var(--white); transition: color .35s var(--ease); }
.contact-list a:hover { color: var(--champagne); }

.booking-form {
  background: var(--bg);
  border: 1px solid var(--charcoal);
  padding: clamp(26px, 3.4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 300;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(184, 180, 174, 0.55); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--charcoal-soft);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.booking-form .btn { margin-top: 8px; }
.form-note {
  margin: 14px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--champagne);
  min-height: 1.2em;
}
.form-note.err { color: #d98f8f; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-deep); border-top: 1px solid var(--charcoal); }
.footer { padding: clamp(64px, 8vw, 110px) 0 34px; text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-tag { margin: 18px 0 34px; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gray); }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 34px;
  margin-bottom: 40px;
}
.footer-nav a {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray);
  transition: color .35s var(--ease);
}
.footer-nav a:hover { color: var(--white); }
.footer-social { display: flex; justify-content: center; gap: 34px; margin-bottom: 50px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray);
  transition: color .35s var(--ease);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social span { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; }
.footer-social a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid var(--charcoal);
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.74rem;
  color: rgba(184, 180, 174, 0.7);
}
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { transition: color .3s var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure { max-width: min(920px, 90vw); margin: 0; text-align: center; }
.lb-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid var(--charcoal);
  transform: scale(0.96);
  transition: transform .5s var(--ease);
}
.lightbox.open .lb-img { transform: none; }
.lb-caption {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
}
.lb-cat { font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--champagne); }
.lb-title { font-family: var(--serif); font-size: 1.4rem; color: var(--white); }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none; border: 1px solid var(--border);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--champagne); color: var(--champagne); }
.lb-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 1rem; }
.lb-close:hover { transform: rotate(90deg); }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; border-radius: 50%; }
.lb-prev { left: clamp(12px, 3vw, 40px); }
.lb-next { right: clamp(12px, 3vw, 40px); }
.lb-prev:hover { transform: translateY(-50%) translateX(-4px); }
.lb-next:hover { transform: translateY(-50%) translateX(4px); }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal, .fade-in { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); row-gap: 52px; }
  .artist-grid { grid-template-columns: 1fr; text-align: center; }
  .section-head.text-left, .artist-copy { text-align: center; }
  .divider--left { justify-content: center; }
  .artist-name, .artist-role { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .quicknav-row {
    grid-template-columns: repeat(6, minmax(96px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .quicknav-item { scroll-snap-align: center; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px) {
  :root { --header-h: 70px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .folio-item { grid-row: span 13; }
  .folio-item.tall { grid-row: span 18; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta, .booking-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .booking-cta .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
}