/* ==========================================================================
   סמייל הפקות - בן המלך
   A royal night: deep blue and purple grounds, electric blue accents, and a
   gold that reads as a crown rather than a warning sign. Warm white text.
   ========================================================================== */

:root {
  /* Brand */
  --night: #09051F;
  --night-soft: #120A2E;
  --purple-deep: #21063F;
  --purple: #55107A;
  --purple-bright: #7a1eab;
  --blue: #075EEB;
  --blue-light: #2684FF;
  --gold: #F5C542;
  --gold-dark: #B97805;
  --gold-light: #FFE783;
  --text: #FFFDF7;
  --text-muted: #D9CFEB;
  --text-faint: rgba(217, 207, 235, 0.6);
  --line: #6D5685;
  --line-soft: rgba(109, 86, 133, 0.35);
  --line-faint: rgba(109, 86, 133, 0.18);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.09);

  /* Depth */
  --shadow-sm: 0 2px 10px -2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 44px -18px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 16px 38px -14px rgba(245, 197, 66, 0.55);
  --shadow-blue: 0 16px 38px -14px rgba(38, 132, 255, 0.55);
  --glow-gold: 0 0 0 1px rgba(245, 197, 66, 0.35), 0 0 30px -6px rgba(245, 197, 66, 0.45);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --font-display: 'Rubik', 'Heebo', system-ui, sans-serif;
  --font-body: 'Heebo', 'Rubik', system-ui, sans-serif;

  --shell: 1240px;
  --header-h: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Faint grain so the dark grounds read as velvet rather than flat pixels. */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  --blue-gradient: linear-gradient(135deg, var(--blue-light), var(--blue));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  background: var(--night);
}

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

.skip-link {
  position: fixed;
  inset-inline-start: 50%;
  top: -100px;
  transform: translateX(50%);
  z-index: 200;
  background: var(--gold);
  color: var(--night);
  padding: 0.7rem 1.4rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

/* The stroked icon set. Filled paths opt out with fill/stroke of their own. */
.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Sparkles - a few floating gold points on the dark heroes
   -------------------------------------------------------------------------- */

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkles i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px 2px rgba(255, 231, 131, 0.7);
  opacity: 0;
  animation: twinkle 5s ease-in-out infinite;
}

.sparkles i:nth-child(1) { left: 8%; top: 22%; animation-delay: 0s; }
.sparkles i:nth-child(2) { left: 18%; top: 68%; animation-delay: 1.2s; width: 4px; height: 4px; }
.sparkles i:nth-child(3) { left: 33%; top: 30%; animation-delay: 2.1s; }
.sparkles i:nth-child(4) { left: 55%; top: 18%; animation-delay: 0.7s; width: 8px; height: 8px; }
.sparkles i:nth-child(5) { left: 70%; top: 60%; animation-delay: 3s; }
.sparkles i:nth-child(6) { left: 84%; top: 28%; animation-delay: 1.7s; width: 4px; height: 4px; }
.sparkles i:nth-child(7) { left: 92%; top: 75%; animation-delay: 2.6s; }
.sparkles i:nth-child(8) { left: 45%; top: 82%; animation-delay: 3.6s; width: 5px; height: 5px; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.55rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 1rem 1.9rem;
  font-size: 1.075rem;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--night);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #fff2a8 0%, var(--gold-light) 40%, var(--gold) 100%);
  box-shadow: 0 20px 44px -14px rgba(245, 197, 66, 0.7);
}

.btn--blue {
  background: var(--blue-gradient);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn--blue:hover {
  background: linear-gradient(135deg, #4d9bff, var(--blue-light));
}

.btn--whatsapp {
  background: #25d366;
  color: #04310f;
  box-shadow: 0 14px 30px -14px rgba(37, 211, 102, 0.85);
}

.btn--whatsapp:hover {
  background: #34e277;
}

.btn--whatsapp .icon {
  stroke: none;
  width: 1.3em;
  height: 1.3em;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--outline {
  border-color: var(--line);
  color: var(--gold-light);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(245, 197, 66, 0.08);
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.logo__crown {
  width: 46px;
  height: 36px;
  flex: none;
  filter: drop-shadow(0 4px 10px rgba(245, 197, 66, 0.45));
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__show {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2.5rem, 1360px);
}

.site-header.is-stuck {
  background: rgba(9, 5, 31, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-faint), 0 12px 30px -22px rgba(0, 0, 0, 0.8);
  height: 70px;
}

.site-header.is-stuck .logo__crown {
  width: 38px;
  height: 30px;
}

.brand {
  display: block;
  flex: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-inline-start: auto;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  color: var(--text);
}

.header-phone__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.header-phone__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  direction: ltr;
  color: var(--gold-light);
}

.header-cta {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.site-header.is-stuck .header-cta,
body.is-inner .header-cta {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-inline-start: 1rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__list a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 253, 247, 0.9);
  padding-block: 0.4rem;
  transition: color 0.25s;
}

.site-nav__list a:hover {
  color: var(--gold-light);
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: inline-end;
  transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: inline-start;
}

.site-nav__cta,
.site-nav__close {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  padding: 12px 10px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-light);
}

.nav-toggle span:nth-child(2) {
  width: 70%;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(9, 5, 31, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-scrim.is-open {
  opacity: 1;
}

/* The header is a fixed, z-indexed - and once stuck, backdrop-filtered - box, so it
   becomes both the stacking context and the containing block for the drawer inside it:
   the menu would land behind the scrim, squeezed into the header strip. While the
   drawer is open the header drops the filter and rises above the scrim. */
.site-header:has(.site-nav.is-open) {
  z-index: 110;
  backdrop-filter: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + 3rem) 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease-out);
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 14s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.12) translate3d(0, 0, 0); }
  to { transform: scale(1) translate3d(0, -1.5%, 0); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 85% 15%, rgba(85, 16, 122, 0.45), transparent 60%),
    radial-gradient(60% 50% at 15% 85%, rgba(7, 94, 235, 0.35), transparent 60%),
    linear-gradient(to top, rgba(9, 5, 31, 0.97) 0%, rgba(9, 5, 31, 0.78) 35%, rgba(33, 6, 63, 0.45) 70%, rgba(9, 5, 31, 0.55) 100%);
}

.hero__veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  padding: 0.45rem 1.05rem 0.45rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.4);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(245, 197, 66, 0); }
}

.hero__title {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.15rem;
}

.hero__lead {
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  line-height: 1.65;
  max-width: 52ch;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 2.6rem;
}

.hero__dot {
  width: 34px;
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s, width 0.3s var(--ease);
}

.hero__dot.is-active {
  background: var(--gold);
  width: 52px;
}

.hero__scroll {
  position: absolute;
  inset-inline-start: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-pill);
  display: grid;
  place-items: start center;
  padding-top: 7px;
  z-index: 1;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 1.9s var(--ease) infinite;
}

@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  z-index: 3;
  background: var(--gold-gradient);
  color: var(--night);
  overflow: hidden;
  padding-block: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  transform: rotate(-1deg) scale(1.02);
  transform-origin: center;
  box-shadow: var(--shadow-md);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.marquee__track i {
  font-style: normal;
  color: var(--purple);
  font-size: 0.8em;
}

.marquee__track span {
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(50%); }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* --------------------------------------------------------------------------
   Stat strip
   -------------------------------------------------------------------------- */

.stats {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat {
  background: linear-gradient(180deg, rgba(33, 6, 63, 0.9), rgba(18, 10, 46, 0.95));
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--night-soft), var(--purple-deep) 60%, var(--night-soft));
}

.section--alt::before,
.section--spotlight::before,
.section--contact::before,
.section--testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.07;
  pointer-events: none;
}

.section__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
}

.section__head--start {
  margin-inline: 0;
  text-align: start;
}

.section__head--row {
  max-width: none;
  text-align: start;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section__head--row .section__title {
  margin-bottom: 0;
}

.section__head--row .section__lead {
  margin-top: 0.6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow--gold {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  text-wrap: balance;
  margin-bottom: 0.9rem;
}

.section__title--xl {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-wrap: pretty;
  margin: 0;
}

.section__head .btn {
  margin-top: 1.4rem;
}

/* --------------------------------------------------------------------------
   Areas (the three categories)
   -------------------------------------------------------------------------- */

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.areas--two {
  grid-template-columns: repeat(2, 1fr);
}

.area {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}

.area--short {
  min-height: 300px;
}

.area:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  border-color: rgba(245, 197, 66, 0.5);
}

.area__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.9s var(--ease-out);
}

.area:hover .area__img {
  transform: scale(1.07);
}

.area__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(9, 5, 31, 0.97) 0%, rgba(33, 6, 63, 0.75) 45%, rgba(9, 5, 31, 0.15) 100%);
}

.area__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.7rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.area__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.area__title {
  font-size: 1.7rem;
  color: #fff;
}

.area__text {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

.area__link {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 197, 66, 0.45);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--purple-deep);
}

.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 5, 31, 0.6), transparent 55%);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.card:hover .card__media img {
  transform: scale(1.07);
}

.card__badge {
  position: absolute;
  top: 0.9rem;
  inset-inline-start: 0.9rem;
  z-index: 1;
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--night);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.card__badge--soft {
  background: rgba(9, 5, 31, 0.7);
  color: var(--gold-light);
  border: 1px solid rgba(245, 197, 66, 0.4);
  backdrop-filter: blur(6px);
}

.card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-light);
}

.card__title {
  font-size: 1.35rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(38, 132, 255, 0.12);
  border: 1px solid rgba(38, 132, 255, 0.25);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
}

.card__link {
  margin-top: auto;
  padding-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
}

.card__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.card:hover .card__arrow,
.area:hover .card__arrow,
.product:hover .card__arrow {
  transform: translateX(-6px);
}

.cards--rail {
  grid-template-columns: repeat(4, 1fr);
}

/* --------------------------------------------------------------------------
   Spotlight - the main show
   -------------------------------------------------------------------------- */

.section--spotlight {
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(85, 16, 122, 0.55), transparent 65%),
    radial-gradient(50% 50% at 90% 80%, rgba(7, 94, 235, 0.3), transparent 60%),
    var(--purple-deep);
  overflow: hidden;
}

.spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.spotlight__media {
  position: relative;
}

.spotlight__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
}

.spotlight__media:hover .spotlight__frame {
  transform: rotate(0deg) scale(1.01);
}

.spotlight__frame img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.spotlight__stamp {
  position: absolute;
  top: -22px;
  inset-inline-end: -14px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--night);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
  animation: float 5s ease-in-out infinite;
}

.spotlight__stamp .icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.6;
}

@keyframes float {
  50% { transform: translateY(-8px) rotate(6deg); }
}

.spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.prose p {
  color: var(--text-muted);
  line-height: 1.8;
}

.prose--lg {
  font-size: 1.1rem;
}

.prose a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticks {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0.4rem;
}

.ticks li {
  position: relative;
  padding-inline-start: 2rem;
  color: var(--text);
  font-weight: 500;
}

.ticks li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.32em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2309051F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.ticks--tight {
  margin: 1rem 0 1.4rem;
  gap: 0.5rem;
}

.ticks--tight li {
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Year cycle
   -------------------------------------------------------------------------- */

.section--cycle {
  overflow: hidden;
}

.cycle {
  position: relative;
  width: min(100% - 1.25rem, 1500px);
  margin-inline: auto;
}

.cycle::before {
  content: '';
  position: absolute;
  inset-inline: 2rem;
  top: 70px;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  opacity: 0.5;
}

.cycle__track {
  display: flex;
  gap: 1.2rem;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0.5rem 1.25rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 197, 66, 0.4) transparent;
  position: relative;
  z-index: 1;
}

.cycle__item {
  flex: 0 0 176px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: transform 0.35s var(--ease);
}

.cycle__item:hover {
  transform: translateY(-6px);
}

.cycle__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 6px rgba(245, 197, 66, 0.12);
  background: var(--purple-deep);
}

.cycle__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cycle__holiday {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-light);
}

.cycle__title {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.section--about {
  background: linear-gradient(180deg, var(--night), var(--night-soft));
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
  padding-bottom: 2rem;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}

.about__card {
  position: absolute;
  bottom: 0;
  inset-inline-end: -1rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  background: var(--gold-gradient);
  color: var(--night);
  box-shadow: var(--shadow-gold);
  line-height: 1.3;
}

.about__card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.about__card span {
  font-size: 0.85rem;
  font-weight: 500;
}

.usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.usp {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--line-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.3s, background 0.3s;
}

.usp:hover {
  border-color: rgba(245, 197, 66, 0.45);
  background: var(--glass-strong);
}

.usp__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245, 197, 66, 0.14);
  color: var(--gold);
}

.usp__icon .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --------------------------------------------------------------------------
   Video
   -------------------------------------------------------------------------- */

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  background: #000;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video--inline {
  margin: 2rem 0 0;
  max-width: none;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.section--gallery {
  background: var(--night);
}

.gallery-grid {
  position: relative;
  columns: 4;
  column-gap: 0.85rem;
  width: min(100% - 2.5rem, 1500px);
  margin-inline: auto;
}

.gallery-grid__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.85rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--purple-deep);
}

.gallery-grid__item img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease-out), opacity 0.4s;
  opacity: 0.9;
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 0.3s;
}

.gallery-grid__item:hover::after {
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 4vmin;
  background: rgba(9, 5, 31, 0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease-out);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--night);
}

.lightbox__close {
  top: 1.4rem;
  inset-inline-end: 1.4rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev { inset-inline-start: 1rem; }
.lightbox__nav--next { inset-inline-end: 1rem; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.section--testimonials {
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(7, 94, 235, 0.25), transparent 60%),
    var(--purple-deep);
  overflow: hidden;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  align-items: stretch;
}

.quote {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.quote:hover {
  border-color: rgba(245, 197, 66, 0.4);
  transform: translateY(-4px);
}

.quote::before {
  content: '”';
  position: absolute;
  top: 0.4rem;
  inset-inline-end: 1.2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(245, 197, 66, 0.18);
  font-weight: 900;
}

.quote__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1.05rem;
}

.quote__body {
  margin: 0;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quote__by strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}

.quote__by small {
  color: var(--text-faint);
  font-size: 0.85rem;
}

.quote__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--blue-light));
  color: var(--night);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   Shop
   -------------------------------------------------------------------------- */

.section--shop {
  background: linear-gradient(180deg, var(--night), var(--night-soft));
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.products--full {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 197, 66, 0.45);
}

.product__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(160deg, #fff6e0, #f8e9c6);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product:hover .product__media img {
  transform: scale(1.06);
}

.product__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product__title {
  font-size: 1.15rem;
}

.product__price {
  margin-top: auto;
  padding-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold-light);
}

.shop-note {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-align: center;
}

.shop-note .icon {
  color: var(--gold);
}

/* Product page */

.product-page {
  padding-block: calc(var(--header-h) + 2rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(85, 16, 122, 0.45), transparent 60%),
    var(--night);
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 1.5rem;
}

.product-page__media {
  position: relative;
}

.product-page__image {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  background: linear-gradient(160deg, #fff6e0, #f8e9c6);
}

.product-page__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-page__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.product-page__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.faq__item[open] {
  border-color: rgba(245, 197, 66, 0.5);
  background: var(--glass-strong);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--text);
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__sign {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.15);
  transition: background 0.3s, transform 0.3s var(--ease);
}

.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: translate(50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}

.faq__sign::after {
  transform: translate(50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__sign {
  background: var(--gold);
  transform: rotate(180deg);
}

.faq__item[open] .faq__sign::before {
  background: var(--night);
}

.faq__item[open] .faq__sign::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 1.35rem 1.3rem;
  color: var(--text-muted);
  animation: fadeSlide 0.35s var(--ease-out);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.section--contact {
  background:
    radial-gradient(70% 60% at 15% 20%, rgba(85, 16, 122, 0.6), transparent 60%),
    radial-gradient(50% 50% at 90% 90%, rgba(7, 94, 235, 0.35), transparent 60%),
    var(--purple-deep);
  overflow: hidden;
}

.contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
}

.contact__details .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.contact__details a:hover {
  color: var(--gold-light);
}

.lead-form {
  position: relative;
  background: rgba(9, 5, 31, 0.55);
  border: 1px solid rgba(245, 197, 66, 0.25);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.field__label i {
  color: var(--gold);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 0.78rem 1rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field select option,
.field select optgroup {
  color: var(--text);
  background: var(--night-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(217, 207, 235, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.18);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #ff8f7a;
}

.field__error {
  font-size: 0.83rem;
  color: #ffb0a0;
  min-height: 0;
}

.field__error:empty {
  display: none;
}

.lead-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-form__note {
  font-size: 0.83rem;
  color: var(--text-faint);
  text-align: center;
  margin: 0;
}

.lead-form__status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-align: center;
  display: none;
}

.lead-form__status.is-ok {
  display: block;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #a9f0c1;
}

.lead-form__status.is-error {
  display: block;
  background: rgba(255, 143, 122, 0.14);
  border: 1px solid rgba(255, 143, 122, 0.4);
  color: #ffb0a0;
}

.lead-form__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: var(--night);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.lead-form.is-busy .lead-form__spinner {
  display: block;
}

.lead-form.is-busy button[type='submit'] {
  opacity: 0.75;
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Inner page
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  min-height: min(80svh, 740px);
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + 3rem) 4.5rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.page-hero--short {
  min-height: min(64svh, 580px);
}

.page-hero--shop {
  background-position: center 30%;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
  radial-gradient(90% 70% at 85% 15%, rgb(85 16 122 / 0%), transparent 60%), radial-gradient(60% 50% at 15% 85%, rgb(7 94 235 / 18%), transparent 60%), linear-gradient(to top, rgba(9, 5, 31, 0.97) 0%, rgba(9, 5, 31, 0.78) 35%, rgba(33, 6, 63, 0.45) 70%, rgba(9, 5, 31, 0.55) 100%);
    /* radial-gradient(70% 60% at 85% 20%, rgba(85, 16, 122, 0.5), transparent 60%),
    linear-gradient(to top, rgba(9, 5, 31, 0.98) 5%, rgba(9, 5, 31, 0.75) 45%, rgba(33, 6, 63, 0.4) 100%); */
}

.page-hero__veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 1.4rem;
}

.crumbs a:hover {
  color: var(--gold-light);
}

.crumbs [aria-current] {
  color: var(--text);
}

.page-hero__title {
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 0.8rem;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.page-hero__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.page-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.facts {
  background: var(--purple-deep);
  border-block: 1px solid var(--line-faint);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line-faint);
}

.fact {
  background: var(--purple-deep);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fact__label {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  font-weight: 600;
}

.fact__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.fact--cta {
  background: var(--gold-gradient);
}

.fact--cta .fact__label {
  color: rgba(9, 5, 31, 0.65);
}

.fact__value--link {
  color: var(--night);
  direction: ltr;
  text-align: start;
}

.section--intro .intro {
  max-width: 820px;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.article__body .prose p {
  margin-bottom: 1.3em;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: linear-gradient(180deg, rgba(85, 16, 122, 0.35), rgba(33, 6, 63, 0.7));
  border: 1px solid rgba(245, 197, 66, 0.3);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.side-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.side-card__phone {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #05030f;
  color: var(--text-muted);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(to left, var(--gold) 0 40%, var(--blue-light) 40% 70%, var(--purple) 70%);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
}

.site-footer__brand .logo {
  margin-bottom: 1.1rem;
}

.site-footer__brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 38ch;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.site-footer__nav li,
.site-footer__contact li {
  margin-bottom: 0.65rem;
  font-size: 0.97rem;
}

.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__contact .icon {
  color: var(--gold);
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.social a:hover {
  background: var(--gold);
  color: var(--night);
  transform: translateY(-3px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-faint);
  font-size: 0.86rem;
  color: var(--text-faint);
}

.site-footer__bottom p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Floating actions
   -------------------------------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  inset-inline-end: 1.4rem;
  bottom: 1.6rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #04310f;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.75);
  transition: transform 0.3s var(--ease);
}

.whatsapp-fab .icon {
  width: 30px;
  height: 30px;
  stroke: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: ripple 2.6s var(--ease) infinite;
}

@keyframes ripple {
  to { transform: scale(1.55); opacity: 0; }
}

.mobile-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 85;
  background: rgba(9, 5, 31, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-faint);
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}

.mobile-bar__item {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 0.4rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.mobile-bar__item--wa {
  background: #25d366;
  color: #04310f;
}

.mobile-bar__item--wa .icon {
  stroke: none;
}

.mobile-bar__item--cta {
  background: var(--gold-gradient);
  color: var(--night);
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .cards--rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .gallery-grid {
    columns: 3;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .areas {
    grid-template-columns: 1fr;
  }

  .area {
    min-height: 300px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 72px;
  }

  .about,
  .faq,
  .contact,
  .article,
  .spotlight,
  .product-page__grid,
  .areas--two {
    grid-template-columns: 1fr;
  }

  .spotlight__media {
    max-width: 560px;
    margin-inline: auto;
  }

  .about__media {
    max-width: 480px;
  }

  .side-card {
    position: static;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    z-index: 100;
    width: min(340px, 86vw);
    margin: 0;
    padding: 5.5rem 1.75rem 2rem;
    background: linear-gradient(180deg, var(--purple-deep), var(--night));
    border-inline-start: 1px solid var(--line-faint);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    transform: translateX(-100%);
  }

  [dir='ltr'] .site-nav {
    transform: translateX(100%);
  }

  .site-nav.is-open,
  [dir='ltr'] .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list li + li {
    border-top: 1px solid var(--line-faint);
  }

  .site-nav__list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 600;
  }

  .site-nav__list a::after {
    display: none;
  }

  .site-nav__cta {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.8rem;
  }

  .site-nav__close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 1.1rem;
    inset-inline-end: 1.1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-nav__close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
  }

  /* Below the breakpoint the quotes become a swipeable rail. */
  .quotes {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: auto;
    padding: 0.25rem 1.25rem 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 197, 66, 0.4) transparent;
  }

  .quote {
    flex: 0 0 min(400px, 82vw);
    scroll-snap-align: center;
  }

  .mobile-bar {
    display: flex;
  }

  /* The bottom bar already carries WhatsApp - a second floating bubble is just noise. */
  .whatsapp-fab {
    display: none;
  }

  body {
    padding-bottom: 4.6rem;
  }

  .usps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1rem;
  }

  .hero {
    min-height: min(94svh, 800px);
    padding-bottom: 4.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .stats {
    margin-top: 1.5rem;
  }

  .stat {
    padding: 1.2rem 0.6rem;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 0.6rem;
  }

  .gallery-grid__item {
    margin-bottom: 0.6rem;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .cards--rail,
  .products {
    grid-template-columns: 1fr;
  }

  .cycle__item {
    flex-basis: 150px;
  }

  .cycle__img {
    width: 116px;
    height: 116px;
  }

  .spotlight__stamp {
    width: 68px;
    height: 68px;
    inset-inline-end: 0;
  }

  .spotlight__stamp .icon {
    width: 32px;
    height: 32px;
  }

  .about__card {
    inset-inline-end: 0;
  }

  .logo__show {
    font-size: 1.3rem;
  }

  .marquee {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}

@media print {
  .site-header,
  .site-nav,
  .mobile-bar,
  .whatsapp-fab,
  .hero__media,
  .marquee,
  .sparkles,
  .section--contact {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
