/* ===========================================================================
   Empress — Xohishlar xaritasi / Landing
   Mobile-first. Breakpointlar:
     - Telefon:   < 760px   (asosiy uslub)
     - Planshet:  >= 760px
     - Kompyuter: >= 1024px
   Ranglar/radiuslar :root da token sifatida — Django'da yoki temada oson o'zgaradi.
   =========================================================================== */

:root {
  /* Brend ranglari */
  --accent:       #FF2E8B;
  --accent-soft:  #FFE1EE;
  --accent-dark:  #C40A63;
  --accent-ring:  #FF6FB0;

  --bg:        #FFF3F7;
  --surface:   #ffffff;
  --ink:       #1A1A1A;
  --ink-2:     #201017;
  --muted:     #5C4552;
  --muted-2:   #8A7480;
  --muted-3:   #B79AA8;
  --line:      #F3D8E4;
  --line-2:    #F0DCE6;

  /* Burchak radiuslari (pilyula uslubi) */
  --r-pill:    100px;
  --r-card-lg: 40px;
  --r-card-md: 28px;
  --r-photo:   20px;
  --r-input:   14px;
  --r-button:  16px;

  /* Konteyner va bo'shliqlar */
  --side-pad:  20px;
  --maxw:      1440px;

  /* Shriftlar */
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

/* "Arxitektura" (o'tkir burchak) temasi — <body data-corners="sharp"> */
body[data-corners="sharp"] {
  --r-pill:    10px;
  --r-card-lg: 14px;
  --r-card-md: 10px;
  --r-photo:   8px;
  --r-input:   8px;
  --r-button:  8px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
/* Gorizontal siljishni butunlay bloklash (iOS Safari ham) */
html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: #fff; }

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

.container { max-width: var(--maxw); margin: 0 auto; }

/* Faqat ekran o'quvchilar uchun */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------- Umumiy UI */
.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; padding: 10px 18px; font-size: 14px; }
.btn--accent:hover { background: var(--accent-dark); color: #fff; }
.btn--dark   { background: var(--ink); color: #fff; padding: 18px 32px; font-size: 16px; }
.btn--dark:hover { color: #fff; }

.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark);
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 36px);
  color: var(--accent);
}

/* Portret foto ramkasi (bio / dream) */
.photo {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-photo);
  object-fit: cover;
  background: #EDE0E6;
}
.photo--framed {
  box-shadow: 0 0 0 6px #fff, 0 0 0 9px var(--accent-ring);
}
/* Rasm hali qo'shilmaganda (Django admin keyin to'ldiradi) — placeholder */
.photo--empty {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  color: var(--muted-2); font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, #F7E7EF, #EFE0E8);
}

/* Reveal (scroll animatsiyalari) */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.22,.68,.34,1),
              transform .9s cubic-bezier(.22,.68,.34,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-pop {
  opacity: 0; transform: translateY(28px) scale(.96);
  transition: opacity 1s cubic-bezier(.22,.68,.34,1),
              transform 1s cubic-bezier(.22,.68,.34,1);
}
.reveal-pop.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Ketma-ket (stagger) paydo bo'lish — kartalar birin-ketin chiqadi */
.kit__grid  .reveal:nth-child(2), .bio__quotes .reveal:nth-child(2),
.gallery    .reveal:nth-child(2), .feedback__grid .reveal:nth-child(2),
.bio__photos .reveal:nth-child(2) { transition-delay: .12s; }
.kit__grid  .reveal:nth-child(3), .bio__quotes .reveal:nth-child(3),
.gallery    .reveal:nth-child(3), .feedback__grid .reveal:nth-child(3),
.bio__photos .reveal:nth-child(3) { transition-delay: .24s; }
.kit__grid  .reveal:nth-child(4), .bio__quotes .reveal:nth-child(4),
.gallery    .reveal:nth-child(4) { transition-delay: .36s; }

/* =========================================================================
   NAV
   ========================================================================= */
/* Yopishqoq (sticky) panel — scroll paytida ham ko'rinib turadi */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,243,247,0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(243,216,228,0.55);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(8px, 2vw, 16px);
  padding: 10px var(--side-pad);
  max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0; color: var(--ink); flex: none; }
.brand:hover { color: var(--ink); }
.brand__word {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 6vw, 40px); letter-spacing: -0.01em; color: var(--ink);
}
.brand__logo {
  height: clamp(30px, 7.5vw, 52px); width: auto; margin: 0 -3px;
  transform-origin: bottom center;
}
.nav__actions {
  display: flex; align-items: center; gap: clamp(6px, 1.8vw, 16px);
  flex-wrap: nowrap; justify-content: flex-end; min-width: 0;
}

/* Til almashtirgich */
.lang {
  display: flex; align-items: center; gap: 2px;
  background: #fff; border-radius: var(--r-pill); padding: 3px; flex: none;
}
.lang__btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 8px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.lang__btn.is-active { background: var(--accent); color: #fff; }
.flag {
  width: 16px; height: 11px; border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column; flex: none;
}
.flag > span { flex: 1; }

.nav__links { display: none; }              /* telefon/planshetda yashirin */
.nav__cta-mobile {                          /* telefon/planshetda ko'rinadi */
  display: inline-block;
  padding: 9px 13px; font-size: 12.5px;
}

/* Juda tor ekranlar (<380px) — til tugmalarida faqat bayroq qoladi */
@media (max-width: 379px) {
  .lang__btn { font-size: 0; gap: 0; padding: 7px; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; /* dollar yomg'iri butun hero bo'ylab yog'ishi uchun */
  max-width: 1489px; margin: 0 auto;
  padding: 24px var(--side-pad) 0;
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
.hero__text { position: relative; z-index: 1; padding-bottom: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 8px 16px;
  border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 9vw, 80px);
  line-height: 0.98; letter-spacing: -0.01em; margin: 0 0 28px;
  min-height: 2.9em; /* matn yozilayotganda sakramasligi uchun */
}
.hero__title .accent { font-style: italic; color: var(--accent); }
.caret {
  border-right: 3px solid var(--accent); margin-left: 2px;
  animation: caretBlink 1s step-end infinite;
}
.caret.is-done { animation: none; opacity: 0; }
@keyframes caretBlink { 50% { border-color: transparent; } }

.hero__desc {
  font-size: 19px; line-height: 1.6; color: var(--muted);
  max-width: 460px; margin: 0 0 40px;
}
.hero__actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
/* Kichik telefonlarda CTA to'liq kenglikda, narx pastda markazda */
@media (max-width: 479px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__actions .btn--dark { text-align: center; padding: 17px 24px; }
  .price { justify-content: center; }
}
.price {
  display: flex; align-items: baseline; gap: 10px;
  background: #fff; padding: 16px 24px; border-radius: var(--r-pill);
}
.price__old {
  font-size: 14px; color: var(--muted-3);
  text-decoration: line-through; text-decoration-color: var(--accent);
}
.price__new { font-size: 15px; font-weight: 700; color: var(--ink); }

.hero__play {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 24px; font-weight: 700; font-size: 18px; color: var(--ink);
}
.hero__play:hover { color: var(--ink); }
.play-dot {
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); flex: none;
}

.hero__media { position: relative; z-index: 1; height: 380px; }
.hero__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(320px, 62vw, 640px); height: clamp(320px, 62vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%,
    var(--accent) 0%, var(--accent) 45%, transparent 72%);
  filter: blur(46px); opacity: 0.38; pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.34; }
  50%      { opacity: 0.46; }
}
.hero__photo {
  position: absolute; inset: -40px -20px;
  width: calc(100% + 40px); height: calc(100% + 80px);
  object-fit: contain;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Tushayotgan dollar belgilari — .hero ni to'liq qoplaydi */
.dollars {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.dollar-float {
  position: absolute; top: 0; opacity: 0; /* delay paytida ko'rinmaydi */
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--accent);
  animation: fallDollar linear infinite;
  text-shadow: 0 4px 16px rgba(255,46,139,0.25);
  will-change: transform, opacity;
}
@keyframes fallDollar {
  0%   { transform: translateY(-12vh) rotate(var(--r,0deg)); opacity: 0; }
  10%  { opacity: var(--o,0.5); }
  82%  { opacity: var(--o,0.5); }
  100% { transform: translateY(106vh) rotate(var(--r,0deg)); opacity: 0; }
}

/* Logo tushish animatsiyasi */
@keyframes logoFallSlow {
  0%   { transform: translateY(-220px) rotate(-10deg); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); }
}
.logo-icon { animation: logoFallSlow 2.8s ease-in 1 both; }

/* =========================================================================
   BIO
   ========================================================================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: 64px var(--side-pad); }
.section--narrow { max-width: 1200px; }
.section--tight  { padding-top: 0; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .kicker { display: block; margin-bottom: 14px; }

.bio__photos { display: grid; grid-template-columns: 1fr; gap: 24px; }
.bio__quotes {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px;
}
.quote-card {
  background: var(--accent-soft); border-radius: var(--r-photo);
  padding: 30px 26px; border-top: 3px solid var(--accent);
}
.quote-card__mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 40px; line-height: 0.7; color: var(--accent); margin-bottom: 12px;
}
.quote-card__text { font-size: 15px; line-height: 1.7; color: #3A2A32; }

/* =========================================================================
   VIDEO
   ========================================================================= */
.video__frame {
  position: relative; border-radius: var(--r-card-md); overflow: hidden;
  height: 340px; background: #EDE0E6; cursor: pointer;
}
.video__frame iframe { display: block; width: 100%; height: 100%; }
.video__cover { width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video__play > span {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--ink);
}

/* =========================================================================
   KIT (nima kiradi)
   ========================================================================= */
.kit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kit-card {
  background: #fff; border-radius: var(--r-photo);
  padding: 26px 16px; text-align: center;
}
.kit-card__icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 16px;
}
.kit-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; }
.kit-card p  { font-size: 13px; line-height: 1.55; color: var(--muted-2); margin: 0; }

/* =========================================================================
   GALEREYA (dreams / aesthetics)
   ========================================================================= */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gallery__item { position: relative; }
.gallery__caption {
  position: absolute; left: 10px; bottom: 10px;
  max-width: calc(100% - 20px);
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.94); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
  padding: 6px 11px; border-radius: var(--r-pill);
  white-space: nowrap; overflow: hidden;
}
.gallery__caption > span:last-child {
  min-width: 0; overflow: hidden; text-overflow: ellipsis;
}
.gallery__caption .num { color: var(--accent); flex: none; }

.aesthetics__head { text-align: center; }
.aesthetics__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 44px); margin: 0 0 4px;
}
.aesthetics__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; color: var(--accent); margin-bottom: 20px;
}
.aesthetics__rule { width: 60px; height: 2px; background: var(--accent); margin: 0 auto 48px; }

/* =========================================================================
   FEEDBACK
   ========================================================================= */
.feedback__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.feedback-card {
  background: #fff; border-radius: var(--r-card-md);
  padding: 28px 24px 32px; text-align: center;
  box-shadow: 0 16px 40px rgba(30,10,20,0.07); min-width: 0;
}
.feedback-card .photo { margin-bottom: 20px; }
.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 14px; color: var(--accent); font-size: 17px; }
.feedback-card__mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 36px; line-height: 0.5; color: var(--accent); margin-bottom: 8px;
}
.feedback-card__quote { font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.feedback-card__name { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 900px; }
.faq__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 44px); text-align: center; margin: 0 0 48px;
}
.faq-row {
  border-bottom: 1px solid var(--line); padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
}
.faq-row__q { font-size: 17px; font-weight: 600; }
.faq-row__sign { font-size: 20px; color: var(--accent); flex: none; }
.faq-answer {
  padding: 0 4px; font-size: 15px; line-height: 1.6; color: var(--muted);
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.is-open { max-height: 600px; padding: 0 4px 22px; }
.faq__more { text-align: center; margin-top: 32px; }
.faq__more button {
  border: 1.5px solid var(--accent); color: var(--accent);
  font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: var(--r-pill);
  transition: background .2s ease, color .2s ease;
}
.faq__more button:hover { background: var(--accent); color: #fff; }

/* =========================================================================
   ORDER
   ========================================================================= */
.order__card {
  background: var(--ink); border-radius: var(--r-card-lg);
  padding: 32px 18px;
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: start; position: relative; overflow: hidden;
}
.order__glow {
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; background: var(--accent);
  border-radius: 50%; filter: blur(10px); opacity: 0.35; pointer-events: none;
}
.order__headline {
  grid-column: 1 / -1;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 5vw, 44px); text-align: center; color: #fff;
  margin: 0 0 8px; position: relative; line-height: 1.15;
}
.order__intro { position: relative; }
.order__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 52px); line-height: 1.05; color: #fff; margin: 0 0 20px;
}
.order__desc { font-size: 16px; color: #C9B8C2; line-height: 1.6; margin: 0 0 32px; max-width: 380px; }
.order__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.order__price .lbl { font-size: 15px; color: #C9B8C2; }
.order__price .old { font-size: 18px; color: var(--muted-2); text-decoration: line-through; text-decoration-color: var(--accent); }
.order__price .new { font-family: var(--font-display); font-size: 36px; color: #fff; }

.order-form {
  position: relative; background: #fff; border-radius: var(--r-card-md);
  padding: 24px 18px; display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span, .field > label > span, .field-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted-2);
}
.field input, .field select {
  border: 1.5px solid var(--line-2); border-radius: var(--r-input);
  padding: 14px 16px; font-size: 16px; /* 16px — iOS fokusda zoom qilmasligi uchun */
  font-family: inherit;
  color: var(--ink); outline: none; background: #fff; width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--accent); }
.field--tg { position: relative; }
.field--tg input { padding-right: 40px; }
.field__mark {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-weight: 800; font-size: 16px; display: none;
}
.field.has-error .field__mark { display: block; }
.field__error { font-size: 12px; color: var(--accent); font-weight: 500; display: none; }
.field.has-error .field__error { display: block; }
/* Telefonda tik (tagma-tag), planshet+ da yonma-yon (pastdagi media query) */
.field-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.order-form__submit {
  margin-top: 8px; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 16px; padding: 18px; border-radius: var(--r-button);
  transition: background .2s ease;
}
.order-form__submit:hover { background: var(--accent-dark); }
.order-form__submit:disabled { opacity: .6; cursor: default; transform: none; }
.order-form__note {
  font-size: 13px; color: var(--muted-2); margin: 2px 0 0; min-height: 1.1em; text-align: center;
}
.order-form__note.is-error { color: var(--accent-dark); font-weight: 600; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px var(--side-pad) 48px;
  font-size: 13px; color: var(--muted-2);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__ig {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); flex: none;
}

/* =========================================================================
   FAQAT TELEFON  (< 760px) — gorizontal (swipe) karusellar
   ========================================================================= */
@media (max-width: 759px) {
  /* Bio suratlari — yonma-yon varaqlanadigan karusel */
  .bio__photos {
    display: flex; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 calc(-1 * var(--side-pad));
    padding: 12px var(--side-pad) 14px; /* ramka-ring kesilmasligi uchun */
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .bio__photos::-webkit-scrollbar { display: none; }
  .bio__photos .photo { flex: 0 0 74%; scroll-snap-align: center; }

  /* Mijozlar fikri — karusel */
  .feedback__grid {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 calc(-1 * var(--side-pad));
    padding: 6px var(--side-pad) 20px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .feedback__grid::-webkit-scrollbar { display: none; }
  .feedback-card { flex: 0 0 82%; scroll-snap-align: center; }
  .feedback-card .photo { aspect-ratio: 3 / 4; }
}

/* =========================================================================
   PLANSHET  (>= 760px)
   ========================================================================= */
@media (min-width: 760px) {
  :root { --side-pad: 40px; }

  /* Planshetda ham kompakt tugma qoladi — nav-linklar faqat desktopda (pastda),
     shunda til almashganда panel joyi o'zgarmaydi (wrap bo'lmaydi). */
  .nav__inner { padding: 14px var(--side-pad); }
  .lang__btn { padding: 6px 10px; font-size: 12px; }
  .nav__cta-mobile { padding: 10px 18px; font-size: 14px; }

  .section { padding: 96px var(--side-pad) 80px; }

  .bio__photos    { grid-template-columns: repeat(3, 1fr); }
  .bio__quotes    { grid-template-columns: repeat(2, 1fr); }
  .kit__grid      { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .kit-card       { padding: 36px 28px; }
  .kit-card__icon { width: 56px; height: 56px; border-radius: 16px; font-size: 22px; margin-bottom: 20px; }
  .kit-card h3    { font-size: 19px; }
  .kit-card p     { font-size: 14px; }
  .gallery        { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .gallery__caption { left: 14px; bottom: 14px; font-size: 12px; padding: 8px 14px; gap: 8px; }
  .aesthetics .gallery { grid-template-columns: repeat(2, 1fr); }
  .feedback__grid { grid-template-columns: repeat(3, 1fr); }
  .order__card    { padding: 48px 40px; }
  .order-form     { padding: 28px; }

  /* Shahar + Manzil yonma-yon (planshetdan boshlab) */
  .field-row { grid-template-columns: 1fr 1fr; }

  .video__frame { height: 460px; }

  /* Diagonal (stagger) siljish — faqat planshet+ */
  .gallery__item:nth-child(even),
  .bio__photos .photo:nth-child(2) { margin-top: -26px; }
}

/* =========================================================================
   KOMPYUTER  (>= 1024px)
   ========================================================================= */
@media (min-width: 1024px) {
  :root { --side-pad: 64px; }

  .nav__inner { padding: 16px var(--side-pad); }
  .nav__cta-mobile { display: none; }
  .nav__links {
    display: flex; align-items: center; gap: 32px;
    font-size: 15px; font-weight: 600; color: var(--muted);
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 24px var(--side-pad) 0;
  }
  .hero__text  { padding-bottom: 60px; }
  .hero__media { height: 600px; }
  .hero__photo { inset: -40px -60px; width: calc(100% + 120px); }

  .section { padding: 120px var(--side-pad) 100px; }

  .bio__quotes    { grid-template-columns: repeat(4, 1fr); }
  .kit__grid      { grid-template-columns: repeat(4, 1fr); }
  .aesthetics .gallery { grid-template-columns: repeat(4, 1fr); }

  .video__frame { height: 560px; }

  .order__card {
    grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px;
  }
  .order-form { padding: 40px; }
}

/* Katta ekranlarda ortiqcha kengaymasligi uchun */
@media (min-width: 1600px) {
  .hero { max-width: 1489px; }
}

/* Harakatni kamaytirish afzalligi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-pop { opacity: 1; transform: none; }
}
