/* ============================================
   IDEN — Premium Design System (Apple-inspired)
   ============================================ */

:root {
  /* Colors */
  --black: #1d1d1f;
  --black-soft: #2c2c2e;
  --white: #ffffff;
  --bg: #fbfbfd;
  --bg-gray: #f5f5f7;
  --border: #d2d2d7;
  --border-soft: #e8e8ed;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --accent-red: #d32f2f;
  --accent-green: #25D366;
  --accent-telegram: #0088cc;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Charter', 'Source Serif Pro', Georgia, serif;

  /* Spacing */
  --space-section: 120px;
  --space-section-sm: 80px;
  --container-max: 1200px;
  --container-wide: 1440px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.47;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s var(--ease-out); }
a:hover { opacity: 0.7; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text);
}
.lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
}
.caption {
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ===== CONTAINERS ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION BASE ===== */
.sec { padding: var(--space-section) 0; }
.sec--sm { padding: var(--space-section-sm) 0; }
.sec--lg { padding: 160px 0; }
.sec--dark { background: var(--black); color: var(--white); }
.sec--dark .display-xl, .sec--dark .display-lg, .sec--dark .display-md, .sec--dark .display-sm { color: var(--white); }
.sec--dark .lead { color: rgba(255,255,255,0.75); }
.sec--gray { background: var(--bg-gray); }

/* ===== HEADER ===== */
.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s var(--ease-out);
}
.hd__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hd__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.hd__logo span { color: var(--accent-red); }
.hd__logo:hover { opacity: 1; }

.hd__nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hd__nav a {
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hd__nav a:hover { opacity: 1; }
.hd__nav a.active { opacity: 1; color: var(--accent-red); }

.hd__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hd__icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}
.hd__icon-btn:hover {
  background: rgba(0,0,0,0.06);
  opacity: 1;
  transform: scale(1.05);
}
.hd__icon-btn svg { width: 18px; height: 18px; }
.hd__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.hd__burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.hd__burger svg { width: 20px; height: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn--lg svg {
  width: 20px;
  height: 20px;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn--primary { background: var(--text); color: var(--white); }
.btn--primary:hover { background: #000; }
.btn--secondary { background: transparent; color: var(--text); border-color: var(--text); }
.btn--secondary:hover { background: var(--text); color: var(--white); }
.btn--inverse { background: var(--white); color: var(--text); }
.btn--inverse:hover { background: #f0f0f0; }
.btn--whatsapp { background: var(--accent-green); color: var(--white); }
.btn--whatsapp:hover { background: #1da851; }
.btn--telegram { background: var(--accent-telegram); color: var(--white); }
.btn--telegram:hover { background: #0077b3; }
.btn--lg { padding: 18px 32px; font-size: 17px; }

/* ===== HERO DECOR ===== */
.decor-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
}
.decor-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.decor-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.decor-hero:hover .decor-hero__bg img { transform: scale(1); }
.decor-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.decor-hero--texture .decor-hero__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.85) 100%);
}
.decor-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 52px 24px 80px;
}
.decor-hero__meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.decor-hero__meta a { color: inherit; }
.decor-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.decor-hero__sub {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 40px;
}
.decor-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.decor-hero__price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}
.decor-hero__price-old {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
}
.decor-hero__discount {
  background: var(--accent-red);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.decor-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BREADCRUMBS (premium, minimal) ===== */
.breadcrumbs-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}
.breadcrumbs-premium a {
  color: rgba(255,255,255,0.75);
  opacity: 1;
}
.breadcrumbs-premium a:hover { color: var(--white); opacity: 1; }
.breadcrumbs-premium span { color: rgba(255,255,255,0.5); }
.breadcrumbs-premium .sep { font-size: 10px; opacity: 0.5; }

/* ===== OVERVIEW SECTION ===== */
.overview {
  padding: 120px 0;
  background: var(--white);
}
.overview__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.overview__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
}
.overview__text p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.overview__text p:first-of-type::first-letter {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--text);
}

.overview__aside {
  position: sticky;
  top: 80px;
  background: var(--bg-gray);
  border-radius: 18px;
  padding: 32px;
}
.overview__aside-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.overview__aside-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.overview__aside-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-red);
  line-height: 1;
}
.overview__aside-old {
  font-size: 16px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}
.overview__aside-pack {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}
.overview__aside-btns {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.overview__aside-btns .btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}
.overview__aside-note {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}
.overview__aside-note strong { color: var(--text); }

/* ===== TEXTURE DETAIL (dark fullbleed) ===== */
.texture {
  background: var(--black);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.texture__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}
.texture__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 60px;
}
.texture__image {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.texture__image img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ===== GALLERY MASONRY ===== */
.interiors {
  padding: 120px 0;
  background: var(--bg);
}
.interiors__header {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}
.interiors__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text);
}
.interiors__header p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.interiors__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.interiors__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-gray);
  cursor: zoom-in;
  transition: transform 0.6s var(--ease-out);
}
.interiors__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.interiors__item:hover {
  transform: translateY(-4px);
  opacity: 1;
}
.interiors__item:hover img { transform: scale(1.04); }

/* Masonry patterns for 5-item grid */
.interiors__grid--5 .interiors__item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.interiors__grid--5 .interiors__item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.interiors__grid--5 .interiors__item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.interiors__grid--5 .interiors__item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.interiors__grid--5 .interiors__item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

.interiors__grid--3 .interiors__item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.interiors__grid--3 .interiors__item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.interiors__grid--3 .interiors__item:nth-child(3) { grid-column: span 2; grid-row: span 1; }

.interiors__grid--1 .interiors__item:nth-child(1) { grid-column: span 6; grid-row: span 2; }

/* ===== VIDEO SECTION ===== */
.video-sec {
  background: var(--black);
  padding: 120px 0;
  text-align: center;
}
.video-sec h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}
.video-sec p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 60px;
}
.video-sec__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.video-sec__wrap video {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* ===== SPECS TABLE (Apple-style) ===== */
.specs-sec {
  padding: 120px 0;
  background: var(--white);
}
.specs-sec__header {
  max-width: var(--container-narrow);
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}
.specs-sec__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.specs-sec__header p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
}
.specs-sec__table {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.specs-sec__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 24px;
  align-items: baseline;
}
.specs-sec__row:last-child { border-bottom: none; }
.specs-sec__label {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-tertiary);
  font-weight: 500;
}
.specs-sec__value {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ===== USAGE CARDS ===== */
.usage {
  padding: 120px 0;
  background: var(--bg-gray);
}
.usage__header {
  max-width: var(--container-narrow);
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}
.usage__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.usage__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usage__card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  transition: transform 0.3s var(--ease-out);
}
.usage__card:hover { transform: translateY(-4px); }
.usage__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text);
}
.usage__icon svg { width: 24px; height: 24px; }
.usage__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.usage__card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===== OTHER DECORS (collection) ===== */
.other-decors {
  padding: 120px 0;
  background: var(--white);
}
.other-decors__header {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 24px;
}
.other-decors__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.other-decors__header p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
}
.other-decors__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.decor-tile {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease-out);
}
.decor-tile:hover { opacity: 1; transform: translateY(-4px); }
.decor-tile__img {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-gray);
  margin-bottom: 16px;
}
.decor-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.decor-tile:hover .decor-tile__img img { transform: scale(1.04); }
.decor-tile__name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.decor-tile__series {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.decor-tile__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-red);
}
.decor-tile__price-old {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

/* ===== CTA FULLBLEED ===== */
.cta-fullbleed {
  background: var(--black);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}
.cta-fullbleed h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.cta-fullbleed p {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 24px;
  line-height: 1.4;
}
.cta-fullbleed__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}

/* ===== HOMEPAGE HERO ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 52px;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 80px 24px 120px;
  color: var(--white);
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 1000px;
}
.home-hero__sub {
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 400;
}
.home-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== COLLECTIONS GRID ===== */
.collections {
  padding: 120px 0;
  background: var(--white);
}
.collections__header {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 24px;
}
.collections__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.collections__header p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-secondary);
  max-width: 680px;
}
.collections__grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.4s var(--ease-out);
}
.collection-card:hover { opacity: 1; transform: translateY(-4px); }
.collection-card__img {
  position: absolute; inset: 0; z-index: 0;
}
.collection-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.collection-card:hover .collection-card__img img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.collection-card__body {
  position: relative; z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.collection-card__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--white);
}
.collection-card__meta {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.collection-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.collection-card__price-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.collection-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.collection-card__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.collection-card:hover .collection-card__arrow { background: rgba(255,255,255,0.35); }

/* ===== FEATURED DECOR (home) ===== */
.featured-decor {
  padding: 120px 0;
  background: var(--bg);
}
.featured-decor__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-decor__img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.featured-decor__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-decor__text .eyebrow { margin-bottom: 16px; }
.featured-decor__text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 24px;
}
.featured-decor__text p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.featured-decor__price-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 32px;
}
.featured-decor__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--accent-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.featured-decor__old {
  font-size: 20px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

/* ===== WHY (3 columns) ===== */
.why {
  padding: 120px 0;
  background: var(--white);
}
.why__header {
  max-width: var(--container-narrow);
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}
.why__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.why__header p {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
}
.why__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why__item { text-align: center; }
.why__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.why__label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== PRICE COMPARE (minimal) ===== */
.compare-premium {
  padding: 120px 0;
  background: var(--bg-gray);
}
.compare-premium__header {
  max-width: var(--container-narrow);
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}
.compare-premium__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.compare-premium__header p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
}
.compare-premium__table {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}
.compare-premium__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-soft);
  align-items: baseline;
  font-size: 17px;
}
.compare-premium__row:last-child { border-bottom: none; }
.compare-premium__row--header {
  background: var(--bg-gray);
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
}
.compare-premium__row-label {
  color: var(--text-secondary);
}
.compare-premium__row-iden {
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
}
.compare-premium__row-other {
  color: var(--text-tertiary);
  text-decoration: line-through;
}
.compare-premium__row-save {
  color: var(--accent-red);
  font-weight: 700;
}

/* ===== COMPARE CARDS (premium) ===== */
.compare-cards {
  padding: 120px 0;
  background: var(--bg-gray);
}
.compare-cards__header {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}
.compare-cards__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 16px;
}
.compare-cards__grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s var(--ease-out);
}
.compare-card--iden {
  background: var(--black);
  color: var(--white);
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}
.compare-card__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,0,0,0.05);
  color: var(--text);
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.compare-card--iden .compare-card__badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.compare-card__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 32px;
}
.compare-card__price span {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-left: 4px;
  letter-spacing: 0;
}
.compare-card--iden .compare-card__price span {
  color: rgba(255,255,255,0.55);
}
.compare-card__price--muted {
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--text-tertiary);
}
.compare-card__price--muted span {
  text-decoration: none;
  display: inline-block;
}
.compare-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 15px;
  gap: 12px;
}
.compare-card--iden .compare-card__row {
  border-top-color: rgba(255,255,255,0.1);
}
.compare-card__row span { color: var(--text-tertiary); }
.compare-card--iden .compare-card__row span { color: rgba(255,255,255,0.55); }
.compare-card__row strong {
  font-weight: 700;
  color: var(--text);
  text-align: right;
}
.compare-card--iden .compare-card__row strong { color: var(--white); }
.compare-card__row strong.muted {
  color: var(--text-tertiary);
  font-weight: 500;
}
.compare-cards__savings {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 24px;
  text-align: center;
}
.compare-cards__savings-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.compare-cards__savings-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent-red);
}

@media (max-width: 760px) {
  .compare-cards__grid { grid-template-columns: 1fr; }
  .compare-card--iden { transform: none; }
  .compare-card { padding: 32px 24px; }
}

/* ===== FOOTER ===== */
.ft {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  font-size: 14px;
}
.ft__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.ft__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.ft__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ft__col ul { display: grid; gap: 10px; }
.ft__col li a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.ft__col li a:hover { color: var(--white); opacity: 1; }
.ft__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ft__logo span { color: var(--accent-red); }
.ft__about { line-height: 1.55; margin-bottom: 16px; }
.ft__contacts { line-height: 1.7; }
.ft__contacts a { color: var(--white); opacity: 1; }
.ft__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.ft__bottom a { color: inherit; }
.ft__bottom a:hover { color: var(--white); opacity: 1; }

/* ===== FLOATING BUTTONS (same but premium) ===== */
.fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}
.fab.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.fab--whatsapp { background: var(--accent-green); }
.fab--telegram { background: var(--accent-telegram); }
.fab:hover { transform: scale(1.08); opacity: 1; }
.fab svg { width: 24px; height: 24px; }

/* ===== NAV SIDE (mobile menu) ===== */
.side-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  display: none;
}
.side-menu.open { transform: translateX(0); }
.side-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
}
.side-menu__nav a {
  display: block;
  padding: 16px 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ===== BLOG MEDIUM-STYLE ===== */
.blog-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--white);
}
.blog-hero__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-hero__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  display: inline-block;
}
.blog-hero__eyebrow a { color: inherit; opacity: 0.7; }
.blog-hero__eyebrow a:hover { opacity: 1; }
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.blog-hero__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
}
.blog-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-tertiary);
}
.blog-hero__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.blog-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blog-hero__author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.blog-hero__dot { color: var(--text-tertiary); }

.blog-cover {
  max-width: 1000px;
  margin: 40px auto 60px;
  padding: 0 24px;
}
.blog-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}
.blog-cover__caption {
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Article content */
.blog-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-family: var(--font-body);
}
.blog-content > p:first-of-type {
  font-size: clamp(19px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 400;
}
.blog-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5em;
  font-weight: 800;
  float: left;
  line-height: 0.9;
  margin-right: 12px;
  margin-top: 8px;
  color: var(--text);
}
.blog-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 64px;
  margin-bottom: 20px;
  color: var(--text);
}
.blog-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--text);
}
.blog-content p,
.blog-content li {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 22px;
  font-family: 'Charter', 'Source Serif Pro', Georgia, var(--font-body), serif;
}
.blog-content ul,
.blog-content ol {
  margin-bottom: 28px;
  padding-left: 0;
}
.blog-content li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.blog-content ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.blog-content ol { counter-reset: c; }
.blog-content ol li::before {
  content: counter(c) ".";
  counter-increment: c;
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
  font-family: var(--font-display);
}
.blog-content strong {
  font-weight: 700;
  color: var(--text);
}
.blog-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--text-tertiary);
  text-underline-offset: 4px;
  opacity: 1;
  transition: text-decoration-color 0.2s;
}
.blog-content a:hover {
  text-decoration-color: var(--accent-red);
  color: var(--accent-red);
}
.blog-content blockquote {
  border-left: 3px solid var(--text);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  font-family: 'Charter', 'Source Serif Pro', Georgia, serif;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  font-family: var(--font-body);
}
.blog-content th,
.blog-content td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.blog-content th {
  font-weight: 700;
  background: var(--bg-gray);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.blog-content tr:last-child td { border-bottom: none; }

/* Inline images — fullwidth */
.blog-figure {
  margin: 48px -60px;
  max-width: calc(100% + 120px);
}
.blog-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}
.blog-figure figcaption {
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* CTA blocks inside article */
.blog-cta {
  margin: 48px 0;
  padding: 32px 28px;
  background: var(--bg-gray);
  border-radius: 16px;
  text-align: center;
}
.blog-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}
.blog-cta p {
  margin-bottom: 20px !important;
  font-size: 16px !important;
  color: var(--text-secondary);
}
.blog-cta .btn { margin: 4px; }

.blog-related {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid var(--border-soft);
}
.blog-related__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-related__card {
  display: block;
  padding: 20px;
  background: var(--bg-gray);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}
.blog-related__card:hover { background: var(--border-soft); opacity: 1; }
.blog-related__card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

@media (max-width: 900px) {
  .blog-figure { margin: 40px 0; max-width: 100%; }
}
@media (max-width: 768px) {
  .blog-hero { padding-top: 100px; padding-bottom: 40px; }
  .blog-cover { margin: 32px auto 40px; }
  .blog-cover img { aspect-ratio: 4/3; }
  .blog-content > p:first-of-type::first-letter {
    font-size: 3em;
    margin-right: 8px;
  }
  .blog-related__grid { grid-template-columns: 1fr; }
}

/* ===== CITIES SECTION (home) ===== */
.cities-sec {
  padding: 120px 0;
  background: var(--bg);
}
.cities-sec__header {
  max-width: var(--container-narrow);
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}
.cities-sec__header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.cities-sec__header p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
}
.cities-sec__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.city-tile {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--border-soft);
}
.city-tile:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--text);
}
.city-tile__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.city-tile__delivery {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: 1fr; }
  .overview__grid { grid-template-columns: 1fr; gap: 40px; }
  .overview__aside { position: static; }
  .featured-decor__inner { grid-template-columns: 1fr; gap: 40px; }
  .ft__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .cities-sec__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-section: 80px; --space-section-sm: 60px; }

  .hd__nav, .hd__phone { display: none; }
  .hd__burger { display: flex; }
  .side-menu { display: block; }

  .interiors__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .interiors__grid--5 .interiors__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .interiors__grid--5 .interiors__item:nth-child(2),
  .interiors__grid--5 .interiors__item:nth-child(3),
  .interiors__grid--5 .interiors__item:nth-child(4),
  .interiors__grid--5 .interiors__item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .interiors__grid--3 .interiors__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .interiors__grid--3 .interiors__item:nth-child(2),
  .interiors__grid--3 .interiors__item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .interiors__grid--1 .interiors__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

  .usage__grid { grid-template-columns: 1fr; }
  .ft__grid { grid-template-columns: 1fr; gap: 32px; }
  .ft__bottom { flex-direction: column; align-items: flex-start; }
  .why__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cities-sec__grid { grid-template-columns: repeat(2, 1fr); }

  .decor-hero { height: auto; min-height: 70vh; }
  .decor-hero__inner { padding: 80px 20px 60px; }

  .compare-premium__row { grid-template-columns: 1.2fr 1fr 1fr; padding: 20px; font-size: 14px; }

  .specs-sec__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .specs-sec__value { font-size: 17px; }

  .blog-article { padding: 100px 20px 80px; }
  .blog-article p, .blog-article li { font-size: 17px; }

  .fab { width: 48px; height: 48px; }
  .fab svg { width: 20px; height: 20px; }
  .fab-group { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .home-hero__inner { padding: 60px 20px 80px; }
  .decor-hero__price-row { gap: 12px; }
  .overview { padding: 80px 0; }
  .cities-sec__grid { grid-template-columns: 1fr; }
}
