/* ═══════════════════════════════════════════════════════════════
   ALINA STYLE — Premium Fashion Stylist Website
   Design System: Cool-Toned Fashion 2026 + Elevated Minimalism
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary: #F8F6F3;
  --bg-secondary: #EDEAE5;
  --bg-dark: #1A1A2E;
  --bg-darker: #12121F;
  --bg-hero: #0F0F1A;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B7B;
  --text-light: #F0EDE8;
  --text-muted: #9B9BAB;

  /* Accents */
  --accent-ice: #A8C4D8;
  --accent-steel: #8B9DAF;
  --accent-beige: #C8B8A8;
  --accent-highlight: #D4A853;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-light: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-light: rgba(0, 0, 0, 0.06);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(168, 196, 216, 0.15);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section: clamp(5rem, 10vw, 9rem);

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 600ms;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--accent-ice);
  color: var(--bg-dark);
}

/* ─── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

/* ─── Typography ────────────────────────────────────────────── */
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-steel);
}

.label--light {
  color: var(--accent-ice);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0 var(--space-section);
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.text-center {
  text-align: center;
}

/* ─── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-header .label {
  display: block;
  margin-bottom: var(--space-sm);
}

.section-header .heading-lg {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 48px;
}

.btn--primary {
  background: var(--text-light);
  color: var(--bg-dark);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid transparent;
}

.btn--dark:hover {
  background: #24243A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--accent-highlight);
  color: var(--bg-dark);
  border: 1px solid transparent;
}

.btn--accent:hover {
  background: #dec06a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-ice);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--duration-base) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-ice);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__links a:hover {
  color: var(--text-light);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 26, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-out);
}

.nav__mobile.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile.is-open a:nth-child(1) { transition-delay: 100ms; }
.nav__mobile.is-open a:nth-child(2) { transition-delay: 150ms; }
.nav__mobile.is-open a:nth-child(3) { transition-delay: 200ms; }
.nav__mobile.is-open a:nth-child(4) { transition-delay: 250ms; }
.nav__mobile.is-open a:nth-child(5) { transition-delay: 300ms; }
.nav__mobile.is-open a:nth-child(6) { transition-delay: 350ms; }
.nav__mobile.is-open a:nth-child(7) { transition-delay: 400ms; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hero);
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Animated gradient background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* WebGL Aurora canvas */
#hero-aurora {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Hide CSS orbs when WebGL aurora is active */
body.webgl-aurora .hero__orb {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* WebGL Geometry canvas — above aurora, below grain */
#hero-geometry {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-ice), transparent 70%);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-steel), transparent 70%);
  bottom: -15%;
  left: -10%;
  animation-delay: -7s;
  animation-duration: 25s;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-highlight), transparent 70%);
  top: 40%;
  left: 50%;
  opacity: 0.15;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

/* Grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: 900px;
}

.hero__label {
  display: inline-block;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.3s forwards;
}

.hero__name {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s var(--ease-out) 0.5s forwards;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent-ice);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.7s forwards;
}

.hero__statement {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.9s forwards;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 1.1s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative lines */
.hero__line {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
}

.hero__line--h {
  width: 120px;
  height: 1px;
}

.hero__line--v {
  width: 1px;
  height: 120px;
}

.hero__line--1 { top: 20%; left: 8%; }
.hero__line--2 { bottom: 25%; right: 8%; }
.hero__line--3 { top: 35%; right: 12%; width: 1px; height: 80px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-ice), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-primary);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__visual {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* About photo */
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.5s var(--ease-out);
  will-change: opacity, transform;
}

.about__visual--reveal.is-photo-visible .about__photo {
  opacity: 1;
  transform: scale(1);
}

.about__photo:hover {
  transform: scale(1.03);
  transition: transform 0.8s var(--ease-out);
}

/* Elegant gradient overlay on photo */
.about__visual--reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 15, 26, 0.25) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about__photo {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about__visual-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 40%;
  border: 1px solid var(--accent-ice);
  border-radius: var(--radius-lg);
  opacity: 0.3;
}

.about__text {
  max-width: 560px;
}

.about__text .label {
  display: block;
  margin-bottom: var(--space-sm);
}

.about__text .heading-lg {
  margin-bottom: var(--space-md);
}

.about__text > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.about__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  padding-left: var(--space-md);
  border-left: 2px solid var(--accent-ice);
  margin: var(--space-lg) 0;
  line-height: 1.5;
}

/* Metrics */
.about__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.metric-card {
  padding: var(--space-md);
  background: var(--glass-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric-card__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.metric-card__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Highlight Cards */
.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.highlight-card {
  padding: var(--space-lg);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out);
}

.highlight-card:hover {
  border-color: var(--accent-ice);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlight-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--accent-steel);
}

.highlight-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL SECTION
   ═══════════════════════════════════════════════════════════════ */
.social {
  background: var(--bg-secondary);
}

.social__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-ice);
}

.social-card__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
  pointer-events: none;
}

.social-card:hover .social-card__glow {
  opacity: 0.12;
}

.social-card--instagram .social-card__glow {
  background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
}

.social-card--tiktok .social-card__glow {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.social-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

.social-card__icon svg {
  width: 24px;
  height: 24px;
}

.social-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.social-card__handle {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.social-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.social-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.social-card__tag {
  padding: 0.375rem 0.875rem;
  background: var(--bg-secondary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.social-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.social-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.social-card__link:hover {
  color: var(--accent-steel);
}

.social-card__link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* ─── WARDROBE SCROLL VIDEO ─── */
.wardrobe-scrubber {
  position: relative;
  height: 250vh;
  background: var(--bg-dark);
}

.wardrobe-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  --cover-opacity: 1;
}

.wardrobe-sticky::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 80px;
  background: linear-gradient(to top left, #0a0a12 50%, transparent);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .wardrobe-sticky::after {
    display: none;
  }
}

#introVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .wardrobe-sticky {
    background: var(--bg-dark);
  }

  #introVideo {
    object-fit: cover;
    background: var(--bg-dark);
  }
}

.wardrobe-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.wardrobe-hint__icon {
  font-size: 1rem;
  animation: wardrobeHintBounce 1.5s ease-in-out infinite;
}

@keyframes wardrobeHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.services .section-header p {
  color: var(--text-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  position: relative;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-ice), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--accent-ice);
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 400;
  margin-bottom: 0.625rem;
  line-height: 1.25;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ice);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(168, 196, 216, 0.2);
  border-radius: 100px;
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--accent-highlight);
  margin-left: auto;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-ice);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, gap 0.2s;
  gap: 0.25rem;
}

.service-card__more:hover {
  opacity: 0.75;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════ */
.process {
  background: var(--bg-primary);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-ice), var(--accent-beige));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
}

.process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--accent-ice);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-steel);
  position: relative;
  z-index: 1;
  transition: all var(--duration-base) var(--ease-out);
}

.process-step:hover .process-step__number {
  background: var(--accent-ice);
  color: var(--bg-dark);
  border-color: var(--accent-ice);
}

.process-step__content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.process-step__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-dark);
  color: var(--text-light);
}

.testimonials .section-header p {
  color: var(--text-muted);
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: center;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-ice);
  opacity: 0.3;
  margin-bottom: -0.5rem;
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-highlight);
}

.testimonial-card__author {
  font-weight: 500;
  font-size: 0.9375rem;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   3D TILT CARDS — Interactive perspective tilt + light sheen
   ═══════════════════════════════════════════════════════════════ */
.tilt-card {
  will-change: transform;
  transform-style: preserve-3d;
}

.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--sheen-x, 50%) var(--sheen-y, 50%),
    rgba(255, 255, 255, 0.14) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.tilt-card:hover::after {
  opacity: 1;
}

.tilt-card > * {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce), (hover: none) {
  .tilt-card {
    will-change: auto;
  }
  .tilt-card::after {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING SECTION
   ═══════════════════════════════════════════════════════════════ */
.booking {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.booking__bg-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.booking__bg-accent--1 {
  background: var(--accent-ice);
  top: -20%;
  left: -10%;
}

.booking__bg-accent--2 {
  background: var(--accent-highlight);
  bottom: -20%;
  right: -10%;
}

.booking__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.booking__text {
  max-width: 480px;
}

.booking__text .label {
  display: block;
  margin-bottom: var(--space-sm);
}

.booking__text .heading-lg {
  margin-bottom: var(--space-md);
}

.booking__text > p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.booking__form-wrapper {
  padding: var(--space-xl);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking__form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-ice);
  box-shadow: 0 0 0 3px rgba(168, 196, 216, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.booking__submit {
  width: 100%;
  margin-top: var(--space-xs);
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM SELECT
   ═══════════════════════════════════════════════════════════════ */
.custom-select {
  position: relative;
  min-width: 0;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.custom-select__trigger:hover {
  border-color: var(--accent-steel);
}

.custom-select__trigger[aria-expanded="true"],
.custom-select__trigger:focus {
  outline: none;
  border-color: var(--accent-ice);
  box-shadow: 0 0 0 3px rgba(168, 196, 216, 0.15);
}

.custom-select__label {
  color: var(--text-muted);
  transition: color 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__label.has-value {
  color: var(--text-primary);
}

.custom-select__arrow {
  width: 16px;
  height: 16px;
  color: var(--accent-steel);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.custom-select__trigger[aria-expanded="true"] .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--accent-ice);
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  z-index: 100;
  padding: 0.375rem;
  list-style: none;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
}

.custom-select__dropdown[hidden] {
  display: none;
}

.custom-select__option {
  padding: 0.625rem 0.875rem;
  border-radius: calc(var(--radius-sm) - 2px);
  font-size: 0.9375rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover {
  background: rgba(168, 196, 216, 0.12);
}

.custom-select__option--selected {
  background: var(--bg-dark);
  color: var(--text-light);
}

.custom-select__option--selected:hover {
  background: var(--accent-steel);
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM DATE PICKER
   ═══════════════════════════════════════════════════════════════ */
.date-picker {
  position: relative;
}

.date-picker__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  text-align: left;
}

.date-picker__trigger:hover {
  border-color: var(--accent-steel);
}

.date-picker__trigger[aria-expanded="true"],
.date-picker__trigger:focus {
  outline: none;
  border-color: var(--accent-ice);
  box-shadow: 0 0 0 3px rgba(168, 196, 216, 0.15);
}

.date-picker__label {
  color: var(--text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-picker__label.has-value {
  color: var(--text-primary);
}

.date-picker__trigger svg {
  width: 16px;
  height: 16px;
  color: var(--accent-steel);
  flex-shrink: 0;
}

.date-picker__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  z-index: 100;
  padding: 1rem;
  min-width: 280px;
}

.date-picker__dropdown[hidden] {
  display: none;
}

.date-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.date-picker__month-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.date-picker__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--accent-steel);
  transition: all 0.2s ease;
}

.date-picker__nav:hover {
  border-color: var(--accent-ice);
  color: var(--text-primary);
  background: rgba(168, 196, 216, 0.08);
}

.date-picker__nav svg {
  width: 14px;
  height: 14px;
}

.date-picker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.25rem;
}

.date-picker__weekdays span {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.date-picker__day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 0.8125rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.15s ease;
}

.date-picker__day:hover:not(:disabled) {
  background: rgba(168, 196, 216, 0.15);
  color: var(--text-primary);
}

.date-picker__day--other-month {
  color: var(--text-muted);
  opacity: 0.4;
}

.date-picker__day--today {
  border: 1px solid var(--accent-ice);
  color: var(--accent-steel);
  font-weight: 600;
}

.date-picker__day--selected {
  background: var(--bg-dark);
  color: var(--text-light) !important;
  font-weight: 500;
}

.date-picker__day--selected:hover {
  background: var(--accent-steel);
}

.date-picker__day:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer__nav h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__nav a:hover {
  color: var(--text-light);
}

.footer__contact h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__contact-item:hover {
  color: var(--text-light);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--accent-ice);
  color: var(--accent-ice);
  background: rgba(168, 196, 216, 0.08);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--space-lg);
  text-align: center;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }
.reveal-delay-7 { transition-delay: 700ms; }
.reveal-delay-8 { transition-delay: 800ms; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    gap: var(--space-xl);
  }

  .booking__inner {
    grid-template-columns: 1fr 1.2fr;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: center;
  }

  .nav__burger {
    display: none;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .about__metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__highlights {
    grid-template-columns: repeat(4, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 100%;
  }

  .process__steps::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .process-step__number {
    margin: 0 auto;
  }

  .testimonials__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .testimonial-card {
    flex: 0 1 calc((100% - 2 * 1.5rem) / 3);
  }
}

/* Large */
@media (min-width: 1440px) {
  :root {
    font-size: 17px;
  }
}

/* Mobile (< 768px) */
/* Testimonials dots — desktop hidden */
.testimonials__dots {
  display: none;
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Carousel wrapper breaks out of container padding so next card peeks */
  .testimonials__carousel {
    margin: 0 calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  }

  .testimonials__track {
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    padding-bottom: var(--space-md);
    scroll-padding-left: clamp(1.25rem, 4vw, 2.5rem);
  }

  .testimonial-card {
    flex: 0 0 78vw;
  }

  /* Dots indicator */
  .testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  }

  .testimonials__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }

  .testimonials__dot--active {
    background: var(--accent-ice);
    transform: scale(1.35);
  }

  .social-card {
    padding: var(--space-lg);
  }

  .booking__text {
    text-align: center;
    margin-bottom: var(--space-lg);
  }

  .booking__text .heading-lg br {
    display: none;
  }

  .booking__inner {
    display: block;
  }

  .booking__form-wrapper {
    padding: var(--space-lg);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: var(--space-md);
  }

  /* About section — magazine-style mobile layout */
  .about__grid {
    gap: 0;
    align-items: start;
  }

  .about__visual {
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
  }

  .about__visual-accent {
    display: none;
  }

  .about__text {
    position: relative;
    z-index: 2;
    margin-top: -2.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-xl) var(--space-lg) var(--space-sm);
    max-width: 100%;
  }

  .metric-card__number {
    font-size: 1.375rem;
    word-break: break-word;
  }

  /* Process steps — scroll highlight on mobile */
  .process-step {
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-step__number {
    transition: background 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-step__content h3,
  .process-step__content p {
    transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-steps-inited .process-step:not(.process-step--active) {
    opacity: 0.4;
  }

  .process-step--active .process-step__number {
    background: var(--accent-ice);
    color: var(--bg-dark);
    border-color: var(--accent-ice);
    box-shadow: 0 0 0 6px rgba(168, 196, 216, 0.18);
  }

  .process-step--active .process-step__content h3 {
    color: var(--accent-steel);
  }
}

/* Small mobile */
@media (max-width: 374px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .about__metrics {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__orb {
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
    opacity: 0.5;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__label,
  .hero__name,
  .hero__title,
  .hero__statement,
  .hero__ctas,
  .hero__scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ─── Focus Visible ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-ice);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-ice);
  outline-offset: 3px;
}

/* ─── Smooth Scroll Offset ──────────────────────────────────── */
[id] {
  scroll-margin-top: 80px;
}

/* ═══════════════════════════════════════════════════════════════
   TRANSFORMATIONS — Before / After Comparison Slider
   ═══════════════════════════════════════════════════════════════ */
.transformations {
  background: var(--bg-secondary);
}

.transformations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-xl);
}

/* ─── Card ───────────────────────────────────────────────────── */
.transform-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.transform-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* ─── Compare Wrapper ───────────────────────────────────────── */
.compare-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

/* ─── Panes ─────────────────────────────────────────────────── */
.compare-pane {
  position: absolute;
  inset: 0;
}

.compare-pane--after {
  clip-path: inset(0 50% 0 0);
}

/* ─── Images (gradient placeholders — replace src with real photos) ─ */
.compare-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-img__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.compare-img--b1 { background-image: image-set(url('../images/after1.webp') type('image/webp'), url('../images/after1.png') type('image/png')); background-size: cover; background-position: center top; }
.compare-img--b2 { background-image: url('../images/after2.jpg'); background-size: cover; background-position: center top; }
.compare-img--b3 { background-image: image-set(url('../images/after3.webp') type('image/webp'), url('../images/after3.png') type('image/png')); background-size: cover; background-position: center top; }

.compare-img--a1 { background-image: image-set(url('../images/before1.webp') type('image/webp'), url('../images/before1.png') type('image/png')); background-size: cover; background-position: center top; }
.compare-img--a2 { background-image: image-set(url('../images/before2.webp') type('image/webp'), url('../images/before2.png') type('image/png')); background-size: cover; background-position: center top; }
.compare-img--a3 { background-image: image-set(url('../images/before3.webp') type('image/webp'), url('../images/before3.png') type('image/png')); background-size: cover; background-position: center top; }

/* ─── Badges ────────────────────────────────────────────────── */
.compare-badge {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 8;
  pointer-events: none;
}

.compare-badge--before {
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.compare-badge--after {
  right: 1rem;
  background: rgba(15, 15, 26, 0.85);
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

/* ─── Handle ────────────────────────────────────────────────── */
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.compare-handle__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.compare-handle__btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    0 0 0 3px rgba(255, 255, 255, 0.6);
  pointer-events: all;
  cursor: ew-resize;
  transition: transform var(--duration-fast) var(--ease-out-back);
  color: var(--bg-dark);
}

.compare-handle__btn:hover {
  transform: scale(1.15);
}

.compare-handle__btn svg {
  flex-shrink: 0;
}

/* ─── Entry animation (JS-driven via class) ─────────────────── */
.compare-wrapper.is-animating .compare-pane--after {
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Caption ───────────────────────────────────────────────── */
.transform-card__caption {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--glass-border-light);
}

.transform-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.transform-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .transformations__grid {
    grid-template-columns: 1fr 1fr;
  }

  .transform-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .transformations__grid {
    grid-template-columns: 1fr;
  }

  .transform-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .compare-wrapper {
    aspect-ratio: 4 / 5;
  }
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: 6rem 0;
  background: var(--color-bg);
}

.faq__title {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent, #c9a96e);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.faq__answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  padding-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .faq {
    padding: 4rem 0;
  }

  .faq__question {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   STICKY TELEGRAM
═══════════════════════════════════════════════════════════ */
.sticky-tg {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #2AABEE;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(42, 171, 238, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 171, 238, 0.55);
}

@media (max-width: 768px) {
  .sticky-tg {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.heading--light { color: var(--text-light); }

.nav__cta--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}
