/* ============================================================
   Gayazov Mebel — premium bespoke furniture, Tashkent
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:            #070707;
  --bg-graphite:   #101010;
  --bg-warm:       #16120E;
  --bg-warm-deep:  #0a0908;
  --surface-light: #F4F0E8;
  --text:          #F4F0E8;
  --text-strong:   #FFFFFF;
  --text-dark:     #16120E;
  --muted:         #A6A09A;
  --muted-dark:    #5a544a;
  --champagne:     #C7A46A;
  --brass:         #A77A3D;

  --line:        rgba(244,240,232,0.14);
  --line-soft:   rgba(244,240,232,0.10);
  --line-faint:  rgba(244,240,232,0.08);
  --glass:       rgba(255,255,255,0.10);
  --glass-soft:  rgba(255,255,255,0.08);
  --glass-line:  rgba(255,255,255,0.18);

  --maxw: 1480px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--champagne); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}
.section { padding: clamp(80px, 11vw, 150px) 0; }
.section__title {
  margin: 22px 0 clamp(40px, 5vw, 68px);
  font-size: clamp(32px, 5.2vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 17ch;
  color: var(--text-strong);
}
.section__title--center { margin-left: auto; margin-right: auto; text-align: center; }
.champagne { color: var(--champagne); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
}
.eyebrow--sm { font-size: 12px; letter-spacing: 0.16em; }
.eyebrow--brass { color: var(--brass); }
.eyebrow__line { width: 28px; height: 1px; background: var(--champagne); display: inline-block; }
.eyebrow__line--sm { width: 18px; }
.eyebrow__line--brass { background: var(--brass); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease;
}
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--primary {
  background: var(--champagne);
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(199,164,106,0.28);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(199,164,106,0.42); }
.btn--glass {
  background: var(--glass-soft);
  color: var(--text);
  border-color: rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn--glass:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.20); }
.btn--ghost:hover { background: var(--glass-soft); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2000;
  border-bottom: 1px solid transparent;
  transition: background .5s ease, backdrop-filter .5s ease, border-color .5s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.header__brand { flex: 0 0 auto; display: flex; align-items: center; }
.header__logo { height: 42px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 36px; }
.header__nav a {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(244,240,232,0.7);
  transition: color .25s;
}
.header__nav a:hover { color: var(--champagne); }
.header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header__cta { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--glass-line); }
.header__cta:hover { transform: translateY(-2px); background: rgba(199,164,106,0.22); }
.header--scrolled {
  background: rgba(7,7,7,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-soft);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  padding: 0 13px;
}
.burger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(7,7,7,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-102%);
  opacity: 0;
  pointer-events: none;
  transition: transform .6s var(--ease), opacity .4s ease;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__brand { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.mobile-menu__close {
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.mobile-menu__nav a {
  font-size: clamp(32px, 9vw, 46px);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__cta { justify-content: center; padding: 18px; font-size: 17px; margin-top: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--bg); }
.hero__media { position: absolute; top: -10%; left: 0; right: 0; height: 120%; will-change: transform; }
.hero__img, .hero__media picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; animation: gm-zoom 5s var(--ease) both; }
.hero__scrim { position: absolute; inset: 0; }
.hero__scrim--x { background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 38%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0.30) 100%); }
.hero__scrim--y { background: linear-gradient(180deg, rgba(7,7,7,0.45) 0%, rgba(7,7,7,0) 26%, rgba(7,7,7,0) 55%, rgba(7,7,7,0.85) 100%); }
.hero__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(40px, 6vh, 72px); }
.hero__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: clamp(28px, 4vw, 56px); }
.hero__copy { flex: 1 1 520px; max-width: 880px; }
.hero__eyebrow { animation: gm-fade 0.9s var(--ease) 0.2s both; }
.hero__title {
  margin-top: 18px;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-size: clamp(40px, 5.6vw, 92px);
  color: var(--text-strong);
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero__line > span { display: block; animation: gm-rise 1.05s var(--ease) both; }
.hero__line:nth-child(1) > span { animation-delay: 0.32s; }
.hero__line:nth-child(2) > span { animation-delay: 0.42s; }
.hero__line:nth-child(3) > span { animation-delay: 0.52s; }
.hero__lead {
  margin-top: clamp(22px, 3vh, 30px);
  max-width: 560px;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.45;
  color: rgba(244,240,232,0.82);
  animation: gm-fade 0.9s var(--ease) 0.72s both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(24px, 3vh, 34px); animation: gm-fade 0.9s var(--ease) 0.86s both; }
.hero__facts { flex: 0 1 360px; animation: gm-fade 1s var(--ease) 0.9s both; will-change: transform; }
.hero__hint {
  position: absolute;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.45);
  animation: gm-fade 1s ease 1.4s both;
  transition: opacity .4s ease;
}

/* Glass facts card */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-line);
  border-radius: 22px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
}
.fact { padding: 20px 18px; }
.fact__value { font-size: clamp(26px, 2.4vw, 34px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-strong); }
.fact__value--sm { font-size: clamp(20px, 1.9vw, 25px); letter-spacing: -0.01em; }
.fact__label { font-size: 12.5px; color: rgba(244,240,232,0.62); margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px) 0;
}
.marquee__track { display: flex; width: max-content; animation: gm-marquee 34s linear infinite; }
.marquee__item { font-size: clamp(28px, 5vw, 72px); font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; color: var(--text); }

/* ---------- Cases ---------- */
.cases { background: var(--bg); }
.cases__grid { display: grid; grid-template-columns: minmax(0,0.82fr) minmax(0,1.18fr); gap: clamp(28px,4vw,64px); align-items: start; }
.case-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(20px,2.2vw,30px) 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity .4s, padding-left .4s;
}
.case-item--last { border-bottom: 1px solid var(--line); }
.case-item__name { font-size: clamp(21px,2.6vw,36px); font-weight: 500; letter-spacing: -0.025em; transition: color .4s; }
.case-item__arrow { font-size: 18px; color: var(--champagne); flex: 0 0 auto; transition: transform .4s var(--ease); }
.case-item.is-active { opacity: 1; padding-left: 14px; }
.case-item.is-active .case-item__name { color: var(--champagne); }
.case-item:hover .case-item__arrow { transform: translate(4px,-4px); }
.cases__hint { margin-top: 30px; font-size: 16px; line-height: 1.5; color: var(--muted); max-width: 400px; }
.eyebrow--sm { margin-top: 14px; }
.cases__stage { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-graphite); box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.case-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s var(--ease); }
.case-photo.is-active { opacity: 1; }
.cases__stage-shade { position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%); pointer-events: none; }

/* ---------- Categories ---------- */
.categories { background: var(--bg); padding-bottom: clamp(20px,4vw,56px); }
.categories__head { padding-bottom: clamp(36px,4vw,56px); }
.categories__list { border-top: 1px solid var(--line-soft); }
.panel { position: relative; display: block; height: clamp(150px,20vw,260px); overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.panel__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.panel__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,7,0.82) 0%, rgba(7,7,7,0.5) 40%, rgba(7,7,7,0.2) 100%); transition: background .6s ease; }
.panel__inner { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.panel__title-wrap { display: flex; align-items: baseline; gap: clamp(16px,2vw,34px); }
.panel__num { font-size: 13px; color: rgba(244,240,232,0.5); font-variant-numeric: tabular-nums; }
.panel__title { font-size: clamp(28px,4.4vw,60px); font-weight: 600; letter-spacing: -0.03em; color: var(--text-strong); }
.panel__meta { display: flex; align-items: center; gap: 20px; opacity: 0; transform: translateX(16px); transition: opacity .5s ease, transform .5s ease; }
.panel__desc { font-size: 15px; color: rgba(244,240,232,0.7); max-width: 280px; text-align: right; }
.panel__arrow { font-size: 22px; color: var(--champagne); }
.panel:hover .panel__img { transform: scale(1.06); }
.panel:hover .panel__overlay { background: linear-gradient(90deg, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.62) 45%, rgba(7,7,7,0.4) 100%); }
.panel:hover .panel__meta { opacity: 1; transform: translateX(0); }

/* ---------- Materials ---------- */
.materials { background: var(--bg-warm); }
.materials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); border-top: 1px solid rgba(244,240,232,0.12); }
.material { padding: 28px 30px 30px; border-bottom: 1px solid rgba(244,240,232,0.12); }
.material__num { font-size: 12px; color: var(--champagne); font-variant-numeric: tabular-nums; letter-spacing: 0.1em; }
.material__name { font-size: clamp(24px,2.4vw,30px); font-weight: 600; letter-spacing: -0.02em; margin-top: 14px; color: var(--text-strong); }
.material__desc { font-size: 15px; color: var(--muted); margin-top: 8px; line-height: 1.45; }

/* ---------- Why ---------- */
.why { background: var(--bg); position: relative; overflow: hidden; padding: clamp(80px,12vw,160px) 0; }
.why__glow { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 120%; height: 60%; background: radial-gradient(ellipse at center, rgba(199,164,106,0.10) 0%, rgba(7,7,7,0) 62%); pointer-events: none; }
.why__inner { position: relative; }
.why .section__title { font-size: clamp(34px,6vw,90px); line-height: 0.98; letter-spacing: -0.045em; max-width: 14ch; margin-bottom: clamp(48px,6vw,80px); }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(28px,3vw,48px); }
.stat { border-top: 1px solid rgba(244,240,232,0.16); padding-top: 28px; }
.stat__value { font-size: clamp(54px,7vw,108px); font-weight: 600; letter-spacing: -0.05em; line-height: 0.9; color: var(--text-strong); }
.stat__value--sm { font-size: clamp(34px,4vw,58px); letter-spacing: -0.03em; line-height: 0.95; }
.stat__label { font-size: 16px; color: var(--muted); margin-top: 18px; }

/* ---------- Process ---------- */
.process { background: var(--surface-light); color: var(--text-dark); }
.process .section__title { color: var(--text-dark); margin-bottom: 0; max-width: 18ch; font-size: clamp(30px,5vw,72px); }
.process__lead { margin-top: 20px; max-width: 620px; font-size: clamp(16px,1.4vw,20px); line-height: 1.5; color: var(--muted-dark); }
.process__timeline { position: relative; margin-top: clamp(40px,5vw,66px); }
.process__track { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(22,18,14,0.14); }
.process__track-fill { position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--brass); box-shadow: 0 0 12px rgba(167,122,61,0.5); transition: width .3s linear, height .3s linear; }
.process__grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; padding-top: 26px; }
.process__step { border: 1px solid transparent; border-radius: 16px; padding: 22px 18px 24px; background: transparent; transition: background .6s ease, border-color .6s ease, box-shadow .6s ease; }
.process__num { display: block; font-size: clamp(34px,3vw,48px); font-weight: 600; letter-spacing: -0.04em; color: var(--brass); line-height: 1; opacity: 0.3; transition: opacity .6s ease; }
.process__body { opacity: 0.5; transition: opacity .6s ease; }
.process__step-title { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-top: 18px; }
.process__text { font-size: 14.5px; color: var(--muted-dark); margin-top: 8px; line-height: 1.5; }
.process__step.is-on { background: rgba(167,122,61,0.06); }
.process__step.is-on .process__num { opacity: 1; }
.process__step.is-on .process__body { opacity: 1; }
.process__step.is-current { border-color: rgba(167,122,61,0.45); box-shadow: 0 14px 40px rgba(167,122,61,0.14); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-graphite); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.review__mark { font-size: 64px; line-height: 0.6; color: var(--champagne); font-weight: 600; height: 32px; }
.review__quote { margin-top: 18px; font-size: 19px; line-height: 1.5; color: var(--text); flex: 1; font-style: normal; }
.review__author { margin-top: 28px; font-size: 16px; font-weight: 600; color: var(--text-strong); display: flex; flex-direction: column; }
.review__role { font-size: 13.5px; color: var(--muted); margin-top: 2px; font-weight: 400; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--bg); }
.cta__media { position: absolute; top: -10%; left: 0; right: 0; height: 120%; will-change: transform; }
.cta__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,0.7) 0%, rgba(7,7,7,0.55) 50%, rgba(7,7,7,0.82) 100%); }
.cta__content { position: relative; max-width: 920px; padding-top: clamp(100px,15vw,200px); padding-bottom: clamp(100px,15vw,200px); text-align: center; }
.cta__title { margin: 0 auto; font-size: clamp(36px,6.4vw,96px); line-height: 0.98; letter-spacing: -0.045em; font-weight: 600; max-width: 16ch; color: var(--text-strong); }
.cta__lead { margin: 26px auto 0; max-width: 600px; font-size: clamp(16px,1.5vw,21px); line-height: 1.5; color: rgba(244,240,232,0.78); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: clamp(32px,4vw,46px); }
.cta__note { margin-top: 26px; font-size: 15px; color: rgba(244,240,232,0.5); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 3000; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,4,4,0.74); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); opacity: 0; transition: opacity .45s ease; }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__close {
  position: absolute;
  top: clamp(14px,2vw,24px);
  right: clamp(14px,2vw,24px);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.modal__close:hover { background: rgba(199,164,106,0.28); transform: rotate(90deg); }
.modal__scroll { position: relative; width: 100%; height: 100%; overflow-y: auto; display: flex; align-items: flex-start; justify-content: center; padding: clamp(14px,5vh,72px) clamp(12px,4vw,40px); }
.modal__panel {
  display: none;
  width: 100%;
  max-width: 940px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-warm-deep) 100%);
  border: 1px solid rgba(199,164,106,0.22);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 60px 150px rgba(0,0,0,0.7);
}
.modal__panel.is-active { display: block; animation: gm-modal 0.5s var(--ease) both; }
.modal__hero { position: relative; height: clamp(230px,38vw,420px); }
.modal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal__hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,0.2) 0%, rgba(7,7,7,0) 40%, rgba(10,9,8,0.85) 100%); }
.modal__tag { position: absolute; left: 0; bottom: 0; padding: clamp(24px,4vw,44px); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 600; }
.modal__body { padding: clamp(26px,4vw,48px); }
.modal__title { font-size: clamp(26px,3.4vw,46px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 600; color: var(--text-strong); max-width: 18ch; }
.modal__text { margin-top: 20px; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: rgba(244,240,232,0.78); max-width: 64ch; }
.modal__subhead { margin-top: clamp(26px,3vw,38px); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); font-weight: 600; }
.modal__features { margin-top: 14px; border-top: 1px solid var(--line-soft); }
.modal__features li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line-faint); font-size: 16px; line-height: 1.45; color: rgba(244,240,232,0.85); }
.modal__features li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); margin-top: 8px; flex: 0 0 auto; }
.modal__features strong { color: var(--text-strong); font-weight: 600; }
.modal__rooms { margin-top: 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 14px; }
.modal__room { border: 1px solid var(--line-soft); border-radius: 16px; padding: 22px 22px 24px; background: rgba(255,255,255,0.02); }
.modal__room-title { font-size: 18px; font-weight: 600; color: var(--text-strong); letter-spacing: -0.01em; }
.modal__room-text { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: rgba(244,240,232,0.74); }
.modal__body .btn { margin-top: clamp(26px,3vw,36px); }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line-soft); padding: clamp(52px,6vw,80px) 0 38px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); display: inline-block; }
.footer__name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.footer__about { margin-top: 16px; font-size: 15px; color: var(--muted); line-height: 1.55; max-width: 260px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer__col-title { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #6f6a62; font-weight: 600; margin-bottom: 6px; }
.footer__col a { color: rgba(244,240,232,0.82); transition: color .25s; }
.footer__col a:hover { color: var(--champagne); }
.footer__phone { color: var(--text) !important; font-weight: 500; }
.footer__bottom { margin-top: clamp(44px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13.5px; color: #6f6a62; }

/* ---------- Reviews page: invite + platform cards ---------- */
.invite { position: relative; overflow: hidden; padding: clamp(140px, 18vh, 220px) 0 clamp(64px, 8vw, 110px); }
.invite__glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 130%; height: 70%; background: radial-gradient(ellipse at center, rgba(199,164,106,0.12) 0%, rgba(7,7,7,0) 60%); pointer-events: none; }
.invite__inner { position: relative; max-width: 780px; }
.invite__title { margin: 22px 0 0; font-size: clamp(40px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.045em; font-weight: 600; color: var(--text-strong); }
.invite__lead { margin: clamp(22px, 3vh, 30px) 0 0; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.5; color: rgba(244,240,232,0.80); max-width: 620px; }
.invite__note { margin: clamp(32px, 4vw, 46px) 0 0; font-size: 15px; color: var(--muted); }

.platforms { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); margin-top: clamp(40px, 5vw, 60px); }
.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--glass-line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}
.platform-card:hover { transform: translateY(-6px); border-color: rgba(199,164,106,0.5); box-shadow: 0 44px 96px rgba(0,0,0,0.5); }
.platform-card__top { display: flex; align-items: center; gap: 18px; }
.platform-card__mark {
  width: 60px; height: 60px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 600;
  color: var(--champagne);
  background: rgba(199,164,106,0.14);
  border: 1px solid rgba(199,164,106,0.32);
}
.platform-card__name { font-size: clamp(23px, 2.3vw, 30px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-strong); }
.platform-card__sub { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.platform-card__stars { font-size: 22px; color: var(--champagne); letter-spacing: 4px; }
.platform-card__desc { font-size: 16px; line-height: 1.5; color: rgba(244,240,232,0.78); flex: 1; }
.platform-card__cta { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--champagne); }
.platform-card__arrow { transition: transform .35s var(--ease); }
.platform-card:hover .platform-card__arrow { transform: translate(4px, -4px); }

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

/* ---------- About page ---------- */
.about-hero { position: relative; overflow: hidden; padding: clamp(140px, 18vh, 210px) 0 0; }
.about-hero__glow { position: absolute; top: -8%; left: 50%; transform: translateX(-50%); width: 130%; height: 65%; background: radial-gradient(ellipse at center, rgba(199,164,106,0.12) 0%, rgba(7,7,7,0) 60%); pointer-events: none; }
.about-hero__inner { position: relative; max-width: 900px; }
.about-hero__title { margin: 22px 0 0; font-size: clamp(40px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.045em; font-weight: 600; color: var(--text-strong); max-width: 16ch; }
.about-hero__lead { margin: clamp(22px, 3vh, 30px) 0 0; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.5; color: rgba(244,240,232,0.80); max-width: 640px; }

.editorial { position: relative; margin: clamp(48px, 6vw, 80px) 0 0; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 9; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.editorial__img { width: 100%; height: 100%; object-fit: cover; }
.editorial__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(7,7,7,0.7) 100%); }
.editorial__cap { position: absolute; left: 0; bottom: 0; padding: clamp(20px, 3vw, 36px); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--champagne); font-weight: 600; }

.about-stats { background: var(--bg); }
.about-stats .section__title { margin-bottom: clamp(40px, 5vw, 64px); }

.about-values { background: var(--bg-warm); }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); border-top: 1px solid var(--line); }
.value { padding: 30px 0 32px; border-bottom: 1px solid var(--line); }
.value:not(:last-child) { padding-right: clamp(20px, 3vw, 48px); }
.value__name { font-size: clamp(22px, 2.2vw, 28px); font-weight: 600; letter-spacing: -0.02em; color: var(--text-strong); }
.value__desc { margin-top: 12px; font-size: 16px; line-height: 1.55; color: var(--muted); max-width: 42ch; }

.statement { background: var(--bg); }
.statement__inner { max-width: 1100px; }
.statement__text { margin: 26px 0 0; font-size: clamp(26px, 3.4vw, 52px); line-height: 1.2; letter-spacing: -0.03em; font-weight: 600; color: var(--text-strong); max-width: 22ch; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes gm-rise { from { transform: translateY(112%); } to { transform: translateY(0); } }
@keyframes gm-fade { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes gm-zoom { from { transform: scale(1.16); } to { transform: scale(1); } }
@keyframes gm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gm-modal { from { opacity: 0; transform: scale(0.96) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .header__nav, .header__cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 899px) {
  .cases__grid { grid-template-columns: 1fr; }
}
@media (max-width: 719px) {
  .process__grid { grid-template-columns: 1fr; padding-top: 0; padding-left: 26px; }
  .process__track { top: 0; left: 0; right: auto; bottom: 0; width: 2px; height: auto; }
  .process__track-fill { width: 2px; height: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
