:root {
  --bg: #161616;
  --surface: #1e1e1e;
  --surface-2: #252525;
  --surface-3: #2a2a2a;
  --gold: #c9a227;
  --gold-light: #ddb83a;
  --gold-dim: rgba(201, 162, 39, 0.2);
  --gold-bg: rgba(201, 162, 39, 0.08);
  --text: #f0f0f0;
  --muted: #9a9a9a;
  --border: #333;
  --font-display: 'Instrument Serif', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-logo: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --wrap: min(1160px, 92vw);
  --space: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px -10px rgba(201, 162, 39, 0.35);
  --header-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
main { padding-top: var(--header-height); }

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-bg--red {
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(253, 50, 54, 0.08) 0%, transparent 50%);
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
body.sidebar-open .sidebar-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
body.sidebar-open { overflow: hidden; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem var(--space-lg);
  padding-top: max(0.5rem, env(safe-area-inset-top));
  padding-left: max(var(--space-lg), env(safe-area-inset-left));
  padding-right: max(var(--space-lg), env(safe-area-inset-right));
  min-height: 52px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
body.sidebar-open .header { z-index: 103; }
.header .menu-btn { flex-shrink: 0; position: relative; z-index: 1; }

.header__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0.35rem 1rem;
  min-width: 0;
  overflow: visible;
}

.header__line { display: none; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.25s ease;
  flex-shrink: 0;
  min-width: 0;
}
.logo:hover { color: var(--gold); }
.logo__mark {
  width: 42px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); */
  border-radius: 12px;
  /* box-shadow: 0 0 12px var(--gold-dim); */
  flex-shrink: 0;
  color: var(--gold);
  /* transition: box-shadow 0.25s ease, transform 0.25s ease; */
}
.logo__mic {
  display: block;
  width: 32px;
  height: 32px;
}
.logo__text {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo__name {
  font-family: var(--font-logo);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: none;
  color: inherit;
  transition: color 0.25s ease, filter 0.25s ease;
  line-height: 1.15;
  white-space: nowrap;
}
.logo:hover .logo__name {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo:hover .logo__mark {
  box-shadow: 0 0 12px var(--gold-dim), 0 0 22px rgba(201, 162, 39, 0.35);
  transform: scale(1.04);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav a:hover { color: var(--gold); background: var(--gold-bg); }
.nav__cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
  color: var(--bg) !important;
  font-weight: 600;
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  color: var(--bg) !important;
  box-shadow: var(--shadow-gold);
}

.menu-btn {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn span { width: 22px; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.25s; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
  color: var(--bg);
}
.btn--primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 2rem var(--space-xl) var(--space-2xl);
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
.hero__bg--photo {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 162, 39, 0.06) 0%, var(--bg) 70%);
  opacity: 0;
  pointer-events: none;
}
.hero--photo .hero__bg--video { opacity: 0; pointer-events: none; }
.hero--photo .hero__bg--photo { opacity: 1; }

/* Hero color theme (white + #FD3236) */
:root { --red: #FD3236; --red-dim: rgba(253, 50, 54, 0.2); --red-bg: rgba(253, 50, 54, 0.08); }
.hero--color .hero__bg--color {
  background:
    radial-gradient(ellipse 100% 80% at 100% 20%, rgba(253, 50, 54, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 80%, rgba(253, 50, 54, 0.04) 0%, transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #fcfcfc 30%, #f8f7f7 60%, rgba(253, 50, 54, 0.03) 100%);
  opacity: 1;
}
.hero--color { color: #1a1a1a; }
.hero--color .hero__intro { color: #555; }
.hero--color .hero__label { color: var(--red); }
.hero--color .hero__label-line { background: linear-gradient(90deg, var(--red), transparent); }
.hero--color .hero__title em {
  background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero--color .btn--ghost { border-color: var(--red); color: var(--red); }
.hero--color .btn--ghost:hover { background: var(--red-bg); border-color: var(--red); }
.hero--color .btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
  color: #fff;
}
.hero--color .btn--primary:hover { box-shadow: 0 0 40px -10px var(--red); }
.hero__glow--red {
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(253, 50, 54, 0.15) 0%, transparent 60%);
}
.hero__grid--red { opacity: 0.04; background-image: linear-gradient(rgba(253,50,54,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(253,50,54,0.3) 1px, transparent 1px); }
.hero__orb--red {
  background: radial-gradient(circle at 30% 30%, rgba(253, 50, 54, 0.2) 0%, rgba(253, 50, 54, 0.06) 40%, transparent 70%);
}
.hero__beam--red { background: linear-gradient(to bottom, var(--red), transparent); }
.hero--color .hero__visual--color { display: flex; align-items: center; justify-content: center; height: 320px; }
body.page--red .hero.hero--color { padding-bottom: var(--space-2xl); }
body.page--red .hero.hero--video .hero__video-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(252,252,252,0.25) 40%, rgba(255,255,255,0.5) 100%);
}
@media (max-width: 1024px) {
  .hero--color .hero__visual--color { display: none; }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,22,22,0.5) 0%, rgba(22,22,22,0.72) 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 65%);
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero__visual--photo { display: none; }
.hero__visual--video { display: flex; align-items: center; justify-content: center; position: relative; height: 100%; width: 100%; }
.hero--photo .hero__visual--video { display: none; }
.hero--photo .hero__visual--photo { display: flex; align-items: center; justify-content: center; }
.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 40vw);
}
.hero__photo-glow {
  position: absolute;
  z-index: 0;
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__photo-circle {
  position: relative;
  z-index: 2;
  width: min(380px, 38vw);
  aspect-ratio: 1;
  max-width: 100%;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.35) 0%, rgba(160, 130, 25, 0.5) 50%, rgba(201, 162, 39, 0.25) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(201, 162, 39, 0.85),
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 25px 50px -20px rgba(0, 0, 0, 0.5);
}
.hero__photo-circle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 30px -10px rgba(0, 0, 0, 0.4);
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: drop-shadow(0 4px 20px -5px rgba(0, 0, 0, 0.3));
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space);
}
.hero__label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 var(--space-m);
  max-width: 480px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: var(--space); flex-wrap: wrap; }

.hero__visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--photo { padding: 5rem var(--space-xl) 4rem; }
.hero--photo .hero__inner { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; align-items: center; max-width: 1280px; width: 100%; }
.hero--photo .hero__visual { height: auto; min-height: 520px; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.hero--photo .hero__visual--photo { align-items: flex-end; justify-content: center; width: 100%; height: 100%; min-height: 520px; }
.hero--photo .hero__photo-wrap { align-self: center; flex-shrink: 0; }
.hero--photo .hero__content { max-width: 520px; }
.hero--photo .hero__title { font-size: clamp(2.6rem, 5vw, 3.8rem); }
.hero--photo .hero__intro { margin-bottom: var(--space-lg); }
.hero__orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0.08) 40%, transparent 70%);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero__beam {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.4;
}
.hero__beam--1 { top: 20%; right: 30%; transform: rotate(-15deg); animation: beam 3s ease-in-out infinite; }
.hero__beam--2 { bottom: 25%; right: 20%; transform: rotate(10deg); animation: beam 3s ease-in-out 0.5s infinite; }
.hero__beam--3 { top: 50%; right: 45%; transform: rotate(-5deg); animation: beam 3s ease-in-out 1s infinite; }
@keyframes beam {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Inner pages (about, services, portfolio, testimonials, contact) */
.page-inner main { padding-top: var(--header-height); }
.inner-hero {
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.inner-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 var(--space);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.inner-hero__title .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inner-hero__intro {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1.05rem;
}
.inner-hero__intro a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inner-hero__intro a:hover {
  color: var(--gold-light);
}
.block--cta .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: var(--space);
}
.page-inner {
  background: var(--bg);
  min-height: 100vh;
}

/* Portfolio — event case studies */
.portfolio-cases {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.portfolio-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease;
}
.portfolio-case:hover {
  border-color: rgba(201, 162, 39, 0.28);
}
.portfolio-case__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.portfolio-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-case__tag {
  position: absolute;
  top: var(--space);
  left: var(--space);
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
  border-radius: 6px;
}
.portfolio-case__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  color: var(--text);
  line-height: 1.2;
}
.portfolio-case__meta {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 var(--space);
  letter-spacing: 0.02em;
}
.portfolio-case__text {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}
.portfolio-case__list {
  margin: var(--space) 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.portfolio-case__list li { margin-bottom: 0.35rem; }
@media (max-width: 900px) {
  .portfolio-case {
    grid-template-columns: 1fr;
  }
}

/* Testimonials — card grid (dark) */
.block--testimonial-page {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.block--testimonial-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 162, 39, 0.04), transparent 65%);
  pointer-events: none;
}
.block--testimonial-page .wrap {
  position: relative;
  z-index: 1;
  text-align: left;
}
.testimonial-page__head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.testimonial-page__head .block__tag {
  margin-bottom: var(--space);
}
.testimonial-page__lede {
  margin: 0 0 var(--space-lg);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.testimonial-page__chips li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(201, 162, 39, 0.06);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.testimonial-grid--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial-card--featured {
  grid-column: 1 / -1;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.35);
}
.testimonial-card--grid {
  margin: 0;
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 2px);
  padding-left: calc(var(--space-lg) + 4px);
  background: linear-gradient(145deg, var(--surface-2) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  position: relative;
}
.testimonial-card--grid::before {
  content: "“";
  position: absolute;
  top: var(--space);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.15);
  pointer-events: none;
}
.testimonial-card--featured::before {
  font-size: 4rem;
  color: rgba(201, 162, 39, 0.2);
}
.testimonial-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.95;
}
.testimonial-card--grid:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.testimonial-card--grid p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
  color: var(--muted);
}
.testimonial-card--grid.testimonial-card--featured p {
  font-size: 1.125rem;
  line-height: 1.7;
}
.testimonial-card--grid cite {
  display: block;
  font-size: 0.88rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.testimonial-card--grid cite::before {
  content: "— ";
}
.testimonial-card--grid.testimonial-card--featured {
  padding: var(--space-xl);
  padding-top: calc(var(--space-xl) + 2px);
  padding-left: calc(var(--space-xl) + 4px);
}
.testimonial-card--grid.testimonial-card--featured:hover {
  box-shadow: 0 28px 52px -26px rgba(0, 0, 0, 0.4);
}
@media (max-width: 700px) {
  .testimonial-grid--page {
    grid-template-columns: 1fr;
  }
}

/* Gallery — album picker + detail */
.gallery-index {
  padding: var(--space-2xl) 0;
  background: var(--surface);
}
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.gallery-album-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.gallery-album-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}
.gallery-album-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gallery-album-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}
.gallery-album-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-album-card:hover .gallery-album-card__media img {
  transform: scale(1.04);
}
.gallery-album-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--space) var(--space-lg) var(--space-lg);
}
.gallery-album-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
.gallery-album-card__meta {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.gallery-album-card__count {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.gallery-detail {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--bg);
}
.gallery-detail__back {
  margin-bottom: var(--space-xl);
}
.gallery-album-panel {
  padding-top: var(--space);
}
.gallery-albums-grid li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gallery-album__head {
  margin-bottom: var(--space-xl);
  max-width: 640px;
}
.gallery-album__head .block__title {
  margin-bottom: var(--space);
}
.gallery-album__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space);
}
.gallery-album__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.gallery-album__item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}
.gallery-album__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-album__video-wrap {
  margin-bottom: var(--space-xl);
  max-width: 960px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}
.gallery-album__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.gallery-album__video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}
@media (max-width: 768px) {
  .gallery-album__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-album__grid {
    grid-template-columns: 1fr;
  }
}

/* Strip divider */
.strip {
  height: 1px;
  margin: 0 var(--space-xl);
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, rgba(201, 162, 39, 0.3) 50%, var(--border) 80%, transparent 100%);
}

/* Blocks */
.block { padding: var(--space-xl) 0; position: relative; z-index: 1; }
.block--dark { background: var(--surface); }

/* Light bands: champagne / gold-accent (video, testimonials, stats, artists) */
.block.block--light {
  --light-ink: #141210;
  --light-muted: #4a4540;
  padding-block: var(--space-2xl);
  background:
    linear-gradient(165deg, rgba(201, 162, 39, 0.07) 0%, transparent 42%),
    linear-gradient(180deg, #e8e2d8 0%, #ddd5c9 40%, #d4cbbf 100%);
  color: var(--light-ink);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.block--light .block__tag {
  color: #6b5a24;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.block--light .block__tag::before {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #c9a227, rgba(201, 162, 39, 0.15));
}
.block--light .block__title {
  color: var(--light-ink);
  letter-spacing: -0.03em;
  font-weight: 400;
}
.block--light .block__title .highlight {
  background: linear-gradient(135deg, #b8942a 0%, #8a7218 50%, #6b5815 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block--light .block__lead,
.block--light .services__intro { color: var(--light-muted); }
.block__lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.block--testimonials .block__lead--center { margin-bottom: var(--space-xl); }
.block--light .video-section__item {
  background: linear-gradient(180deg, #faf8f4 0%, #f2efe8 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow:
    0 4px 0 rgba(201, 162, 39, 0.06),
    0 24px 48px -28px rgba(0, 0, 0, 0.35);
}
.block--light .video-section__item:hover {
  border-color: rgba(201, 162, 39, 0.4);
}
.block--light .stats__item {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 252, 245, 0.32) 45%,
    rgba(248, 244, 235, 0.22) 100%
  );
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(201, 162, 39, 0.08),
    0 10px 36px -16px rgba(0, 0, 0, 0.18);
}
.block--light .stats__item:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(255, 250, 240, 0.45) 100%
  );
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 44px -18px rgba(201, 162, 39, 0.28),
    0 8px 24px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.block--light .stats__num {
  color: #5c4815;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 20px rgba(255, 252, 245, 0.9);
}
.block--light .stats__label {
  color: #2a2622;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}
.block--light .celeb__card {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 16px 40px -22px rgba(0, 0, 0, 0.35);
}
.block--light .celeb__card:hover {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.35);
}

.block--cta {
  text-align: center;
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.block--cta .btn {
  margin-top: var(--space);
  display: inline-block;
}
.block--cta .cta-row .btn {
  margin-top: 0;
}
.wrap { width: var(--wrap); margin: 0 auto; padding: 0 var(--space-xl); }
.wrap--narrow { max-width: 580px; }
.wrap--wide { width: min(1400px, 96vw); }

.block__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.block__tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
}
.block__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.block__title .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block__lead { color: var(--muted); margin: 0; max-width: 520px; line-height: 1.7; }

/* About */
.block--about { position: relative; background: var(--surface); }
.about__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about__img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.about__img-deco {
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: 0;
}
.about__img-deco--1 {
  top: -12px;
  left: -12px;
  right: 24px;
  bottom: 24px;
}
.about__img-deco--2 {
  top: 24px;
  left: 24px;
  right: -12px;
  bottom: -12px;
  border-color: rgba(201, 162, 39, 0.25);
}
.about__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.about__body .block__title { margin-bottom: var(--space); }
.about__content { margin-bottom: var(--space-xl); }
.about__text {
  color: var(--muted);
  margin: 0 0 var(--space);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about__text--sub { margin-bottom: 0; color: var(--muted); font-size: 0.98rem; }
.about__list { margin: var(--space-lg) 0; padding-left: 1.25rem; color: var(--muted); list-style: none; }
.about__list li { position: relative; padding-left: 1rem; margin-bottom: 0.6rem; }
.about__list li::before { content: "✔"; position: absolute; left: -1.25rem; color: var(--gold); font-size: 0.85rem; }
.about__value { font-size: 1.05rem; font-weight: 500; color: var(--text); margin: var(--space-lg) 0 var(--space); }
.about__skills { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; list-style: none; padding: 0; margin: 0; font-size: 0.9rem; color: var(--muted); }
.about__skills li { padding: 0.25rem 0.6rem; background: var(--surface-2); border-radius: 999px; border: 1px solid var(--border); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space);
  margin: 0;
  padding: 0;
}
.stats__item {
  text-align: center;
  padding: var(--space-lg) var(--space);
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.stats__item:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stats__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Services */
.block--services { background: var(--surface); padding: var(--space-xl) 0; overflow: hidden; }
.services__head { margin-bottom: var(--space-xl); max-width: 560px; }
.services__intro { color: var(--muted); margin: 0; font-size: 1.05rem; line-height: 1.65; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.svc-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  isolation: isolate;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: var(--shadow-card), 0 0 35px -10px var(--gold-dim);
}
.svc-card__bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__bg { transform: scale(1.05); }
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}
.svc-card__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: var(--space-lg);
}
.svc-card__inner strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.svc-card:hover .svc-card__inner strong { color: var(--gold-light); }
.svc-card__inner em { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-style: normal; }

/* WhatsApp float - icon only */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: var(--space); right: var(--space); }
}
.instagram-float {
  position: fixed;
  bottom: calc(var(--space-lg) + 68px);
  right: var(--space-lg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(221, 42, 123, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.instagram-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(221, 42, 123, 0.45);
}
@media (max-width: 640px) {
  .instagram-float { width: 48px; height: 48px; right: var(--space); bottom: calc(var(--space) + 62px); }
}

/* Clients – Swiper */
.clients-swiper { margin: 0 -1rem; padding: 0.5rem 0; }
.clients-swiper .swiper-slide { height: auto; display: flex; align-items: center; justify-content: center; }
.clients__logo {
  width: 100%;
  max-width: 200px;
  height: 100px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--surface);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.clients__logo:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 24px -12px var(--gold-dim);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space);
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gallery__item:hover {
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow-card);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gallery__item:hover span { opacity: 1; transform: translateY(0); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* Artists / Celeb */
.block--artists .block__lead { margin-bottom: var(--space-xl); }
.celeb__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.celeb__card {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.celeb__card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.celeb__card-caption {
  width: 100%;
  padding: var(--space);
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.celeb__card:hover .celeb__card-caption { opacity: 1; transform: translateY(0); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.split__text p { color: var(--muted); margin: 0; line-height: 1.75; }

/* Certs */
.certs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.certs__item {
  position: relative;
  aspect-ratio: 4/3;
  padding: 10px ;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.certs__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.88) 0%, transparent 60%);
}
.certs__item span {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
.certs__item:hover { border-color: var(--gold-dim); transform: translateY(-2px); }

/* Testimonials slider */
.block--testimonials .wrap { text-align: center; }
.block--testimonials .block__lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.block--testimonials .block__tag {
  justify-content: center;
  width: 100%;
}
.block--testimonials .block__title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}
.block--testimonials .testimonial-slider { text-align: left; }
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 60px;
}
.testimonial-slider__track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-slider__slide {
  display: none;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testimonial-slider__slide--active { display: block; animation: slideIn 0.4s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.testimonial-card {
  margin: 0;
  position: relative;
  padding-left: var(--space-lg);
  border-left: 4px solid var(--gold);
}
.testimonial-card p { font-size: 1.1rem; line-height: 1.7; margin: 0 0 0.75rem; }
.testimonial-card cite { font-size: 0.9rem; color: var(--gold); font-style: normal; }
.testimonial-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  z-index: 2;
}
.testimonial-slider__btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.testimonial-slider__btn--prev { left: -56px; }
.testimonial-slider__btn--next { right: -56px; }
.testimonial-slider__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}
.testimonial-slider__dots .dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-slider__dots .dot--active { background: var(--gold); transform: scale(1.2); }
.block--light .testimonial-slider__slide {
  background: linear-gradient(165deg, #faf8f4 0%, #f0ebe3 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow:
    0 3px 0 rgba(201, 162, 39, 0.08),
    0 20px 50px -30px rgba(0, 0, 0, 0.4);
}
.block--light .testimonial-card {
  border-left-color: #a88620;
}
.block--light .testimonial-card p {
  color: #2c2824;
}
.block--light .testimonial-card cite {
  color: #5c4a1a;
  font-weight: 600;
}
.block--light .testimonial-slider__btn {
  background: linear-gradient(180deg, #faf8f4 0%, #ebe5dc 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #2c2824;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.2);
}
.block--light .testimonial-slider__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}
.block--light .testimonial-slider__dots .dot {
  background: rgba(44, 40, 36, 0.2);
}
.block--light .testimonial-slider__dots .dot--active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Video section */
.block--video { background: var(--surface); padding: var(--space-xl) 0; }
.block--video.block--light {
  background:
    linear-gradient(165deg, rgba(201, 162, 39, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #e8e2d8 0%, #ddd5c9 40%, #d4cbbf 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.block--video .block__lead { margin-bottom: var(--space-xl); }
.video-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.video-section__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
}
.video-section__video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  min-height: 320px;
  object-fit: cover;
}
.video-section__caption {
  display: block;
  padding: var(--space-lg);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-2);
  text-align: center;
}
.video-section__embed {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #000;
}
.video-section__actions {
  margin-top: var(--space-xl);
  text-align: center;
}
.video-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
/* Planning glimpse — highlighted end section */
.block--planning-glimpse {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201, 162, 39, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #1a1814 0%, var(--surface) 45%, var(--bg) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.block--planning-glimpse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.block--planning-glimpse .wrap {
  position: relative;
  z-index: 1;
}
.planning-glimpse {
  max-width: 1040px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(37, 37, 37, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 64px -32px rgba(0, 0, 0, 0.55),
    0 0 80px -40px rgba(201, 162, 39, 0.12);
}
.planning-glimpse__head {
  text-align: center;
  /* margin-bottom: var(--space-xl); */
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.planning-glimpse__ribbon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #9a7b1a 100%);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space);
  box-shadow: 0 4px 20px -6px rgba(201, 162, 39, 0.45);
}
.planning-glimpse__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 var(--space);
  letter-spacing: -0.02em;
  color: var(--text);
}
.planning-glimpse__title .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #a88620 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(201, 162, 39, 0.25));
}
.planning-glimpse__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}
.event-glimpse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.event-glimpse__item {
  position: relative;
  background: linear-gradient(165deg, rgba(42, 42, 42, 0.9) 0%, rgba(30, 30, 30, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  padding-top: calc(var(--space-xl) + 0.25rem);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.event-glimpse__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  opacity: 0.85;
}
.event-glimpse__item:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.5), 0 0 36px -12px rgba(201, 162, 39, 0.15);
  transform: translateY(-3px);
}
.event-glimpse__step {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.65rem;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.35) 0%, rgba(201, 162, 39, 0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}
.event-glimpse__item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
}
.event-glimpse__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.testimonial-video {
  border-left: 4px solid var(--gold);
  padding-left: var(--space-lg);
}
.testimonial-video__embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  background: #000;
}
.testimonial-video p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.testimonial-video-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}
.testimonial-video-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space);
}
.testimonial-video-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}
@media (max-width: 900px) {
  .video-section__grid { grid-template-columns: 1fr; max-width: 260px; margin-left: auto; margin-right: auto; }
  .video-section__video { min-height: 400px; }
  .video-page-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .event-glimpse { grid-template-columns: 1fr; }
  .planning-glimpse { padding: var(--space-lg) var(--space); }
  .testimonial-video-grid { grid-template-columns: 1fr; }
}

/* Instagram banner */
.block--instagram { background: var(--surface-2); padding: var(--space-xl) 0; }
.instagram-banner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-2xl);
  align-items: center;
}
.instagram-banner__content .block__tag { margin-bottom: 0.5rem; }
.instagram-banner__text {
  color: var(--muted);
  margin: 0 0 var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 360px;
}
.instagram-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space);
}
.instagram-banner__tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instagram-banner__tile:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .instagram-banner { grid-template-columns: 1fr; text-align: center; }
  .instagram-banner__text { margin-left: auto; margin-right: auto; }
  .instagram-banner__grid { grid-template-columns: repeat(3, 1fr); max-width: 400px; margin: 0 auto; }
}
@media (max-width: 500px) {
  .instagram-banner__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact__info p { color: var(--muted); margin: 0 0 var(--space-lg); line-height: 1.7; }
.contact__list { list-style: none; margin: 0 0 var(--space-lg); padding: 0; }
.contact__item { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.contact__item:last-child { margin-bottom: 0; }
.contact__icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: var(--gold-bg); color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.25); }
.contact__list a { color: var(--gold); text-decoration: none; }
.contact__list a:hover { text-decoration: underline; }
.contact__list .contact__item span:last-child { color: var(--muted); }
.contact__social { display: flex; gap: var(--space); align-items: center; }
.contact__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.contact__social-icon:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-bg); }
.contact__social-icon svg { flex-shrink: 0; }
.contact__form { display: flex; flex-direction: column; gap: var(--space); }
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-bg);
}
.contact__date-wrap {
  position: relative;
  display: block;
}
.contact__date-wrap .contact__date-input,
.contact__date-wrap .contact__date-input.flatpickr-alt-input {
  padding-right: 2.75rem;
  width: 100%;
  cursor: pointer;
}
.contact__date-wrap .contact__date-input.flatpickr-alt-input::placeholder,
.contact__date-wrap .contact__date-input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.contact__date-wrap .flatpickr-input:not(.flatpickr-alt-input) {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  border: none;
  pointer-events: none;
}
.contact__date-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__date-icon svg { display: block; }

/* Flatpickr — themed to match site (dark + gold) */
.flatpickr-calendar {
  background: #1e1e1e !important;
  border: 1px solid #333 !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(201, 162, 39, 0.12) !important;
  font-family: var(--font-body), system-ui, sans-serif !important;
  z-index: 120 !important;
}
.flatpickr-months {
  padding: 0.35rem 0.25rem 0.5rem !important;
  border-bottom: 1px solid #333 !important;
}
.flatpickr-months .flatpickr-month {
  background: transparent !important;
  color: #f0f0f0 !important;
  fill: #c9a227 !important;
}
.flatpickr-current-month {
  padding: 0.35rem 0 0 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #252525 !important;
  color: #f0f0f0 !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 0.2rem 0.35rem !important;
}
.flatpickr-current-month .numInputWrapper {
  width: 5.5ch !important;
}
.flatpickr-current-month .numInputWrapper input.cur-year {
  color: #f0f0f0 !important;
  font-weight: 600 !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #ddb83a !important;
}
.flatpickr-weekdays {
  background: #1e1e1e !important;
}
.flatpickr-weekday {
  color: #9a9a9a !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}
.flatpickr-days {
  border-color: #333 !important;
}
.dayContainer {
  padding: 0.35rem 0.5rem 0.65rem !important;
}
.flatpickr-day {
  color: #e8e8e8 !important;
  border-radius: 9px !important;
  border: none !important;
  margin: 2px !important;
  max-width: calc((100% / 7) - 4px) !important;
  line-height: 2.25rem !important;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(201, 162, 39, 0.18) !important;
  color: #fff !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #c9a227 !important;
  color: #161616 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.4) !important;
}
.flatpickr-day.today {
  border: 1px solid rgba(201, 162, 39, 0.55) !important;
  color: #ddb83a !important;
}
.flatpickr-day.today.selected {
  border-color: transparent !important;
  color: #161616 !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #555 !important;
}
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: transparent !important;
}

/* Footer */
.footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  display: inline-block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer__logo img {
  height: 80px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.footer__logo:hover img { filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg); opacity: 0.95; }
.footer__tagline { margin: 0; font-size: 0.9rem; color: var(--muted); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }
.footer__contact span { color: var(--muted); font-size: 0.9rem; }
.footer__contact-item { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__contact-icon { flex-shrink: 0; color: var(--gold); opacity: 0.9; }
.contact__list li { margin-bottom: 0.35rem; }
.contact__list li:not(:has(a)) { color: var(--muted); }
.footer__social {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer__social-icon:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-bg); }
.footer__social-icon svg { flex-shrink: 0; }
.footer__bottom p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.footer__version-link { color: var(--gold); text-decoration: none; margin-left: 0.5rem; }
.footer__version-link:hover { text-decoration: underline; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: none; }
  .hero__intro { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .hero--photo .hero__visual { display: flex; order: 2; align-items: center; justify-content: center; min-height: 420px; }
  .hero--photo .hero__visual--photo { display: flex; justify-content: center; }
  .hero--photo .hero__photo-wrap { width: min(340px, 88vw); }
  .hero--photo .hero__photo-circle { width: min(300px, 80vw); max-height: 55vh; }
  .hero--photo .hero__content { order: 1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img { max-width: 420px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slider { padding: 0 50px; }
  .testimonial-slider__btn--prev { left: 8px; }
  .testimonial-slider__btn--next { right: 8px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}
/* Sidebar (mobile) - outside header so fixed is viewport-relative */
.nav--sidebar {
  display: none;
}

@media (max-width: 900px) {
  .header {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.75rem;
  }
  .header__inner {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-right: 0;
  }
  .header .nav { display: none !important; }
  .logo { overflow: hidden; flex-shrink: 0; max-width: 100%; }
  .logo__mark { width: 36px; height: 34px; border-radius: 10px; }
  .logo__mic { width: 18px; height: 18px; }
  .logo__name { font-size: clamp(1.05rem, 3.5vw, 1.25rem); letter-spacing: 0.03em; }
  .menu-btn { display: flex !important; flex-shrink: 0; }
  .menu-btn.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-btn.is-active span:nth-child(2) { opacity: 0; }
  .menu-btn.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav--sidebar {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 280px;
    max-width: 100vw;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    padding-top: max(calc(56px + env(safe-area-inset-top)), 5rem);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: 1.5rem;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 48px rgba(0,0,0,0.35);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
  .nav--sidebar.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav--sidebar a {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem 1rem 0;
    min-height: 48px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, background 0.2s;
  }
  .nav--sidebar a:hover { color: var(--gold); background: var(--gold-bg); }
  .nav--sidebar a:last-of-type { border-bottom: none; }
  .nav--sidebar .nav__cta {
    margin-top: 1rem;
    justify-content: center;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8962e 100%);
    color: var(--bg);
    border: none;
  }
  .nav--sidebar .nav__cta:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); }
  body.page--red .nav--sidebar {
    background: #fff;
    border-left-color: rgba(0,0,0,0.08);
    box-shadow: -16px 0 48px rgba(0,0,0,0.2);
  }
  body.page--red .nav--sidebar a {
    color: #1a1a1a;
    border-bottom-color: rgba(0,0,0,0.06);
  }
  body.page--red .nav--sidebar a:hover { color: var(--red); background: var(--red-bg); }
  body.page--red .nav--sidebar .nav__cta {
    background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
    color: #fff;
  }
  body.page--red .nav--sidebar .nav__cta:hover { background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%); }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .testimonials { grid-template-columns: 1fr; }
  .certs { grid-template-columns: 1fr; }
  .celeb__grid { grid-template-columns: 1fr; }
}
/* Full white + #FD3236 theme – proper spacing, no overlap */
body.page--red {
  background: linear-gradient(180deg, #fefefe 0%, #f8f7f7 25%, #fff 50%, #fafafa 75%, #f5f4f4 100%);
  color: #1a1a1a;
}
body.page--red .page-bg--red {
  background:
    radial-gradient(ellipse 120% 60% at 80% -10%, rgba(253, 50, 54, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 80% 80% at 20% 100%, rgba(253, 50, 54, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(253, 50, 54, 0.04) 0%, transparent 55%);
}
body.page--red .block {
  background: transparent;
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: visible;
}
body.page--red .block.block--light {
  --light-ink: #141210;
  --light-muted: #4a4540;
  padding-block: var(--space-2xl);
  background:
    linear-gradient(165deg, rgba(253, 50, 54, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, #e8e4e2 0%, #ddd9d7 40%, #d4d0ce 100%);
  color: var(--light-ink);
  border-top: 1px solid rgba(253, 50, 54, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
body.page--red .block.block--light .block__title {
  color: var(--light-ink);
  text-shadow: none;
}
body.page--red .block.block--light .block__title .highlight {
  background: linear-gradient(135deg, #c42a2e 0%, #9a2226 50%, #6b181a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page--red .block.block--light .block__tag {
  color: #7a2a2d;
  padding-bottom: 0;
}
body.page--red .block.block--light .block__tag::after {
  display: none;
}
body.page--red .block.block--light .block__tag::before {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(253, 50, 54, 0.2));
}
body.page--red .block.block--light .block__lead,
body.page--red .block.block--light .services__intro {
  color: var(--light-muted);
}
body.page--red .block--video.block--light {
  background:
    linear-gradient(165deg, rgba(253, 50, 54, 0.07) 0%, transparent 45%),
    linear-gradient(180deg, #e8e4e2 0%, #ddd9d7 40%, #d4d0ce 100%);
  border-top: 1px solid rgba(253, 50, 54, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
body.page--red .block--about { padding: var(--space-2xl) 0; }
body.page--red .block--services,
body.page--red .block--video:not(.block--light) {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, rgba(253,50,54,0.02) 0%, #fafafa 30%, #f5f5f5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: visible;
}
body.page--red .block--dark,
body.page--red .block--artists:not(.block--light) {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, #f2f2f2 0%, #ebebeb 100%);
  box-shadow: 0 -1px 0 rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
}
body.page--red .block--instagram {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  position: relative;
}
body.page--red .block--instagram::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,50,54,0.2), transparent);
  opacity: 0.6;
}
body.page--red .block--cta {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(253,50,54,0.06) 0%, rgba(253,50,54,0.02) 50%, transparent 100%);
  box-shadow: inset 0 0 0 1px rgba(253,50,54,0.08);
}
body.page--red #contact.block { padding: var(--space-2xl) 0; }
body.page--red .footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -4px 24px -8px rgba(0,0,0,0.06);
}
body.page--red .block__tag {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}
body.page--red .block__tag::before { display: none; }
body.page--red .block__tag::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}
body.page--red .block__title {
  color: #1a1a1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
}
body.page--red .block__lead,
body.page--red .contact__info p,
body.page--red p { color: #555; }
body.page--red .about__text,
body.page--red .about__list { color: #444; }
body.page--red .about__value { color: #1a1a1a; font-weight: 600; }
body.page--red .about__skills li {
  background: linear-gradient(135deg, rgba(253,50,54,0.08) 0%, rgba(253,50,54,0.04) 100%);
  border: 1px solid rgba(253,50,54,0.15);
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
body.page--red .about__grid { gap: var(--space-2xl); }
body.page--red .about__img-wrap {
  box-shadow: 0 20px 60px -20px rgba(253,50,54,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
body.page--red #stats-section:not(.block--light) .wrap {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 16px;
  padding: var(--space-xl);
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
}
body.page--red #stats-section.block--light .wrap {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
body.page--red #stats-section .stats {
  gap: var(--space-lg);
  margin: 0;
}
body.page--red #stats-section:not(.block--light) .stats__item {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(253,50,54,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page--red #stats-section:not(.block--light) .stats__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(253,50,54,0.2);
}
body.page--red #stats-section:not(.block--light) .stats__num { color: var(--red); font-weight: 700; }
body.page--red #stats-section:not(.block--light) .stats__label { color: #666; font-size: 0.9rem; }
body.page--red .block--light .stats__item {
  padding: var(--space-lg) var(--space);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 252, 245, 0.32) 45%,
    rgba(248, 244, 235, 0.22) 100%
  );
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(253, 50, 54, 0.1),
    0 10px 36px -16px rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
body.page--red .block--light .stats__item:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(255, 250, 240, 0.45) 100%
  );
  border-color: rgba(253, 50, 54, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 16px 44px -18px rgba(253, 50, 54, 0.22),
    0 8px 24px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
body.page--red .block--light .stats__num {
  color: #7a2226;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 252, 245, 0.85);
}
body.page--red .block--light .stats__label {
  color: #2a2622;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}
body.page--red .svc-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body.page--red .svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}
body.page--red .services__grid { gap: var(--space-lg); }
body.page--red .svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(253,50,54,0.2);
  box-shadow: 0 12px 32px -12px rgba(253,50,54,0.2), 0 0 0 1px rgba(253,50,54,0.08);
}
body.page--red .svc-card:hover::before { opacity: 1; }
body.page--red .gallery { gap: var(--space-lg); }
body.page--red .gallery__item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.page--red .gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -12px rgba(253,50,54,0.12), 0 0 0 1px rgba(253,50,54,0.06);
}
body.page--red .celeb__grid { gap: var(--space-lg); }
body.page--red .celeb__card {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.page--red .celeb__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(253,50,54,0.08);
}
body.page--red .certs { gap: var(--space-lg); }
body.page--red .certs__item {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.page--red .certs__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(253,50,54,0.1);
}
body.page--red .contact__icon {
  background: linear-gradient(135deg, rgba(253,50,54,0.1) 0%, rgba(253,50,54,0.05) 100%);
  border: 1px solid rgba(253,50,54,0.2);
  box-shadow: 0 2px 8px -2px rgba(253,50,54,0.15);
}
body.page--red .contact__grid {
  gap: var(--space-2xl);
  align-items: start;
}
body.page--red .contact__form {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: var(--space-xl);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
body.page--red .contact__form input,
body.page--red .contact__form select,
body.page--red .contact__form textarea {
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #1a1a1a;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.page--red .contact__form input:focus,
body.page--red .contact__form select:focus,
body.page--red .contact__form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(253,50,54,0.12);
  outline: none;
}
body.page--red .contact__date-icon { color: #1a1a1a; }
body.page--red .contact__date-wrap .contact__date-input.flatpickr-alt-input::placeholder,
body.page--red .contact__date-wrap .contact__date-input::placeholder {
  color: #888;
  opacity: 1;
}
body.page--red .contact__form-label,
body.page--red .contact__form-hint {
  color: #555;
}
body.page--red .contact__form-hint {
  opacity: 0.95;
}
body.page--red .contact__form-field-error { color: #b42318; }
body.page--red .contact__form-field--invalid input,
body.page--red .contact__form-field--invalid select,
body.page--red .contact__form-field--invalid textarea,
body.page--red .contact__form-field--invalid .contact__date-wrap input {
  border-color: #c42b2b !important;
}
body.page--red .footer__inner {
  border-bottom-color: rgba(0,0,0,0.08);
  padding-bottom: var(--space-xl);
  margin-bottom: 0;
}
body.page--red .footer__bottom { padding-top: var(--space-lg); }
body.page--red .footer__tagline,
body.page--red .footer__nav a,
body.page--red .footer__contact span,
body.page--red .footer__bottom p { color: #666; }
body.page--red .header {
  background: #fff;
  border-bottom-color: rgba(0,0,0,0.08);
}
body.page--red .nav a { color: #1a1a1a; }
body.page--red .menu-btn span { background: #1a1a1a; }
body.page--red .logo { color: #1a1a1a; }
body.page--red .logo:hover .logo__name {
  background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page--red .logo:hover .logo__mark {
  background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
  box-shadow: 0 0 12px rgba(253, 50, 54, 0.25), 0 0 22px rgba(253, 50, 54, 0.2);
}
body.page--red .clients-swiper { margin: 0 -1rem; padding: 0.5rem 0; }
body.page--red .clients__logo {
  background-color: #fff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.page--red .clients__logo:hover {
  transform: translateY(-2px);
  border-color: rgba(253,50,54,0.2);
  box-shadow: 0 10px 24px -10px rgba(253,50,54,0.18);
}
body.page--red .whatsapp-float {
  background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(253,50,54,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page--red .whatsapp-float:hover {
  background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 32px -8px rgba(253,50,54,0.5);
}
body.page--red .footer__social-icon {
  color: #666;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page--red .footer__social-icon:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(253,50,54,0.25);
}
body.page--red .video-section__grid { gap: var(--space-xl); }
body.page--red .block--video:not(.block--light) .video-section__item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.page--red .block--video:not(.block--light) .video-section__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(253,50,54,0.1);
}
body.page--red .block--video.block--light .video-section__item {
  border: 1px solid rgba(253, 50, 54, 0.2);
  box-shadow:
    0 4px 0 rgba(253, 50, 54, 0.05),
    0 24px 48px -28px rgba(0, 0, 0, 0.35);
}
body.page--red .block--video.block--light .video-section__item:hover {
  border-color: rgba(253, 50, 54, 0.38);
}
body.page--red .instagram-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px -16px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 0;
}

body.page--red .highlight { color: var(--red); }
body.page--red .btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%);
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(253,50,54,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.page--red .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -8px rgba(253,50,54,0.5);
}
body.page--red .btn--ghost { border-color: var(--red); color: var(--red); }
body.page--red .btn--ghost:hover { background: var(--red-bg); color: var(--red); }
body.page--red .nav a:hover { color: var(--red); background: var(--red-bg); }
body.page--red .nav__cta { background: linear-gradient(135deg, var(--red) 0%, #e02a2e 100%); color: #fff !important; }
body.page--red .nav__cta:hover { background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%); color: #fff !important; }
body.page--red .footer__version-link,
body.page--red .contact__list a,
body.page--red .footer__nav a:hover,
body.page--red .footer__contact a:hover { color: var(--red); }
body.page--red .contact__icon,
body.page--red .footer__contact-icon { color: var(--red); }
body.page--red .strip {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.06) 15%, rgba(253,50,54,0.4) 50%, rgba(0,0,0,0.06) 85%, transparent 100%);
  margin: var(--space-xl) auto;
  max-width: 200px;
  border-radius: 2px;
  opacity: 0.9;
}
body.page--red .instagram-banner__text { color: #555; }
body.page--red .celeb__card-caption { color: rgba(255,255,255,0.9); }
body.page--red .testimonial-slider__quote { color: #444; }
@media (max-width: 480px) {
  .header { padding-left: 0.75rem; padding-right: 0.75rem; }
  .header__inner { padding-left: 0.35rem; padding-right: 0.35rem; }
  .logo__name { font-size: 1rem; letter-spacing: 0.02em; }
  .logo__mark { width: 34px; height: 32px; border-radius: 9px; }
  .logo__mic { width: 17px; height: 17px; }
  .nav { width: min(260px, calc(100vw - 32px)); padding-left: var(--space-lg); }
  .stats { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__nav, .footer__contact { align-items: center; }
  .footer__social { justify-content: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero { padding-left: var(--space); padding-right: var(--space); }
  .wrap { padding-left: var(--space); padding-right: var(--space); }
}

@media (max-width: 360px) {
  .nav { width: 100%; max-width: none; }
  .hero__title { font-size: 1.75rem; }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding-top: 5rem; padding-bottom: 3rem; }
  .hero--color { min-height: auto; padding-top: 5rem; padding-bottom: 3rem; }
}

@media (orientation: portrait) and (max-width: 768px) {
  .hero__inner { padding-top: 1rem; }
}

html { overflow-x: hidden; }
body { min-height: 100vh; min-height: 100dvh; }
img, video { max-width: 100%; height: auto; }

.contact__form-notice { margin: 0 0 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.9rem; }
.contact__form-notice--success { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--gold-dim); }
.contact__form-notice--errors { background: rgba(180, 40, 40, 0.15); color: #f0a0a0; border: 1px solid rgba(180, 40, 40, 0.35); margin: 0 0 1rem; padding: 0.75rem 1rem 0.75rem 1.5rem; }
.contact__form-notice--errors li { margin: 0.25rem 0; }

.contact__form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.contact__form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.contact__form-hint {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
  opacity: 0.92;
}
.contact__form-field-error {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #e8a0a0;
}
.contact__form-field--invalid input,
.contact__form-field--invalid select,
.contact__form-field--invalid textarea,
.contact__form-field--invalid .contact__date-wrap input {
  border-color: rgba(220, 100, 100, 0.85) !important;
}
