:root {
  --bg: #f5f1ec;
  --surface: #fffcf8;
  --surface-soft: #efe7df;
  --text: #1d1714;
  --muted: #72665f;
  --line: rgba(29, 23, 20, 0.1);
  --line-strong: rgba(29, 23, 20, 0.18);
  --accent: #2f211c;
  --accent-soft: #5a4035;
  --accent-2: #c8d8e9;
  --white: #ffffff;
  --shadow: 0 30px 70px rgba(29, 23, 20, 0.08);
  --shadow-soft: 0 16px 36px rgba(29, 23, 20, 0.05);
  --radius: 30px;
  --radius-sm: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, #f8f4ef 0%, #f3ede7 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 239, 0.78);
  border-bottom: 1px solid rgba(29, 23, 20, 0.07);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 16px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 23, 20, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text {
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.brand-subtext {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 0.95rem;
  color: var(--muted);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}

.hero {
  padding: 34px 0 40px;
}

.hero-shell {
  position: relative;
}

.hero-grid,
.section-grid,
.fabric-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid,
.fabric-grid,
.cta-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  max-width: 10ch;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  max-width: 12ch;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy {
  padding: 36px 0 20px;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-note-text {
  margin-top: 14px;
  color: var(--accent-soft);
  font-weight: 600;
}

.hero-slogan {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.hero-meta {
  margin: 34px 0 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-meta > div,
.hero-note,
.contact-box {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 1rem;
  font-weight: 800;
}

.price-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-old {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: line-through;
}

.price-current {
  font-size: 1.36rem !important;
  color: var(--accent);
}

.price-save {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 33, 28, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover,
.header-link:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
}

.btn-block {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.58);
}

.hero-visual-wrap {
  display: grid;
  gap: 16px;
}

.section {
  padding: 52px 0;
}

.soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0));
}

.intro-section {
  padding-top: 20px;
}

.intro-layout,
.benefits-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.intro-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.intro-visuals {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.intro-visual-main,
.intro-visual-side {
  min-height: 360px;
}

.benefits-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.benefits-content {
  display: grid;
  gap: 18px;
}

.benefits-content .features {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.benefits-visual {
  min-height: 100%;
  padding: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(29, 23, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature,
.color-card,
.info-card,
.order-form,
.fabric-card,
.size-card,
.video-placeholder-card,
.hero-visual,
.hero-note {
  padding: 24px;
}

.image-card {
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.tall {
  min-height: 720px;
}

.hero-note p {
  max-width: 34ch;
}

.features,
.colors,
.info-grid {
  display: grid;
  gap: 18px;
}

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

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

.premium-features .feature {
  background: rgba(255, 252, 248, 0.86);
}

.bullet-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 8px;
}

.color-preview {
  height: 200px;
  border-radius: 22px;
  margin-bottom: 18px;
}

.color-preview.chocolate {
  background: linear-gradient(135deg, #4b3027, #8a6250);
}

.color-preview.blue {
  background: linear-gradient(135deg, #aac6e3, #d9ebf8);
}

.flowing-gallery-section {
  overflow: hidden;
}

.flowing-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.flowing-gallery-head p {
  max-width: 34ch;
}

.flowing-gallery {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.flowing-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galleryFlow 42s linear infinite;
}

.flowing-gallery:hover .flowing-track {
  animation-play-state: paused;
}

.flow-card {
  width: 260px;
  height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(29, 23, 20, 0.08);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.flow-card.wide {
  width: 360px;
}

.flow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes galleryFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.video-card {
  overflow: hidden;
}

.product-video {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 10px);
  background: #000;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.size-table th,
.size-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.size-table th:first-child,
.size-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.size-subhead td {
  background: rgba(47, 33, 28, 0.06);
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.trust-section .trust-grid {
  margin-top: 22px;
}

.trust-card {
  background: rgba(255, 252, 248, 0.9);
}

.faq-head {
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
  max-width: 70ch;
}

.cta-section {
  color: var(--white);
  background: linear-gradient(135deg, #2a1e19, #50372d);
  margin-top: 24px;
}

.contact-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.contact-box span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.contact-box a {
  font-size: 1.15rem;
  font-weight: 800;
}

.order-form {
  color: var(--text);
}

.order-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(29, 23, 20, 0.12);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.form-note {
  margin-top: 12px;
  font-size: 0.92rem;
}

.form-consent {
  color: var(--muted);
}

.form-consent a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #16110f;
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  padding: 58px 0 64px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
  max-width: 720px;
}

.footer-brand-block p,
.footer-col p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  gap: 20px;
  grid-template-columns: 1fr 1fr 1.4fr;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-link .social-fill-icon {
  fill: currentColor;
  stroke: none;
}

.footer-title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.footer-details strong {
  color: rgba(255, 255, 255, 0.95);
}

.footer-link {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .fabric-grid,
  .cta-grid,
  .section-grid,
  .footer-grid,
  .features,
  .info-grid,
  .colors,
  .intro-layout,
  .benefits-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .fabric-grid,
  .cta-grid,
  .section-grid,
  .footer-grid,
  .intro-layout,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

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

  h1,
  h2 {
    max-width: none;
  }

  .tall {
    min-height: 560px;
  }

  .flowing-gallery-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-visual-wrap {
    order: 1;
  }

  .intro-visuals {
    grid-template-columns: 1fr;
  }

  .intro-visual-main,
  .intro-visual-side,
  .benefits-visual {
    min-height: 300px;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: start;
    flex-direction: column;
  }

  .header-meta,
  .hero-actions,
  .hero-trust {
    width: 100%;
    flex-direction: column;
  }

  .header-link,
  .btn,
  .header-phone {
    width: 100%;
    justify-content: center;
  }

  .features,
  .info-grid,
  .colors {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .flow-card {
    width: 220px;
    height: 320px;
  }

  .flow-card.wide {
    width: 280px;
  }

  .tall {
    min-height: 380px;
  }
}
