/* Шрифты: Cormorant Garamond (заголовки) + Crimson Pro (текст). */
:root{
  --bg0:#050506;
  --bg1:#070708;
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --font: "Crimson Pro", Georgia, serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  margin:0;
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 17px);
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(239,68,68,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}
.container{ width:min(1100px, 100% - 24px); margin-inline:auto; }
.srOnly{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Buttons — акцент: SemiBold, чуть крупнее */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-2px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.btn{ touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.btn:active{ transform: translateY(0); }
.btnIcon{
  width:28px; height:28px; display:grid; place-items:center;
  border-radius: 12px; border:1px solid var(--border);
  background: rgba(255,255,255,.06); font-size: 13px;
}
.btnIcon svg{ display:block; color: inherit; }
.btnIcon--tg{ color: rgba(255,255,255,.95); }
.btnTg{ background: linear-gradient(180deg, rgba(56,189,248,.22), rgba(56,189,248,.10)); box-shadow: 0 18px 40px rgba(56,189,248,.12); }
.btnVk{ background: linear-gradient(180deg, rgba(99,102,241,.22), rgba(99,102,241,.10)); box-shadow: 0 18px 40px rgba(99,102,241,.10); }
.btnReserve{ background: linear-gradient(180deg, rgba(239,68,68,.28), rgba(239,68,68,.12)); box-shadow: 0 18px 45px rgba(239,68,68,.14); animation: reservePulse 7s ease-in-out infinite; }
.btnWide{ width:100%; }
@keyframes reservePulse{ 0%,100%{ filter:saturate(1);} 50%{ filter:saturate(1.12) brightness(1.03);} }

/* Hero / Videos */
.hero, .fullVideo{
  position:relative;
  z-index: 3;
  min-height: 100svh;
  overflow:hidden;
  background:black;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.35);
}
.hero__media, .fullVideo__media{ position:absolute; inset:0; }
.hero__video{ position:absolute; inset:0; width:100%; height:100%; }
.hero__video--contain{ object-fit: contain; background:black; pointer-events:none; filter: brightness(1.73); }
.hero__video--fill{ object-fit: cover; filter: blur(26px); opacity:.25; transform: scale(1.1); pointer-events:none; }
.hero__video::-webkit-media-controls{ display:none !important; }
.hero__video::-webkit-media-controls-start-playback-button{ display:none !important; -webkit-appearance:none; }

.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 700px at 25% 15%, rgba(255,60,80,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.78));
  pointer-events:none;
}
.hero__media::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height: min(380px, 42vh);
  background: linear-gradient(to top,
    var(--bg0) 0%,
    rgba(5,5,6,.85) 18%,
    rgba(5,5,6,.4) 45%,
    transparent 100%);
  pointer-events:none;
}

.hero__brand{ position:relative; padding: 22px 20px; z-index: 2; padding-left: calc(20px + env(safe-area-inset-left, 0)); padding-right: calc(20px + env(safe-area-inset-right, 0)); }
.brandBadge{
  width: fit-content;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  padding: 10px;
}

.hero__scrollHint, .fullVideo__scrollHint{
  position:absolute; left:50%; bottom: calc(26px + env(safe-area-inset-bottom, 0)); transform: translateX(-50%);
  z-index: 2; display:flex; flex-direction: column; align-items:center; gap:10px;
  text-decoration:none;
}
.hero .hero__scrollHint{
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.3s ease;
}
.hero--video-ended .hero__scrollHint{
  opacity: 1;
  pointer-events: auto;
}
.hero__scrollHintText{
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero__arrow{
  font-size: 24px;
  line-height: 1;
  color: rgba(255,255,255,.65);
}
.hero--video-ended .hero__arrow{
  animation: heroArrowPulse 2s ease-in-out infinite;
}
@keyframes heroArrowPulse{
  0%, 100%{ opacity: 1; transform: translateY(0); }
  50%{ opacity: 0.6; transform: translateY(4px); }
}
.pill{
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(0,0,0,.35);
  padding: 10px 14px; font-size: 14px; color: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
}
.pill--muted{ background: rgba(255,255,255,.03); color: rgba(255,255,255,.60); }

/* Sections */
.page{ padding-bottom: 60px; }
.section{ padding: 48px 0 0; }
#assortment{ padding: 56px 0 40px; }
#assortment .sectionHead{ margin-top: -32px; }
#assortment .sectionHead p{ margin-top: 4px; }

/* Один фон-видео для блока «О нас» + «Ассортимент» */
.videoBlock{
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.3);
}
.videoBlock__bg{
  position: absolute; inset: 0;
  z-index: 0;
}
.videoBlock__bg video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.videoBlock__overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 25% 15%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.75));
  pointer-events: none;
}
.videoBlock__bg::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: min(360px, 40vh);
  background: linear-gradient(to top,
    var(--bg0) 0%,
    rgba(5,5,6,.85) 18%,
    rgba(5,5,6,.4) 45%,
    transparent 100%);
  pointer-events: none;
}
.videoBlock .section{ position: relative; z-index: 1; }
.videoBlock .container{ position: relative; }
.sectionHead h2{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
}
.sectionHead p{
  margin: 10px 0 0;
  max-width: 800px;
  color: var(--muted);
  line-height: 1.55;
  font-size: clamp(14px, 1.6vw, 18px);
}

.cards3{ display:grid; grid-template-columns: 1fr; gap: 14px; }
.cards4{ display:grid; grid-template-columns: 1fr; gap: 14px; margin-top: 12px; }

.glassCard{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  padding: 18px;
}
.glassCard--pad{ padding: 22px; }
.glassCard h3{ margin:0; font-family: var(--font-heading); font-weight: 600; font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.01em; }
.glassCard p{ margin: 10px 0 0; color: var(--muted); line-height: 1.6; font-size: clamp(14px, 1.6vw, 18px); }
.cardTitle{ font-family: var(--font-heading); font-weight: 600; font-size: clamp(15px, 1.8vw, 17px); margin-bottom: 12px; }
.ctaRow{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 16px; }

/* Contact */
.contact{
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
}
.contact__bg{
  position:absolute; inset:0;
  background-image: url("assets/contact-bg.jpg");
  background-size: cover; background-position: center;
  z-index: 0;
}
.contact__bg::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: min(320px, 36vh);
  background: linear-gradient(to top,
    var(--bg1) 0%,
    rgba(7,7,8,.85) 18%,
    rgba(7,7,8,.4) 45%,
    transparent 100%);
  pointer-events: none;
}
.contact::before{ content:""; position:absolute; inset:0; background: rgba(0,0,0,.55); z-index: 1; pointer-events:none; }
.contact::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(1100px 600px at 30% 10%, rgba(255,60,80,.22), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.82));
  z-index: 2;
  pointer-events:none;
}
.contact__inner{ position:relative; padding: 54px 0; z-index: 3; }

.contactGrid{ display:grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
.contactSide{ display:grid; gap: 14px; }

.form{ display:grid; gap: 12px; }
.field{ display:grid; gap: 6px; }
.field span{ font-size: clamp(13px, 1.4vw, 15px); color: rgba(255,255,255,.60); }
.field input, .field textarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  color: var(--text);
  padding: 12px 14px;
  font-size: clamp(14px, 1.6vw, 18px);
  outline: none;
  backdrop-filter: blur(12px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.field textarea{ resize:none; }
.field input::placeholder, .field textarea::placeholder{ color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus{ border-color: rgba(239,68,68,.40); }

.finePrint{ font-size: clamp(13px, 1.4vw, 15px); color: rgba(255,255,255,.55); line-height: 1.45; }

.infoList{ display:grid; gap: 10px; margin-top: 12px; }
.infoItem{ border-radius: 18px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); padding: 12px 14px; }
.infoItem .k{ font-size: clamp(13px, 1.4vw, 15px); color: rgba(255,255,255,.50); }
.infoItem .v{ font-size: clamp(14px, 1.6vw, 18px); margin-top: 4px; color: rgba(255,255,255,.80); }

.muted{ color: rgba(255,255,255,.70); line-height:1.55; font-size: clamp(14px, 1.6vw, 18px); margin: 0; }
.mutedSmall{ color: rgba(255,255,255,.55); font-size: clamp(12px, 1.3vw, 14px); }
.footnote{ margin-top: 18px; font-size: clamp(12px, 1.3vw, 14px); color: rgba(255,255,255,.45); }

/* Чекбокс согласия на обработку ПД */
.field--checkbox{ display: flex; align-items: flex-start; gap: 12px; }
.field--checkbox input[type="checkbox"]{
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  accent-color: rgba(239,68,68,.6);
  cursor: pointer;
}
.pdConsent__text{
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.pdConsent__text a{
  color: rgba(239,68,68,.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdConsent__text a:hover{ color: rgba(239,68,68,1); }

/* Footer */
.footer{ border-top: 1px solid rgba(255,255,255,.10); padding: 26px 0; background: rgba(0,0,0,.2); }
.footer__inner{ display: flex; gap: 24px; flex-direction: column; justify-content: space-between; }
.footer__block{ display: flex; flex-direction: column; gap: 6px; }
.footer__brand{ font-family: var(--font-heading); font-weight: 600; font-size: clamp(15px, 1.8vw, 17px); }
.footer__legal{ font-size: clamp(12px, 1.3vw, 14px); color: rgba(255,255,255,.65); line-height: 1.5; }
.footer__links{ display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer__links a{
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__links a:hover{ color: rgba(255,255,255,.95); }
.footer__credit{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: clamp(12px, 1.2vw, 13px);
  color: rgba(255,255,255,.45);
}
.footer__credit a{ color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 2px; }
.footer__credit a:hover{ color: rgba(255,255,255,.75); }

/* Юридические страницы */
.legal-header{
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.legal-header__logo{
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
}
.legal-header__logo:hover{ color: rgba(255,255,255,.9); }
.legal-page{ padding: 40px 0 60px; }
.legal-content{ max-width: 720px; }
.legal-title{
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
}
.legal-section{
  margin-bottom: 24px;
}
.legal-section h2{
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 20px);
}
.legal-section p, .legal-section ul{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(14px, 1.6vw, 16px);
}
.legal-section ul{ padding-left: 20px; }
.legal-section li{ margin-bottom: 6px; }
.legal-date{ margin-top: 20px !important; color: rgba(255,255,255,.5) !important; font-size: 14px !important; }

/* ——— Мобильные устройства ——— */
@media (max-width: 600px){
  .container{ width: 100%; padding-inline: 16px; }
  body{ font-size: 16px; }
  .btn{
    padding: 14px 20px;
    min-height: 48px;
    font-size: 16px;
  }
  .ctaRow{
    flex-direction: column;
    gap: 12px;
  }
  .ctaRow .btn{ width: 100%; justify-content: center; }
  .sectionHead h2{ font-size: clamp(24px, 6vw, 32px); }
  .sectionHead p{ font-size: 16px; }
  .glassCard{ padding: 16px; }
  .glassCard--pad{ padding: 18px; }
  .glassCard h3{ font-size: 18px; }
  .glassCard p{ font-size: 16px; }
  .field input, .field textarea{
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }
  .field textarea{ min-height: 120px; }
  .contact__inner{ padding: 32px 0; }
  .contact{ margin-top: -60px; padding-top: 60px; }
  .videoBlock{ margin-top: -60px; padding-top: 60px; }
  .section{ padding: 36px 0 0; }
  #assortment{ padding: 40px 0 32px; }
  .hero__brand{ padding: 16px; padding-left: calc(16px + env(safe-area-inset-left, 0)); padding-right: calc(16px + env(safe-area-inset-right, 0)); }
  .hero__scrollHint, .fullVideo__scrollHint{ bottom: calc(20px + env(safe-area-inset-bottom, 0)); }
  .page{ padding-bottom: 40px; }
  .footer{ padding: 20px 0; }
  .footer__links{ flex-direction: column; }
  .pdConsent__text{ font-size: 14px; }
}

@media (max-width: 400px){
  .container{ padding-inline: 12px; }
}

@media (min-width: 860px){
  .container{ width: min(1100px, 100% - 40px); padding-inline: 0; }
  .cards3{ grid-template-columns: repeat(3, 1fr); }
  .cards4{ grid-template-columns: repeat(4, 1fr); }
  .contactGrid{ grid-template-columns: 1.1fr .9fr; }
  .footer__inner{ flex-direction: row; align-items: flex-start; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btnReserve{ animation: none; }
}
