@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a1e2e;
  --navy-light: #2d3142;
  --copper: #c8a96e;
  --copper-light: #d9bc8a;
  --copper-dark: #a8844e;
  --cream: #f4f1eb;
  --cream-dark: #e8e4de;
  --ivory: #faf8f4;
  --steel: #6b7280;
  --steel-light: #9ca3af;
  --white: #fefefe;
  --text-dark: #1a1e2e;
  --text-muted: #6b7280;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-card: 0;
  --clip-card: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.container--narrow { max-width: 800px; }

/* ─── ON-DARK SCOPING ─────────────────────────────────────────── */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }
.on-dark .text-muted { color: rgba(255,255,255,0.5); }

/* ─── PHOTO PLACEHOLDERS ──────────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ─── BUTTONS (B6 — animated border) ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--navy);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--navy);
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.btn:hover::before { clip-path: inset(0 0 0 0); }
.btn:hover::after { clip-path: inset(0 0 0 0); }

.btn--copper {
  color: var(--copper);
}
.btn--copper::before, .btn--copper::after {
  border-color: var(--copper);
}

.btn--fill {
  background: var(--copper);
  color: var(--navy);
}
.btn--fill::before, .btn--fill::after {
  border-color: transparent;
}
.btn--fill:hover {
  background: var(--copper-dark);
  color: #fff;
}

.btn--fill-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn--fill-navy::before, .btn--fill-navy::after {
  border-color: transparent;
}
.btn--fill-navy:hover {
  background: var(--navy-light);
  color: #fff;
}

.btn--white {
  color: #fff;
}
.btn--white::before, .btn--white::after {
  border-color: #fff;
}

/* ─── SIDE STICKY NAV (V5) ────────────────────────────────────── */
.sidenav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 72px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  border-right: 2px solid var(--copper);
  transition: width var(--transition);
}

.sidenav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.sidenav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.sidenav__logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sidenav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 4px;
  list-style: none;
  overflow-y: auto;
  width: 100%;
}

.sidenav__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.sidenav__links a .nav-label {
  display: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.sidenav__links a:hover,
.sidenav__links a.active {
  color: var(--copper);
  background: rgba(200,169,110,0.08);
}

.sidenav__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidenav__bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(200,169,110,0.2);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sidenav__bottom a {
  font-size: 9px;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: none;
}

.sidenav__hamburger {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1100;
  background: var(--navy);
  border: 1.5px solid var(--copper);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.sidenav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--copper);
  transition: var(--transition);
}

/* ─── MAIN CONTENT OFFSET ─────────────────────────────────────── */
.main-wrap {
  margin-left: 72px;
  min-height: 100vh;
}

/* ─── ADVERTORIAL LABEL ──────────────────────────────────────── */
.advertorial-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding: 6px 0;
  text-align: center;
}

.advertorial-bar p {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
}

.advertorial-bar a {
  color: var(--copper-dark);
  text-decoration: underline;
}

/* ─── HERO — TYPOGRAPHIC STATEMENT (C) ───────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-number {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 900px;
  opacity: 0;
  animation: fade-up 0.9s ease 0.25s forwards;
}

.hero__title .accent-word {
  color: var(--copper);
  display: inline-block;
}

.hero__title .first-letter-big {
  display: inline-block;
  font-size: 1.35em;
  line-height: 0.85;
  vertical-align: baseline;
}

.hero__sub {
  margin-top: 32px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.9s ease 0.4s forwards;
}

.hero__actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease 0.55s forwards;
}

.hero__disclaimer {
  margin-top: 48px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fade-up 0.7s ease 0.7s forwards;
}

.hero__scroll-line {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.9s forwards;
}

.hero__scroll-line span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  writing-mode: vertical-rl;
}

.scroll-line-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

/* ─── MARQUEE STRIP ──────────────────────────────────────────── */
.marquee-strip {
  background: var(--copper);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── SECTION COMMON ─────────────────────────────────────────── */
section { position: relative; }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--steel);
  max-width: 560px;
}

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem {
  background: var(--navy);
  padding: 120px 0;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 160px;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem__left { }

.problem__title {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.problem__title em {
  color: var(--copper);
  font-style: italic;
}

.problem__lead {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.problem__right {
  padding-top: 8px;
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.problem__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem__icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.3);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.08);
}

.problem__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem__list-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.problem__list-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how {
  padding: 140px 0 100px;
  background: var(--cream);
}

.how__header {
  text-align: center;
  margin-bottom: 80px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--copper), var(--copper-light), var(--copper));
  opacity: 0.4;
}

.how__step {
  padding: 0 32px;
  text-align: center;
}

.how__step-num {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--copper);
  background: var(--ivory);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.how__step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.how__step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

/* ─── PRODUCTS SECTION (index) ────────────────────────────────── */
.products {
  padding: 100px 0 120px;
  background: var(--ivory);
}

.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD (C6 — cut corner) */
.product-card {
  background: var(--white);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: visible;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26,30,46,0.12);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.product-card__img img,
.product-card__img .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__body {
  padding: 28px 28px 32px;
}

.product-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.product-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-card__desc {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

/* ─── STATS STRIP (N2) ────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-light);
  padding: 72px 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(200,169,110,0.15);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  background: rgba(255,255,255,0.03);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── MATERIALS / INGREDIENTS ────────────────────────────────── */
.materials {
  padding: 100px 0;
  background: var(--cream);
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
  padding-top: 160px;
  padding-bottom: 160px;
}

.materials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.materials__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}

.materials__img-wrap {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  overflow: hidden;
  background: var(--cream-dark);
}

.materials__img-wrap img,
.materials__img-wrap .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.materials__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--copper);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.materials__badge span:first-child {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.materials__badge span:last-child {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.materials__content { }

.materials__specs {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.materials__spec-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26,30,46,0.08);
}

.materials__spec-row:last-child { border-bottom: none; }

.materials__spec-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.materials__spec-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--copper-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.materials__spec-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.materials__spec-text p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
}

/* ─── GUARANTEE BLOCK ─────────────────────────────────────────── */
.guarantee {
  padding: 100px 0;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding-top: 160px;
  padding-bottom: 160px;
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee__badge-wrap {
  display: flex;
  justify-content: center;
}

.guarantee__badge {
  width: 220px;
  height: 220px;
  border: 2px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(200,169,110,0.06);
}

.guarantee__badge-icon {
  width: 56px;
  height: 56px;
}

.guarantee__badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee__badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

.guarantee__badge-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.guarantee__points {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.guarantee__points li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 0 100%);
  background: rgba(200,169,110,0.15);
  display: inline-block;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--ivory);
}

.faq__header { margin-bottom: 56px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,30,46,0.1);
}

.faq__item {
  border-bottom: 1px solid rgba(26,30,46,0.1);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.faq__question:hover { color: var(--copper-dark); }

.faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid currentColor;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform var(--transition);
}

.faq__item.faq--open .faq__icon svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.faq--open .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--steel);
  padding-bottom: 24px;
  padding-right: 52px;
}

/* ─── ORDER SECTION ──────────────────────────────────────────── */
.order-section {
  padding: 100px 0;
  background: var(--cream);
}

.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.order-section__info { }

.order__models {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order__model-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid rgba(26,30,46,0.12);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  background: var(--ivory);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.order__model-item:hover {
  border-color: var(--copper);
  background: rgba(200,169,110,0.05);
}

.order__model-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.order__model-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--copper-dark);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__contact-block {
  margin-top: 8px;
}

.footer__contact-block p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer__contact-block a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__contact-block a:hover { color: var(--copper); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__legal-short {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ─── TABLE SCROLL ───────────────────────────────────────────── */
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  font-family: var(--font-body);
}

.spec-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.spec-table__label {
  background: var(--cream-dark);
  font-weight: 600;
  text-align: left;
  font-family: var(--font-display);
  color: var(--navy);
}

.spec-table tbody th.spec-table__label { text-align: left; }

.spec-table__hl {
  background: var(--copper);
  color: var(--navy);
  font-weight: 700;
}

.spec-table thead th.spec-table__hl {
  background: var(--copper);
  color: var(--navy);
}

/* ─── TRUST BADGES ────────────────────────────────────────────── */
.trust-badges {
  padding: 60px 0;
  background: var(--ivory);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.trust-badge {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(200,169,110,0.25);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  background: var(--white);
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}

.trust-badge__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-badge__desc {
  font-size: 11.5px;
  color: var(--steel);
  line-height: 1.5;
}

/* ─── MODAL ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,30,46,0.75);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--ivory);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  text-align: center;
  position: relative;
}

.modal-box__icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--copper);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(200,169,110,0.1);
}

.modal-box__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 28px;
}

.modal-box__close {
  cursor: pointer;
}

/* ─── SPINNER ─────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

/* ─── PRODUCT PAGE ────────────────────────────────────────────── */
.product-hero {
  padding: 80px 0 60px;
  background: var(--ivory);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-hero__gallery { }

.product-hero__main-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream-dark);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  overflow: hidden;
  margin-bottom: 16px;
}

.product-hero__main-img img,
.product-hero__main-img .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__thumbs {
  display: flex;
  gap: 10px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  background: var(--cream-dark);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
}

.product-thumb.active {
  border-color: var(--copper);
}

.product-thumb img,
.product-thumb .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb .photo-placeholder {
  min-height: unset;
}

.product-hero__info { }

.product-hero__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-family: var(--font-display);
  margin-bottom: 12px;
  display: block;
}

.product-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.1;
}

.product-hero__price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--copper-dark);
  margin-bottom: 24px;
}

.product-hero__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--steel);
  margin-bottom: 32px;
}

.product-hero__claim {
  margin-bottom: 32px;
  padding: 16px 20px;
  border-left: 3px solid var(--copper);
  background: rgba(200,169,110,0.07);
  font-size: 14px;
  color: var(--navy);
  font-style: italic;
  font-family: var(--font-display);
}

.product-hero__buy-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-hero__disclaimer {
  font-size: 11px;
  color: var(--steel-light);
  line-height: 1.5;
}

/* ─── FEATURE GRID (product page) ────────────────────────────── */
.feature-grid {
  padding: 80px 0;
  background: var(--cream);
}

.feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  padding: 32px 28px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  background: var(--ivory);
  border: 1px solid rgba(200,169,110,0.15);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.feature-item__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--copper-dark);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.65;
}

/* ─── PRODUCT GALLERY ─────────────────────────────────────────── */
.product-gallery {
  padding: 80px 0;
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.gallery-cell {
  aspect-ratio: 1;
  background: var(--cream-dark);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  overflow: hidden;
}

.gallery-cell img,
.gallery-cell .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── CATALOG PAGE ────────────────────────────────────────────── */
.catalog-hero {
  padding: 80px 0 60px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 120px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0 100px;
  background: var(--ivory);
}

/* ─── CHECKOUT PAGE ──────────────────────────────────────────── */
.checkout-wrap {
  padding: 60px 0 80px;
  background: var(--ivory);
}

.checkout-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.checkout-form-col { }

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,30,46,0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26,30,46,0.18);
  background: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--copper);
}

.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 12px;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.form-error.visible { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.checkout-checkbox-wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--copper-dark);
  margin-top: 2px;
}

.checkout-checkbox-wrap label {
  font-size: 13px;
  color: var(--steel);
  cursor: pointer;
  line-height: 1.5;
}

.checkout-summary-col { }

.order-summary {
  background: var(--white);
  padding: 32px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  border: 1px solid rgba(200,169,110,0.2);
  position: sticky;
  top: 40px;
}

.order-summary__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

.order-summary__product {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26,30,46,0.08);
  margin-bottom: 20px;
}

.order-summary__img {
  width: 72px;
  height: 72px;
  background: var(--cream-dark);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.order-summary__img img,
.order-summary__img .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-summary__img .photo-placeholder { min-height: unset; }

.order-summary__product-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.order-summary__product-price {
  font-size: 13px;
  color: var(--steel);
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--navy);
}

.order-summary__line span:first-child { color: var(--steel); }

.order-summary__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 16px;
  border-top: 1px solid rgba(26,30,46,0.1);
  margin-top: 8px;
}

.seller-block {
  margin-top: 28px;
  padding: 20px;
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.2);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.seller-block__title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 10px;
}

.seller-block p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--steel);
}

.seller-block a {
  color: var(--copper-dark);
}

.order-terms {
  margin-top: 16px;
  font-size: 11px;
  color: var(--steel-light);
  line-height: 1.55;
  padding: 12px 0;
  border-top: 1px solid rgba(26,30,46,0.06);
}

.cod-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.3);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  margin-top: 12px;
}

.cod-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.cod-badge span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.checkout-submit-wrap {
  margin-top: 32px;
}

.btn--checkout-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--checkout-submit:hover {
  background: var(--copper);
  color: var(--navy);
}

.btn--checkout-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ─── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page {
  padding: 80px 0 100px;
  background: var(--ivory);
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 12px;
}

.legal-page .last-updated {
  font-size: 12px;
  color: var(--steel-light);
  margin-bottom: 48px;
  font-style: italic;
}

.legal-page h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 36px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 96px;
  right: 24px;
  background: var(--navy-light);
  border: 1px solid rgba(200,169,110,0.3);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  padding: 24px 28px;
  z-index: 8000;
  max-width: 700px;
  display: none;
}

.cookie-banner.active { display: block; }

.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner__text a {
  color: var(--copper);
  text-decoration: underline;
}

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--copper);
  background: transparent;
  color: var(--copper);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background var(--transition), color var(--transition);
}

.cookie-btn:hover {
  background: var(--copper);
  color: var(--navy);
}

.cookie-btn--fill {
  background: var(--copper);
  color: var(--navy);
}

.cookie-btn--fill:hover {
  background: var(--copper-light);
}

.cookie-config-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(200,169,110,0.2);
}

.cookie-config-panel.open { display: block; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 16px;
}

.cookie-toggle-row label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.cookie-toggle-row span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}

.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: rgba(255,255,255,0.15);
  border: none;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}

.cookie-toggle.on {
  background: var(--copper);
}

.cookie-toggle.on::after {
  transform: translateX(18px);
}

.cookie-toggle.disabled-toggle {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── ABOUT / CONTACT PAGE ────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px;
}

.page-hero .section-label { color: var(--copper); }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.3);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.05);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.55;
}

.contact-info-item a:hover { color: var(--copper-dark); }

.contact-form-block {
  background: var(--white);
  padding: 40px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  border: 1px solid rgba(200,169,110,0.15);
}

/* MAP */
.map-section {
  padding: 80px 0 0;
  background: var(--ivory);
}

.map-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.map-section .map-addr {
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 20px;
}

.map-section iframe {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sidenav { display: none; }
  .sidenav__hamburger { display: flex; }
  .main-wrap { margin-left: 0; }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }

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

  .how__steps { grid-template-columns: 1fr; gap: 40px; }
  .how__steps::before { display: none; }

  .problem__grid,
  .materials__inner,
  .guarantee__inner { grid-template-columns: 1fr; gap: 48px; }

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

  .product-hero__inner,
  .checkout-inner { grid-template-columns: 1fr; gap: 40px; }

  .checkout-inner { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer__top { grid-template-columns: 1fr 1fr; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .order-section__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .products__grid,
  .catalog-grid { grid-template-columns: 1fr; }

  .stats-strip__grid { grid-template-columns: 1fr 1fr; }

  .feature-grid__grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .products__header { flex-direction: column; align-items: flex-start; }

  .modal-box { padding: 32px 24px; }

  .checkout-inner { grid-template-columns: 1fr; }
}

/* Mobile nav overlay */
.sidenav--mobile-open {
  display: flex !important;
  width: 260px;
  z-index: 1100;
}

.sidenav--mobile-open .sidenav__logo-text { display: block; }
.sidenav--mobile-open .nav-label { display: inline !important; opacity: 1 !important; }
.sidenav--mobile-open .sidenav__bottom a { display: block; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  display: none;
}
.mobile-overlay.active { display: block; }

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
