/* ─────────────────────────────────────────────
   SHAHREZADA — Premium Luxury CSS
   ───────────────────────────────────────────── */

:root {
  --c-bg:         #080604;
  --c-surface:    #0f0c09;
  --c-surface-2:  #161209;
  --c-gold:       #c9a87c;
  --c-gold-light: #e8d5b0;
  --c-gold-dim:   #7a6547;
  --c-gold-glow:  rgba(201,168,124,.12);
  --c-text:       #f0ebe2;
  --c-text-2:     #9a8d7e;
  --c-text-3:     #5c5148;
  --c-border:     rgba(201,168,124,.15);
  --c-border-2:   rgba(201,168,124,.06);

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-in-expo:  cubic-bezier(0.7,0,0.84,0);
  --ease-circ:     cubic-bezier(0.85,0,0.15,1);

  --section-pad: clamp(80px, 12vw, 160px);
}

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

html {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold-dim) var(--c-bg);
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-gold-dim); }
::selection { background: var(--c-gold); color: var(--c-bg); }

body {
  background: var(--c-bg);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: none; font-family: inherit; }
ul { list-style: none; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 6px 1px rgba(201,168,124,.6);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  z-index: 9998;
  opacity: .6;
  will-change: transform;
  transition: width .3s var(--ease-out-expo), height .3s var(--ease-out-expo), opacity .3s;
}
.cursor-ring.expand { width: 60px; height: 60px; opacity: .3; }

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: var(--f-sans);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  display: block;
}
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.section-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 14px 36px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease-out-expo);
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.btn:hover::before { transform: scaleX(1); }

.btn--gold {
  background: var(--c-gold);
  color: var(--c-bg);
}
.btn--gold::before { background: #fff; }
.btn--gold:hover { color: var(--c-bg); }

.btn--ghost {
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.btn--ghost::before { background: var(--c-gold); }
.btn--ghost:hover { color: var(--c-bg); border-color: var(--c-gold); }

.btn--sm { padding: 10px 24px; font-size: 11px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background .5s, padding .5s, backdrop-filter .5s;
  mix-blend-mode: normal;
}
.nav.scrolled {
  background: rgba(8,6,4,.85);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--c-border-2);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  width: 140px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,124,.35));
  transition: width .5s, max-height .5s;
}
.nav.scrolled .nav__logo-img {
  width: 110px;
  max-height: 32px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text-2);
  transition: color .3s;
}
.nav__links a:hover { color: var(--c-gold-light); }
.nav__cta {
  border: 1px solid var(--c-gold) !important;
  color: var(--c-gold) !important;
  padding: 8px 20px;
  transition: background .3s, color .3s !important;
}
.nav__cta:hover { background: var(--c-gold) !important; color: var(--c-bg) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 1px; background: var(--c-text); transition: .3s; }

/* ─── 1. HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .25;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__silk-overlay,
.hero__smoke-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__silk-overlay img {
  object-fit: cover;
  opacity: .08;
  mix-blend-mode: screen;
}
.hero__smoke-overlay img {
  object-fit: cover;
  opacity: .15;
  mix-blend-mode: screen;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  width: 100% !important;
  height: 100% !important;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(8,6,4,.7) 100%),
    linear-gradient(to top, rgba(8,6,4,.9) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,6,4,.4) 0%, transparent 30%);
}
.hero__content {
  position: relative;
  padding: 0 clamp(30px, 8vw, 120px);
  pointer-events: all;
}
.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.02em;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.hero__title-mask {
  display: block;
  overflow: hidden;
}
.hero__title-line {
  display: block;
}
.hero__title-line--italic {
  font-style: italic;
  color: var(--c-gold-light);
  padding-left: clamp(60px, 8vw, 120px);
}
.hero__sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 480px;
  font-weight: 300;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: clamp(30px, 8vw, 120px);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
  pointer-events: none;
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-3);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── REVEAL ANIMATIONS (initial state) ─── */
.reveal-chars .char,
.reveal-words .word,
.reveal-line,
.reveal-fade,
.reveal-up,
.reveal-scale {
  will-change: transform, opacity;
}

/* ─── 2. BRAND ─── */
.brand {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.brand::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0; bottom: 0;
  background: var(--c-surface);
  z-index: -1;
}
.brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.brand__text { color: var(--c-text-2); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.8; font-weight: 300; }
.brand__text p + p { margin-top: 1.5em; }
.brand__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.brand__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,6,4,.6));
}
.brand__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.brand__stat { text-align: center; }
.brand__stat-num {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.brand__stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text-3);
}
.brand__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  padding: 6px 16px;
  border: 1px solid var(--c-border);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

/* ─── VIDEO SECTIONS ─── */
.video-section {
  position: relative;
  height: 200vh;
}
.video-section__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.video-section__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-section__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,6,4,.85) 0%, rgba(8,6,4,.4) 50%, transparent 100%);
  z-index: 1;
}
.video-section--right .video-section__vignette {
  background:
    linear-gradient(to left, rgba(8,6,4,.85) 0%, rgba(8,6,4,.4) 50%, transparent 100%);
}
.video-section__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 clamp(30px, 8vw, 120px);
  gap: clamp(40px, 5vw, 80px);
}
.video-section--right .video-section__content { justify-content: flex-end; }
.video-section__text { max-width: 500px; }
.video-section--right .video-section__text { text-align: right; }
.video-section__price {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--c-gold-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.video-section__price strong { font-weight: 400; }
.video-section__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.video-section__image-accent {
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 2/3;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--c-border);
  opacity: .8;
}

/* ─── SERVICE LIST ─── */
.service-list { margin-bottom: 2.5rem; }
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border-2);
  gap: 20px;
}
.service-item:first-child { border-top: 1px solid var(--c-border-2); }
.service-item__name { font-size: clamp(13px, 1.1vw, 15px); color: var(--c-text-2); font-weight: 300; }
.service-item__price { font-family: var(--f-serif); font-size: clamp(14px, 1.2vw, 16px); color: var(--c-gold); white-space: nowrap; flex-shrink: 0; }

/* ─── TAG CLOUD ─── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.tag { padding: 5px 14px; border: 1px solid var(--c-border); font-size: 11px; letter-spacing: .08em; color: var(--c-text-3); }

/* ─── 7. SPA PROGRAMS ─── */
.programs {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
  overflow: hidden;
}
.programs__inner { max-width: 1400px; margin: 0 auto; }
.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
  margin-top: clamp(40px, 5vw, 60px);
}
.program-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: none;
}
.program-card__bg {
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease-out-expo);
}
.program-card:hover .program-card__bg { transform: scale(1.06); }
.program-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,.9) 0%, rgba(8,6,4,.2) 60%);
}
.program-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  z-index: 1;
}
.program-card__label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.program-card__title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.2;
}
.program-card__price {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--c-gold-light);
  margin-bottom: 20px;
  font-weight: 300;
}
.program-card .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s var(--ease-out-expo);
}
.program-card:hover .btn { opacity: 1; transform: translateY(0); }

/* ─── 8. SERVICES ─── */
.services {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
  background: var(--c-surface);
}
.services__inner { max-width: 1400px; margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px);
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--c-border-2);
  padding-top: clamp(40px, 5vw, 60px);
}
.services__col-title {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--c-gold-light);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}

/* ─── 9. GALLERY ─── */
.gallery {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.gallery__header {
  padding: 0 clamp(30px, 8vw, 120px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.gallery__sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--c-text-2);
  font-weight: 300;
  max-width: 480px;
}
.gallery__track-wrap { overflow: hidden; }
.gallery__track {
  display: flex;
  gap: 2px;
  will-change: transform;
}
.gallery__item {
  flex-shrink: 0;
  width: clamp(280px, 28vw, 420px);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.gallery__item img {
  transition: transform .8s var(--ease-out-expo);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ─── 10. WHY US ─── */
.why {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.why__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-top: 40px;
}
.why__items { display: flex; flex-direction: column; gap: 0; }
.why__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border-2);
}
.why__item:first-child { border-top: 1px solid var(--c-border-2); }
.why__num {
  font-family: var(--f-serif);
  font-size: 13px;
  color: var(--c-gold-dim);
  min-width: 28px;
  padding-top: 2px;
}
.why__item p { font-size: clamp(14px, 1.2vw, 16px); color: var(--c-text-2); line-height: 1.6; font-weight: 300; }

/* ─── 11. TESTIMONIALS ─── */
.testimonials {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
  background: var(--c-surface);
  overflow: hidden;
}
.testimonials__inner { max-width: 1000px; margin: 0 auto; }
.testimonials__slider {
  position: relative;
  min-height: 220px;
  margin-top: clamp(40px, 5vw, 60px);
}
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.testimonial.exit {
  opacity: 0;
  transform: translateX(-30px);
}
.testimonial__stars {
  color: var(--c-gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial__text {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 24px;
}
.testimonial__author {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.testimonials__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}
.testimonials__btn {
  font-size: 20px;
  color: var(--c-text-3);
  transition: color .3s;
  padding: 4px;
}
.testimonials__btn:hover { color: var(--c-gold); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot {
  width: 24px; height: 1px;
  background: var(--c-text-3);
  transition: background .3s, width .3s;
  cursor: none;
}
.testimonials__dot.active { width: 40px; background: var(--c-gold); }

/* ─── 12. GIFTS ─── */
.gifts {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.gifts__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gifts__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,.75);
}
.gifts__content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vw, 120px) clamp(30px, 8vw, 120px);
  max-width: 700px;
}
.gifts__text {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ─── 13. FAQ ─── */
.faq {
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
}
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__list { margin-top: clamp(40px, 5vw, 60px); }
.faq__item { border-bottom: 1px solid var(--c-border-2); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--c-text);
  text-align: left;
  transition: color .3s;
  gap: 20px;
  font-weight: 300;
}
.faq__q:hover { color: var(--c-gold); }
.faq__icon {
  font-size: 20px;
  color: var(--c-gold);
  transition: transform .4s var(--ease-out-expo);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out-expo);
}
.faq__item.open .faq__a { max-height: 200px; }
.faq__a p {
  padding-bottom: 24px;
  font-size: clamp(14px, 1.2vw, 15px);
  color: var(--c-text-2);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── 14. CONTACTS ─── */
.contacts {
  position: relative;
  padding: var(--section-pad) clamp(30px, 8vw, 120px);
  overflow: hidden;
}
.contacts__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .3;
}
.contacts__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right center, rgba(8,6,4,.4) 0%, rgba(8,6,4,.95) 70%);
}
.contacts__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.contacts__info { margin-top: 2rem; display: flex; flex-direction: column; gap: 24px; }
.contacts__row { display: flex; gap: 20px; align-items: flex-start; }
.contacts__icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contacts__label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 4px; }
.contacts__row p, .contacts__row a { font-size: clamp(14px, 1.2vw, 16px); color: var(--c-text-2); font-weight: 300; line-height: 1.5; }
.contacts__link { color: var(--c-text-2); transition: color .3s; }
.contacts__link:hover { color: var(--c-gold); }
.contacts__cta { display: flex; gap: 16px; margin-top: 2rem; }
.contacts__form-wrap {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  padding: clamp(32px, 4vw, 56px);
}
.contacts__form-wrap h3 {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--c-gold-light);
}
.form-group { margin-bottom: 16px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border-2);
  border-bottom-color: var(--c-border);
  padding: 14px 18px;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: border-color .3s;
  border-radius: 0;
  appearance: none;
}
.form-input::placeholder { color: var(--c-text-3); }
.form-input:focus { border-color: var(--c-gold); }
.form-select { cursor: none; background-image: none; }
.form-select option { background: var(--c-surface-2); color: var(--c-text); }

/* ─── 15. FOOTER ─── */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border-2);
  padding: 80px clamp(30px, 8vw, 120px) 40px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--c-border-2);
  flex-wrap: wrap;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo-img {
  width: 180px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201,168,124,.4));
}
.footer__tagline {
  font-size: 13px;
  color: var(--c-text-3);
  margin-bottom: 20px;
  font-weight: 300;
}
.footer__rating { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--c-text-2); }
.footer__stars { color: var(--c-gold); letter-spacing: 2px; }
.footer__links { display: flex; gap: 80px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}
.footer__col a, .footer__col p {
  font-size: 13px;
  color: var(--c-text-3);
  transition: color .3s;
  font-weight: 300;
}
.footer__col a:hover { color: var(--c-text-2); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--c-text-3);
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── GOLD ORNAMENT LINES ─── */
.section-divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, var(--c-gold), transparent);
  margin-bottom: 2rem;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--c-gold-dim), var(--c-gold));
  z-index: 2000;
  transform-origin: left;
  transform: scaleX(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .brand__inner { grid-template-columns: 1fr; }
  .brand__right { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand__image-wrap { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .contacts__inner { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; }
  .why__image { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__title { font-size: clamp(48px, 14vw, 80px); }
  .hero__title-line--italic { padding-left: 32px; }
  .video-section__content { padding: 0 24px; }
  .video-section__image-accent { display: none; }
  .programs__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 40px; }
  .brand__right { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .programs__grid { grid-template-columns: 1fr; }
  .contacts__cta { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── MOBILE NAV MENU ─── */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease-out-expo);
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--c-text-2);
  letter-spacing: .05em;
  transition: color .3s;
}
.nav__mobile a:hover { color: var(--c-gold-light); }
