: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;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo__img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.logo:hover .logo__img {
  opacity: 0.9;
  transform: scale(1.02);
}

.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 a[aria-current="page"] {
  color: var(--gold);
  background: var(--gold-bg);
  font-weight: 600;
}
.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);
}
.nav__cta[aria-current="page"] {
  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: var(--space) var(--space-xl);
  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); }
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;
}
/* iframe (YouTube) can't use object-fit; scale to cover while keeping 16:9 */
iframe.hero__video {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.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; }

/* Video hero: center content horizontally, anchor to bottom */
.hero--video { align-items: flex-end; }
.hero--video .hero__inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hero--video .hero__content { max-width: 720px; text-align: center; }
.hero--video .hero__label { justify-content: center; }
.hero--video .hero__actions { justify-content: center; }
.hero--video .hero__visual { display: none; }

.hero__visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--photo { padding: var(--space) var(--space-xl); }
.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) 0;
  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; }
.portfolio-case__cta {
  margin-top: var(--space-lg);
}
.portfolio-detail {
  padding: var(--space) 0;
  background: var(--bg);
}
.portfolio-detail__back {
  margin-bottom: var(--space-xl);
}
.portfolio-detail-panel {
  padding-top: var(--space);
}
.portfolio-detail__head {
  margin-bottom: var(--space-xl);
  max-width: 640px;
}
.portfolio-detail__head .block__title {
  margin-bottom: var(--space);
}
.portfolio-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.portfolio-event-list__item {
  margin: 0;
  padding: 0;
}
.portfolio-event-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: stretch;
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.portfolio-event-card__body--full {
  width: 100%;
}
.portfolio-event-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  width: 100%;
}
.portfolio-event-card__media-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.portfolio-event-card__media-item--video {
  cursor: pointer;
}
.portfolio-event-card__media-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.portfolio-event-card__media-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}
.portfolio-event-card__media-item img,
.portfolio-event-card__media-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.portfolio-event-card__video {
  background: #000;
}
.portfolio-event-card__media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--space);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  pointer-events: none;
}
.portfolio-event-card__media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transition: background 0.25s ease;
}
.portfolio-event-card__media-play::after {
  content: '';
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 55% center;
  background-size: 1.1rem;
}
.portfolio-event-card__media-item:hover .portfolio-event-card__media-play {
  background: rgba(0, 0, 0, 0.45);
}
.portfolio-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.portfolio-lightbox__video {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  background: #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.portfolio-lightbox__embed {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: calc(100vh - 6rem);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.portfolio-event-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}
.portfolio-event-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .portfolio-event-card__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .portfolio-event-card__gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .portfolio-event-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .portfolio-case {
    grid-template-columns: 1fr;
  }
}

/* Testimonials — card grid (dark) */
.block--testimonial-page {
  padding: var(--space) 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) 0;
  background: var(--surface);
}

.gallery-index__empty {
  text-align: center;
  color: var(--muted);
}
.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) 0;
  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;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  cursor: zoom-in;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.gallery-album__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.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;
  pointer-events: none;
}
@media (max-width: 768px) {
  .gallery-album__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-album__grid {
    grid-template-columns: 1fr;
  }
}

body.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(var(--space-lg), env(safe-area-inset-top)) max(var(--space-lg), env(safe-area-inset-right)) max(var(--space-lg), env(safe-area-inset-bottom)) max(var(--space-lg), env(safe-area-inset-left));
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 6rem);
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.gallery-lightbox__close {
  position: absolute;
  top: max(var(--space), env(safe-area-inset-top));
  right: max(var(--space), env(safe-area-inset-right));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.85);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.85);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gallery-lightbox__nav[hidden] {
  display: none;
}
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}
.gallery-lightbox__nav--prev {
  left: max(var(--space), env(safe-area-inset-left));
}
.gallery-lightbox__nav--next {
  right: max(var(--space), env(safe-area-inset-right));
}
.gallery-lightbox__counter {
  position: absolute;
  bottom: max(var(--space), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* 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) 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);
  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) 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: 100%; max-width: 1160px; 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 — cinematic portrait + content */
.about-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  z-index: 1;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(201, 162, 39, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  pointer-events: none;
}
.about-hero__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.about-hero__eyebrow::before,
.about-hero__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.about-hero__eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}
.about-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;
}
.about-hero__intro {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  font-size: 1.05rem;
}
.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.about-hero__meta span {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 999px;
  background: var(--gold-bg);
}

.block--about {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 8% 40%, rgba(201, 162, 39, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 92% 70%, rgba(201, 162, 39, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #121212 0%, var(--bg) 45%, #1a1a1a 100%);
  color: var(--text);
  overflow: hidden;
}
.block--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}
.block--about::after {
  content: "";
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: -10%;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.12);
  box-shadow: inset 0 0 80px rgba(201, 162, 39, 0.04);
  pointer-events: none;
}
.about-blocks {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.about-block + .about-block {
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
  gap: clamp(2.25rem, 5.5vw, 4.5rem);
  align-items: center;
}
.about-story--alt { direction: rtl; }
.about-story--alt > * { direction: ltr; }

.about-story__media {
  position: relative;
  isolation: isolate;
}
.about-story__frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  padding: 0.35rem;
}
.about-story__orbit {
  position: absolute;
  width: 140%;
  height: 70%;
  left: -20%;
  top: 15%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.22);
  transform: rotate(-18deg);
  z-index: 0;
  pointer-events: none;
  animation: about-orbit-spin 28s linear infinite;
}
@keyframes about-orbit-spin {
  to { transform: rotate(342deg); }
}
.about-story__blade {
  position: absolute;
  z-index: 0;
  inset: 12% -18% -8% 22%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.22) 0%, rgba(201, 162, 39, 0.02) 55%, transparent 100%);
  transform: rotate(4deg);
  filter: blur(2px);
  pointer-events: none;
}
.about-story__glow {
  position: absolute;
  inset: 10% -10% -12% 6%;
  border-radius: 40px;
  background: radial-gradient(ellipse at 40% 40%, rgba(201, 162, 39, 0.45), rgba(201, 162, 39, 0.05) 55%, transparent 70%);
  filter: blur(36px);
  opacity: 0.85;
  z-index: 0;
  animation: about-glow-pulse 5.5s ease-in-out infinite;
}
@keyframes about-glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.04); }
}
.about-story__ring {
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(221, 184, 58, 0.65), rgba(201, 162, 39, 0.05) 40%, transparent 60%, rgba(201, 162, 39, 0.35));
  padding: 1px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}
.about-story__corner {
  position: absolute;
  width: 42px;
  height: 42px;
  z-index: 3;
  pointer-events: none;
}
.about-story__corner--tl {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
  border-radius: 10px 0 0 0;
}
.about-story__corner--br {
  right: 6px;
  bottom: 6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 10px 0;
}
.about-story__photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(201, 162, 39, 0.12);
  overflow: hidden;
  transform: translateZ(0);
}
.about-story__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(45deg, rgba(201, 162, 39, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.about-story__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: about-shine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes about-shine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.about-story__badge {
  position: absolute;
  z-index: 4;
  right: -0.85rem;
  bottom: 1.75rem;
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.2rem;
  background:
    linear-gradient(145deg, rgba(30, 30, 30, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 16px;
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(201, 162, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 114px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-story__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-story__badge-label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-story__body {
  min-width: 0;
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(37, 37, 37, 0.55) 0%, rgba(22, 22, 22, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-story__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
  pointer-events: none;
}
.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}
.about-story__eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}
.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.about-story__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;
}
.about-story__content { margin-bottom: 0; }
.about-story__content ul,
.about-story__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text);
}
.about-story__content li { margin-bottom: 0.45rem; line-height: 1.55; }
.about__content { margin-bottom: 0; }
.about__content p,
.about__content li,
.about__content ul,
.about__content ol,
.about__content div:not([class]) {
  color: var(--text);
}
.about__text {
  color: rgba(240, 240, 240, 0.88);
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about__text--sub { margin-bottom: 0; color: var(--text); font-size: 0.98rem; opacity: 0.85; }
.about__list {
  margin: 1.15rem 0 1.35rem;
  padding: 0;
  color: var(--text);
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.about__list li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  margin: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.about__list li:hover {
  border-color: rgba(201, 162, 39, 0.28);
  background: rgba(201, 162, 39, 0.05);
}
.about__list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.45);
}
.about__list li strong {
  color: var(--gold-light);
  font-weight: 600;
}
.about__value {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
  margin: 1.35rem 0 1.15rem;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.02) 100%);
  line-height: 1.45;
}
.about__value .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text);
}
.about__skills li {
  padding: 0.45rem 0.9rem;
  background: rgba(18, 18, 18, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.about__skills li:hover {
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.15);
}

.block--about-stats {
  position: relative;
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.about-stats__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.about-stats__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.about-stats__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text);
}

.block--about-cta {
  background: var(--bg);
}
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: var(--shadow-card);
}
.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.about-cta__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;
}
.about-cta__lead {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
}
.about-cta__btn { flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .about-story__orbit,
  .about-story__glow,
  .about-story__photo::after {
    animation: none;
  }
}
.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) 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;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.celeb__card-caption strong { display: block; font-weight: 600; }
.celeb__card-caption em {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  font-style: normal;
  opacity: 0.9;
  line-height: 1.4;
}
.celeb__card:hover .celeb__card-caption { opacity: 1; transform: translateY(0); }
.celeb__grid--collapsible:not(.celeb__grid--expanded) .celeb__card--more { display: none; }
.celeb__actions {
  margin-top: var(--space-xl);
  text-align: center;
}
.celeb__actions [data-celeb-collapse] { display: none; }
.celeb__actions--expanded [data-celeb-expand] { display: none; }
.celeb__actions--expanded [data-celeb-collapse] { display: inline-block; }

/* 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,
.certs__item small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}
.certs__item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
.certs__item small {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}
.certs__item:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.certs--collapsible:not(.certs--expanded) .certs__item--more { display: none; }
.certs__actions {
  margin-top: var(--space-xl);
  text-align: center;
}
.certs__actions [data-certs-collapse] { display: none; }
.certs__actions--expanded [data-certs-expand] { display: none; }
.certs__actions--expanded [data-certs-collapse] { display: inline-block; }

/* 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-card__photo {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 1;
}
.testimonial-card--with-image.testimonial-card--grid .testimonial-card__photo {
  max-width: 100%;
  margin-bottom: 0.85rem;
}
.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) 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) 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) 0; }
.instagram-banner {
  display: block;
  text-align: center;
}
.instagram-banner__content .block__tag { margin-bottom: 0.5rem; }
.instagram-banner__text {
  color: var(--muted);
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 480px;
}
.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) 0;
  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: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer__logo:hover img { opacity: 0.9; transform: scale(1.02); }
.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__powered { margin-top: 0.35rem; font-size: 0.8rem; color: var(--muted); }
.footer__powered a { color: var(--gold); text-decoration: none; }
.footer__powered a: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-story { grid-template-columns: 1fr; gap: 2rem; }
  .about-story--alt { direction: ltr; }
  .about-story__frame { max-width: 360px; }
  .about-story__orbit { display: none; }
  .about-story__badge { right: 0.75rem; bottom: 1rem; }
  .about-story__body { padding: 1.15rem; }
  .about-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .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__slide { padding: var(--space-lg) var(--space-lg); }
  .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__img { height: 34px; max-width: min(180px, 52vw); }
  .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.125rem;
    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[aria-current="page"] {
    color: var(--gold);
    background: var(--gold-bg);
    font-weight: 600;
  }
  .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%); }
  .nav--sidebar .nav__cta[aria-current="page"] {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: var(--shadow-gold);
  }
  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 a[aria-current="page"] {
    color: var(--red);
    background: var(--red-bg);
    font-weight: 600;
  }
  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%); }
  body.page--red .nav--sidebar .nav__cta[aria-current="page"] {
    background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
    box-shadow: 0 4px 16px -4px rgba(253,50,54,0.4);
  }

  .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) 0;
  overflow: visible;
}
body.page--red .block.block--light {
  --light-ink: #141210;
  --light-muted: #4a4540;
  padding-block: var(--space);
  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) 0; }
body.page--red .block--services,
body.page--red .block--video:not(.block--light) {
  padding: var(--space) 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) 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) 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) 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) 0; }
body.page--red .footer {
  padding: var(--space) 0;
  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-hero__bg {
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(253, 50, 54, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(253, 50, 54, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}
body.page--red .about-hero {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
body.page--red .about-hero__title,
body.page--red .about-story__title,
body.page--red .about-stats__title,
body.page--red .about-cta__title,
body.page--red .about__value { color: #1a1a1a; }
body.page--red .about-hero__eyebrow,
body.page--red .about-story__eyebrow,
body.page--red .about-stats__tag { color: var(--red); }
body.page--red .about-hero__title .highlight,
body.page--red .about-story__title .highlight,
body.page--red .about-cta__title .highlight,
body.page--red .about__value .highlight {
  background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page--red .about-hero__meta span {
  color: var(--red);
  border-color: rgba(253, 50, 54, 0.25);
  background: var(--red-bg);
}
body.page--red .about-hero__intro,
body.page--red .about-cta__lead { color: #555; }
body.page--red .about__text,
body.page--red .about__list { color: #444; }
body.page--red .about__list li {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px -10px rgba(0, 0, 0, 0.2);
}
body.page--red .about__list li:hover {
  border-color: rgba(253, 50, 54, 0.28);
  background: rgba(253, 50, 54, 0.04);
}
body.page--red .about__list li::before {
  background: linear-gradient(135deg, #ff4448, var(--red));
  box-shadow: 0 0 10px rgba(253, 50, 54, 0.35);
}
body.page--red .about__list li strong { color: var(--red); }
body.page--red .about__value {
  border-left-color: var(--red);
  background: linear-gradient(90deg, rgba(253, 50, 54, 0.08) 0%, rgba(253, 50, 54, 0.02) 100%);
}
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__skills li:hover {
  border-color: rgba(253, 50, 54, 0.4);
  color: var(--red);
  box-shadow: 0 0 16px rgba(253, 50, 54, 0.12);
}
body.page--red .about-story { gap: var(--space-2xl); }
body.page--red .about-story__orbit { border-color: rgba(253, 50, 54, 0.22); }
body.page--red .about-story__blade {
  background: linear-gradient(135deg, rgba(253, 50, 54, 0.18) 0%, rgba(253, 50, 54, 0.02) 55%, transparent 100%);
}
body.page--red .about-story__glow {
  background: radial-gradient(ellipse at 40% 40%, rgba(253, 50, 54, 0.35), rgba(253, 50, 54, 0.05) 55%, transparent 70%);
}
body.page--red .about-story__ring {
  background: linear-gradient(145deg, rgba(255, 68, 72, 0.55), rgba(253, 50, 54, 0.05) 40%, transparent 60%, rgba(253, 50, 54, 0.3));
}
body.page--red .about-story__corner--tl,
body.page--red .about-story__corner--br {
  border-color: var(--red);
}
body.page--red .about-story__badge {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(253, 50, 54, 0.35);
  box-shadow: 0 16px 40px -16px rgba(253, 50, 54, 0.25);
}
body.page--red .about-story__badge-num {
  background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.page--red .about-story__badge-label { color: #777; }
body.page--red .about-story__body {
  background: linear-gradient(160deg, #fff 0%, #fafafa 100%);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.18);
}
body.page--red .about-story__body::before {
  background: linear-gradient(90deg, transparent, rgba(253, 50, 54, 0.4), transparent);
}
body.page--red .about-story__eyebrow::before {
  background: linear-gradient(90deg, #ff4448, var(--red));
  box-shadow: 0 0 10px rgba(253, 50, 54, 0.4);
}
body.page--red .block--about {
  background:
    radial-gradient(ellipse 55% 70% at 8% 40%, rgba(253, 50, 54, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 92% 70%, rgba(253, 50, 54, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}
body.page--red .block--about::before {
  background-image:
    linear-gradient(rgba(253, 50, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 50, 54, 0.035) 1px, transparent 1px);
}
body.page--red .block--about::after {
  border-color: rgba(253, 50, 54, 0.12);
  box-shadow: inset 0 0 80px rgba(253, 50, 54, 0.03);
}
body.page--red .block--about-stats {
  background: #fff;
  border-block-color: rgba(0, 0, 0, 0.06);
}
body.page--red .about-cta {
  border-color: rgba(253, 50, 54, 0.25);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(253, 50, 54, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.15);
}
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__captcha-char {
  color: #2563eb;
  text-shadow: none;
}
body.page--red .contact__captcha-canvas {
  background: linear-gradient(180deg, #eef2ff 0%, #e2e8f0 100%);
  border-color: rgba(37, 99, 235, 0.18);
}
body.page--red .contact__captcha-refresh {
  border-color: rgba(37, 99, 235, 0.35);
  background: #fff;
  color: #2563eb;
}
body.page--red .contact__captcha-refresh:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.55);
}
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 .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 a[aria-current="page"] {
  color: var(--red);
  background: var(--red-bg);
  font-weight: 600;
}
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 .nav__cta[aria-current="page"] {
  background: linear-gradient(135deg, #ff4448 0%, var(--red) 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px -4px rgba(253,50,54,0.4);
}
body.page--red .footer__powered a,
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__img { height: 30px; max-width: min(160px, 50vw); }
  .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); }
  .inner-hero { padding: var(--space) 0; }
  .inner-hero__intro { font-size: 1.125rem; }
  .about-hero { padding: 2rem 0 1.5rem; }
  .about-story__badge { min-width: 96px; padding: 0.7rem 0.85rem; }
  .about-story__badge-num { font-size: 1.65rem; }
  .testimonial-slider { padding: 0 42px; }
  .testimonial-slider__slide { padding: var(--space-md, 1.25rem) var(--space, 1rem); }
  .testimonial-card { padding-left: 0.85rem; border-left-width: 3px; }
  .testimonial-card p { font-size: 1.125rem; }
  .testimonial-card cite { font-size: 1rem; }
  .testimonial-slider__btn { width: 38px; height: 38px; }
  .testimonial-slider__btn--prev { left: 2px; }
  .testimonial-slider__btn--next { right: 2px; }
}

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

@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; }
}

/* Mobile video hero: show full 16:9 video (no crop), content below */
@media (max-width: 768px) {
  .hero--video {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .hero--video .hero__bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .hero--video iframe.hero__video,
  .hero--video video.hero__video,
  .hero--video img.hero__video {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
  }
  .hero--video .hero__video-overlay {
    background: linear-gradient(180deg, rgba(22,22,22,0.12) 0%, rgba(22,22,22,0.32) 100%);
  }
  .hero--video .hero__inner {
    padding: var(--space);
  }
  .hero--video .hero__actions {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero--video .hero__actions .btn {
    width: auto;
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 10px;
  }
}

/* Responsive typography — global scale + all pages/sections */
@media (max-width: 1024px) {
  html { font-size: 108%; }
  body { font-size: 1.0625rem; line-height: 1.7; }

  main p,
  main li,
  main td,
  main th,
  main label,
  .footer p,
  .footer a,
  .footer li,
  .footer span,
  [class*="__text"],
  [class*="__lead"],
  [class*="__lede"],
  [class*="__intro"],
  [class*="__meta"],
  [class*="__caption"],
  [class*="__info"] p,
  [class*="__content"] p,
  [class*="__content"] li,
  [class*="__body"] p,
  [class*="__body"] li,
  .split__text p,
  .contact__info p,
  .contact__list a,
  .contact__list .contact__item span:last-child,
  .about__text,
  .about__list li,
  .about__value,
  .about__skills li,
  .portfolio-case__text,
  .portfolio-case__list,
  .portfolio-case__meta,
  .testimonial-page__lede,
  .testimonial-card p,
  .testimonial-card cite,
  .testimonial-card--grid p,
  .testimonial-card--grid cite,
  .testimonial-video p,
  .testimonial-video-card p,
  .testimonial-slider__quote,
  .instagram-banner__text,
  .planning-glimpse__lead,
  .event-glimpse__item p,
  .video-section__caption,
  .services__intro,
  .svc-card__inner em,
  .celeb__card-caption,
  .celeb__card-caption em,
  .certs__item span,
  .certs__item small,
  .gallery__item span,
  .block__lead,
  .inner-hero__intro,
  .about-hero__intro,
  .about-story__lead,
  .about-story__content p,
  .about-cta__lead,
  .contact__form-label,
  .contact__form-hint,
  .contact__form input,
  .contact__form select,
  .contact__form textarea,
  .contact__form-notice,
  .footer__tagline,
  .footer__nav a,
  .footer__contact-item,
  .footer__bottom p,
  .footer__powered,
  .btn,
  .nav--sidebar a {
    font-size: max(1.0625rem, 1em);
    line-height: 1.75;
  }

  .block__title,
  .inner-hero__title,
  .about-hero__title,
  .about-story__title,
  .about-cta__title,
  .about-stats__title,
  .planning-glimpse__title,
  .portfolio-case__title,
  .event-glimpse__item h3,
  .hero__title { line-height: 1.2; }

  .block__tag,
  .inner-hero__eyebrow,
  .about-hero__eyebrow,
  .about-story__eyebrow,
  .about-stats__tag,
  .hero__label,
  .portfolio-case__tag,
  .testimonial-card__tag,
  .testimonial-page__chips li,
  .planning-glimpse__ribbon,
  .about-hero__meta span {
    font-size: max(0.82rem, 1em);
  }

  .stats__label { font-size: max(0.95rem, 1em); }
  .stats__num { font-size: max(2.35rem, 1em); }
}

@media (max-width: 768px) {
  html { font-size: 115%; }
  body { font-size: 1.125rem; line-height: 1.75; }

  main p,
  main li,
  main td,
  main th,
  main label,
  .footer p,
  .footer a,
  .footer li,
  .footer span,
  [class*="__text"],
  [class*="__lead"],
  [class*="__lede"],
  [class*="__intro"],
  [class*="__meta"],
  [class*="__caption"],
  [class*="__info"] p,
  [class*="__content"] p,
  [class*="__content"] li,
  [class*="__body"] p,
  [class*="__body"] li,
  .split__text p,
  .contact__info p,
  .contact__list a,
  .contact__list .contact__item span:last-child,
  .about__text,
  .about__list li,
  .about__value,
  .about__skills li,
  .portfolio-case__text,
  .portfolio-case__list,
  .portfolio-case__meta,
  .testimonial-page__lede,
  .testimonial-card p,
  .testimonial-card cite,
  .testimonial-card--grid p,
  .testimonial-card--grid cite,
  .testimonial-video p,
  .testimonial-video-card p,
  .testimonial-slider__quote,
  .instagram-banner__text,
  .planning-glimpse__lead,
  .event-glimpse__item p,
  .video-section__caption,
  .services__intro,
  .svc-card__inner em,
  .celeb__card-caption,
  .celeb__card-caption em,
  .certs__item span,
  .certs__item small,
  .gallery__item span,
  .block__lead,
  .inner-hero__intro,
  .about-hero__intro,
  .about-story__lead,
  .about-story__content p,
  .about-cta__lead,
  .contact__form-label,
  .contact__form-hint,
  .contact__form input,
  .contact__form select,
  .contact__form textarea,
  .contact__form-notice,
  .footer__tagline,
  .footer__nav a,
  .footer__contact-item,
  .footer__bottom p,
  .footer__powered,
  .btn,
  .nav--sidebar a {
    font-size: max(1.125rem, 1em);
    line-height: 1.75;
  }

  .block__tag,
  .inner-hero__eyebrow,
  .about-hero__eyebrow,
  .about-story__eyebrow,
  .about-stats__tag,
  .hero__label,
  .portfolio-case__tag,
  .testimonial-card__tag,
  .testimonial-page__chips li,
  .planning-glimpse__ribbon,
  .about-hero__meta span {
    font-size: max(0.88rem, 1em);
  }

  .block__title { font-size: clamp(2rem, 6.5vw, 2.75rem); }
  .inner-hero__title { font-size: clamp(2rem, 7vw, 2.85rem); }
  .about-hero__title { font-size: clamp(2rem, 7vw, 2.85rem); }
  .about-story__title { font-size: clamp(1.9rem, 6vw, 2.45rem); }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3.35rem); }
  .planning-glimpse__title { font-size: clamp(2rem, 6vw, 2.75rem); }
  .portfolio-case__title { font-size: clamp(1.45rem, 4vw, 1.85rem); }
  .event-glimpse__item h3 { font-size: clamp(1.3rem, 3.5vw, 1.5rem); }
  .svc-card__inner strong { font-size: clamp(1.3rem, 3.5vw, 1.5rem); }
  .about-cta__title { font-size: clamp(1.8rem, 5vw, 2.2rem); }
  .about__value { font-size: clamp(1.2rem, 3.5vw, 1.45rem); }
  .stats__num { font-size: max(2.25rem, 1em); }
  .stats__label { font-size: max(1rem, 1em); }
  .btn { font-size: max(1.0625rem, 1em); padding: 0.9rem 1.5rem; }
  .nav--sidebar a { font-size: max(1.15rem, 1em); }
}

@media (max-width: 480px) {
  html { font-size: 120%; }
  body { font-size: 1.125rem; }

  main p,
  main li,
  [class*="__text"],
  [class*="__lead"],
  [class*="__lede"],
  [class*="__intro"],
  [class*="__content"] p,
  [class*="__content"] li,
  .about__text,
  .about__list li,
  .portfolio-case__text,
  .portfolio-case__list,
  .testimonial-card p,
  .testimonial-card--grid p,
  .testimonial-slider__quote,
  .instagram-banner__text,
  .planning-glimpse__lead,
  .event-glimpse__item p,
  .block__lead,
  .inner-hero__intro,
  .about-hero__intro,
  .about-story__lead,
  .about-cta__lead,
  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    font-size: max(1.125rem, 1em);
    line-height: 1.8;
  }

  .block__title { font-size: clamp(1.95rem, 7.5vw, 2.5rem); }
  .inner-hero__title,
  .about-hero__title { font-size: clamp(1.95rem, 8vw, 2.6rem); }
  .about-story__title { font-size: clamp(1.85rem, 7vw, 2.3rem); }
  .hero__title { font-size: clamp(2rem, 9.5vw, 3rem); }
  .stats__num { font-size: max(2.1rem, 1em); }
  .stats__label { font-size: max(1.05rem, 1em); }
  .btn { font-size: max(1.0625rem, 1em); }
  .footer__tagline,
  .footer__nav a,
  .footer__contact-item,
  .footer__bottom p { font-size: max(1.05rem, 1em); }
}

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__captcha-row {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}
.contact__captcha-display-wrap {
  flex: 1;
  min-width: 0;
}
.contact__captcha-display {
  height: 100%;
}
.contact__captcha-canvas {
  position: relative;
  min-height: 3.5rem;
  height: 100%;
  overflow: hidden;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.contact__captcha-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.contact__captcha-noise line {
  stroke: rgba(148, 163, 184, 0.45);
  stroke-width: 1.1;
}
.contact__captcha-chars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.5rem;
  padding: 0.55rem 0.85rem;
}
.contact__captcha-char {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
  transform: translateY(var(--captcha-y, 0)) rotate(var(--captcha-rotate, 0deg)) skewX(var(--captcha-skew, 0deg));
  user-select: none;
}
.contact__captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  min-width: 3.5rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #38bdf8;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.contact__captcha-refresh:hover {
  border-color: rgba(56, 189, 248, 0.65);
  background: rgba(30, 41, 59, 0.9);
  color: #7dd3fc;
}
.contact__captcha-refresh:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
}
.contact__captcha-refresh:disabled {
  opacity: 0.6;
  cursor: wait;
}
.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;
}

/* Responsive typography — final overrides (after all component rules) */
@media (max-width: 1024px) {
  .contact__form-label,
  .contact__form-hint,
  .contact__form-notice,
  .contact__form-field-error,
  .portfolio-event-card__text,
  .portfolio-event-card__media-fallback,
  .gallery-album-card__meta,
  .gallery-album-card__count,
  body.page--red #stats-section:not(.block--light) .stats__label,
  body.page--red .block--light .stats__label {
    font-size: max(1.0625rem, 1em);
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .contact__form-label,
  .contact__form-hint,
  .contact__form-notice,
  .contact__form-field-error,
  .portfolio-event-card__text,
  .portfolio-event-card__media-fallback,
  .gallery-album-card__meta,
  .gallery-album-card__count,
  body.page--red p,
  body.page--red .block__lead,
  body.page--red .contact__info p,
  body.page--red #stats-section:not(.block--light) .stats__label,
  body.page--red .block--light .stats__label {
    font-size: max(1.125rem, 1em);
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .contact__form-label,
  .contact__form-hint,
  .contact__form-notice,
  .contact__form-field-error,
  .portfolio-event-card__text,
  .gallery-album-card__meta {
    font-size: max(1.125rem, 1em);
    line-height: 1.8;
  }
}
