﻿@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --bg: #eef1ef;
  --bg-soft: #f6f7f6;
  --bg-ivory: #fbfcfb;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --dark: #0c1210;
  --dark-soft: #18201c;
  --forest: #1e3d32;
  --forest-2: #2f5646;
  --sand: #6b7a72;
  --sand-deep: #4a5850;
  --accent: #8a7340;
  --text: #121816;
  --muted: #5a6660;
  --white: #ffffff;
  --line: rgba(12, 18, 16, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 1px 0 rgba(12, 18, 16, 0.04);
  --shadow: 0 12px 40px rgba(12, 18, 16, 0.08);
  --shadow-lg: 0 24px 64px rgba(12, 18, 16, 0.14);
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
  --max: 1280px;
  --font: "Figtree", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --header-h: 76px;
  --float-cta-bottom: 1.4rem;
  --float-btn-size: 3.25rem;
  --float-btn-phone-size: 3.5rem;
  --float-btn-gap: 0.55rem;
  --float-stack-height: calc(
    var(--float-cta-bottom) + var(--float-btn-size) + var(--float-btn-gap) +
    var(--float-btn-phone-size)
  );
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--forest-2); }

.container {
  width: min(var(--max), calc(100% - 2.25rem));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  box-shadow: 0 18px 40px rgba(38, 71, 51, 0.28);
}
.btn-primary:hover { color: var(--white); }
.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  color: var(--dark);
  background: var(--white);
  border-color: var(--white);
}
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { color: var(--white); background: var(--dark-soft); }
.btn-sm { padding: 0.72rem 1.2rem; font-size: 0.84rem; }
.btn-secondary {
  color: var(--forest);
  background: var(--white);
  border: 1.5px solid rgba(38, 71, 51, 0.22);
  box-shadow: none;
}
.btn-secondary:hover {
  color: var(--forest);
  background: rgba(38, 71, 51, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar {
  background: rgba(17, 17, 15, 0.9);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
}
.topbar strong { color: var(--white); }
.topbar a { color: #ded0b7; font-weight: 700; }
.topbar a:hover { color: var(--white); }
.topbar .header-geo.is-ready { color: rgba(255, 255, 255, 0.92); }
.header-geo.is-loading { opacity: 0.72; }
.header-geo--compact.is-loading { opacity: 0.68; }

.header-geo--compact {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: rgba(12, 18, 16, 0.82);
  max-width: min(13rem, 40vw);
  flex-shrink: 1;
  min-width: 0;
}
.header-geo--compact .header-geo__pin {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  opacity: 0.72;
}
.header-geo--compact [data-geo-header-text] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Homepage: header is sibling of main — body:has() reaches into site-header */
body:has(.home-lookbook--classic) .topbar {
  display: none;
}
body:has(.home-lookbook--classic) .header-geo--compact {
  display: inline-flex;
}

.header-main {
  background: rgba(251, 248, 243, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 32, 28, 0.08);
}
.site-header.is-scrolled .header-main {
  background: rgba(251, 248, 243, 0.9);
  box-shadow: 0 12px 35px rgba(31, 25, 18, 0.08);
}
.header-main .container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest);
  text-decoration: none;
}
.logo:hover { color: var(--forest); }
.logo img {
  flex-shrink: 0;
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav > a,
.nav-dropdown > button {
  border: none;
  background: none;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav > a:hover,
.nav > a.active,
.nav-dropdown > button:hover {
  color: var(--forest);
  background: rgba(38, 71, 51, 0.08);
}
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 120;
  min-width: 300px;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: block; }
.nav-dropdown__menu a {
  display: block;
  padding: 0.72rem 0.95rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 550;
  border-radius: 16px;
}
.nav-dropdown__menu a:hover {
  background: rgba(38, 71, 51, 0.08);
  color: var(--forest);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  color: var(--dark);
  white-space: nowrap;
  font-weight: 800;
}
.header-phone small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  border-radius: 14px;
  background: rgba(38, 71, 51, 0.08);
  padding: 0.75rem;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: min(100svh, 920px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.35) 0%, rgba(8, 10, 8, 0.55) 38%, rgba(8, 10, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 10, 8, 0.72) 0%, rgba(8, 10, 8, 0.2) 62%, rgba(8, 10, 8, 0.45) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(100svh, 920px);
  padding: 7rem 0 2.5rem;
}
.hero--lookbook .hero__editorial {
  max-width: 820px;
}
.hero__kicker {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 1.1rem;
  max-width: 9ch;
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.98;
}
.hero__lead {
  max-width: 46ch;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-utp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 0.25rem;
  padding: 0;
  list-style: none;
}
.hero-utp__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}
.hero-utp__mark {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.45rem;
  line-height: 1;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-chip {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-chip:hover {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.92);
}
.hero-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-chapters a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-chapters a:hover { color: var(--white); }

.page-hero__eyebrow,
.cta-band__eyebrow,
.section__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section--ivory { background: #f3f5f4; }
.section__head--editorial { max-width: 720px; }
.categories--lookbook {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.categories--lookbook .cat-card {
  aspect-ratio: 0.92;
  border-radius: var(--radius);
}
.categories--lookbook .cat-card:nth-child(1),
.categories--lookbook .cat-card:nth-child(2) {
  grid-column: span 6;
}
.categories--lookbook .cat-card:nth-child(n+3) {
  grid-column: span 4;
}
.categories--lookbook .cat-card__body h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.home-lookbook .site-header {
  position: absolute;
  width: 100%;
}
.home-lookbook .site-header.is-scrolled {
  position: sticky;
}
.home-lookbook .site-header .header-main {
  background: transparent;
  border-bottom-color: transparent;
}
.home-lookbook .site-header:not(.is-scrolled) .nav > a,
.home-lookbook .site-header:not(.is-scrolled) .nav-dropdown > button,
.home-lookbook .site-header:not(.is-scrolled) .header-phone {
  color: rgba(255, 255, 255, 0.9);
}
.home-lookbook .site-header:not(.is-scrolled) .nav > a:hover,
.home-lookbook .site-header:not(.is-scrolled) .nav-dropdown > button:hover,
.home-lookbook .site-header:not(.is-scrolled) .nav > a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.home-lookbook .site-header:not(.is-scrolled) .burger {
  background: rgba(255, 255, 255, 0.12);
}
.home-lookbook .site-header:not(.is-scrolled) .burger span {
  background: var(--white);
}
.home-lookbook .site-header:not(.is-scrolled) .header-phone small {
  color: rgba(255, 255, 255, 0.62);
}
.home-lookbook .site-header:not(.is-scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.home-lookbook .site-header:not(.is-scrolled) .btn-primary:hover {
  background: var(--white);
  color: var(--dark);
}

/* Classic lookbook — solid header like the reference mockup */
.home-lookbook--classic .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.home-lookbook--classic .site-header .header-main {
  background: #f5f3ed;
  border-bottom-color: rgba(31, 32, 28, 0.08);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .nav > a,
.home-lookbook--classic .site-header:not(.is-scrolled) .nav-dropdown > button,
.home-lookbook--classic .site-header:not(.is-scrolled) .header-phone {
  color: var(--text);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .nav > a:hover,
.home-lookbook--classic .site-header:not(.is-scrolled) .nav-dropdown > button:hover,
.home-lookbook--classic .site-header:not(.is-scrolled) .nav > a.active {
  color: var(--forest);
  background: rgba(38, 71, 51, 0.08);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .header-phone small {
  color: var(--muted);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .btn-primary {
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(38, 71, 51, 0.22);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .burger {
  background: rgba(38, 71, 51, 0.08);
}
.home-lookbook--classic .site-header:not(.is-scrolled) .burger span {
  background: var(--dark);
}
.home-lookbook--classic .hero__inner {
  padding-top: 5rem;
  min-height: min(78svh, 760px);
}
.home-lookbook--classic .hero {
  min-height: min(78svh, 760px);
}

.lookbook-tiles {
  padding: 1.25rem 0 3.5rem;
  background: #f5f3ed;
}
.lookbook-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.lookbook-tiles .lookbook-tile {
  aspect-ratio: 0.88;
  border-radius: var(--radius-sm);
}
.lookbook-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-sm);
  background: #f5f3ed;
  border: 1px solid rgba(31, 32, 28, 0.1);
  box-shadow: var(--shadow-sm);
}
.lookbook-lead h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  color: var(--dark);
}
.lookbook-lead p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.lookbook-lead__form {
  display: grid;
  gap: 0.75rem;
}
.lookbook-lead__form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 32, 28, 0.12);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
  font-size: 0.95rem;
}
.lookbook-lead__form input:focus {
  outline: 2px solid rgba(38, 71, 51, 0.25);
  border-color: var(--forest);
}
.lookbook-lead__form .btn {
  width: 100%;
}

.section { padding: 6rem 0; }
.section--white { background: transparent; }
.section--soft { background: #f3f5f4; }
.section--dark {
  background: linear-gradient(180deg, #1b1b17 0%, #21201c 100%);
  color: rgba(255, 255, 255, 0.92);
}
.section--linen { background: #ece3d6; }
.section--intro { padding-top: 5rem; }
.section__head {
  margin-bottom: 2.8rem;
  max-width: 760px;
}
.section__eyebrow {
  color: var(--sand-deep);
  margin-bottom: 0.9rem;
}
.section__head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--dark);
}
.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section--dark .section__head h2,
.section--dark .section__head p { color: var(--white); }
.section--dark .section__head p { color: rgba(255, 255, 255, 0.72); }
.section--dark .section__eyebrow { color: #d2b48a; }

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}
.story-split__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
}
.story-split__content p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}
.story-split__points {
  display: grid;
  gap: 1rem;
}
.story-split__points div {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.story-split__points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--white);
}
.story-split__points span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.story-split__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #d8ddd9;
}

.categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
  border-radius: 34px;
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #d8ddd9;
}
.cat-card:hover {
  color: var(--white);
  transform: translateY(-4px);
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s ease;
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 17, 15, 0.78) 0%, rgba(17, 17, 15, 0.28) 45%, rgba(17, 17, 15, 0.08) 100%);
}
.cat-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  z-index: 1;
}
.cat-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
  color: var(--white);
}
.cat-card__body p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.cat-card__count {
  display: inline-block;
  margin-top: 0.95rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.77rem;
  font-weight: 700;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover {
  color: inherit;
  transform: translateY(-4px);
  border-color: rgba(51, 94, 68, 0.25);
  box-shadow: var(--shadow);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8ddd9;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  max-width: calc(100% - 1.7rem);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(28, 24, 17, 0.16);
  pointer-events: none;
}
.product-badge--hit {
  background: linear-gradient(135deg, #c47a3a, #a85f28);
  color: #ffffff;
}
.product-badge--best-price {
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  color: #f4fff7;
}
.product-badge--spacious {
  background: #ffffff;
  color: var(--forest);
  border: 1px solid rgba(38, 71, 51, 0.18);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}
.product-card__cat {
  margin-bottom: 0.45rem;
  color: var(--sand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-card__title {
  margin: 0 0 0.9rem;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  flex: 1;
}
.product-card__title a { color: inherit; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.product-card__price {
  color: var(--forest);
  font-size: 1.14rem;
  font-weight: 800;
}
.product-card__link { color: var(--forest); font-size: 0.82rem; font-weight: 700; }

.features,
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.feature,
.process__item {
  border-radius: var(--radius);
  padding: 1.5rem;
}
.feature {
  background: #ffffff;
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.feature__num {
  margin-bottom: 0.8rem;
  color: var(--sand-deep);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}
.feature h3,
.process__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--dark);
}
.feature p,
.process__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.process { counter-reset: step; }
.process__item {
  position: relative;
  padding-top: 3.8rem;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(31, 32, 28, 0.08);
}
.process__item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
  color: rgba(38, 71, 51, 0.18);
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1;
}

.cta-band {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 25%),
    linear-gradient(135deg, #181814 0%, #25402f 55%, #2f5841 100%);
  color: var(--white);
  text-align: center;
}
.cta-band__eyebrow { color: #d7b48a; margin-bottom: 0.8rem; }
.cta-band h2 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-band p {
  margin: 0 auto 1.8rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--dark);
  box-shadow: none;
}

.breadcrumbs {
  padding: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs--hero {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  padding: 1.3rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.78);
}
.breadcrumbs--hero a {
  color: rgba(255, 255, 255, 0.78);
}
.breadcrumbs--hero a:hover {
  color: #e8d4b8;
}
.breadcrumbs--hero span {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #1a1a16 0%, #21392a 52%, #30533f 100%);
  padding: 4rem 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,166,127,0.22) 0%, transparent 68%);
}
.page-hero__eyebrow { color: #d7b48a; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: var(--white);
}
.page-hero p {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero--category {
  background: #1a1a16;
  padding: 0 0 3.75rem;
  min-height: min(58svh, 560px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.page-hero--category::after { display: none; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05);
}
.page-hero--category .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.28) 0%, rgba(8, 10, 8, 0.42) 42%, rgba(8, 10, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 10, 8, 0.88) 0%, rgba(8, 10, 8, 0.55) 38%, rgba(8, 10, 8, 0.22) 68%, rgba(8, 10, 8, 0.38) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.page-hero__content--category {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  width: min(var(--max), calc(100% - 2.25rem));
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
  box-sizing: border-box;
  flex: 1 1 auto;
  min-height: min(48svh, 460px);
}
.page-hero__copy {
  position: relative;
  z-index: 2;
  flex: 0 1 34rem;
  min-width: 0;
  max-width: 34rem;
  padding-bottom: 0.25rem;
}
.page-hero__benefits {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: stretch;
  align-self: center;
  flex: 1 1 38rem;
  min-width: 0;
  max-width: 42rem;
  min-height: 11rem;
  padding: 0.5rem 0 1.25rem;
}
.page-hero__desc {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}
.page-hero__cta {
  position: relative;
  z-index: 1;
  margin: 1.35rem 0 0;
  max-width: 42ch;
  color: #e8d4b8;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}
.page-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-hero--category .page-hero__actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.page-hero--category .page-hero__actions .btn-outline:hover {
  border-color: rgba(232, 212, 184, 0.7);
  color: #f5e6d0;
  background: rgba(255, 255, 255, 0.12);
}
.category-benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.4vw, 1.1rem);
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
}
.category-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin: 0;
  min-height: 9.5rem;
  padding: 1.15rem 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(12, 14, 10, 0.42);
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  text-align: center;
  outline: none;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.category-benefit__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.98);
}
.category-benefit__desc {
  margin: 0;
  max-width: 11.5rem;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.category-benefit__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(232, 212, 184, 0.18);
  color: #f0dfc4;
  box-shadow: inset 0 0 0 1px rgba(232, 212, 184, 0.22);
}
.category-benefit__icon {
  display: block;
  width: 22px;
  height: 22px;
}

.pick-modal[hidden] { display: none !important; }
.pick-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.pick-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 10, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pick-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.6rem 1.45rem 1.45rem;
  border-radius: var(--radius-sm);
  background: #f7f0e6;
  border: 1px solid rgba(38, 71, 51, 0.1);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}
.pick-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(38, 71, 51, 0.08);
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.pick-modal__close:hover {
  background: rgba(38, 71, 51, 0.14);
}
.pick-modal__dialog h3 {
  margin: 0 2rem 0.45rem 0;
  color: var(--dark);
  font-size: 1.35rem;
}
.pick-modal__lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.pick-modal__form {
  display: grid;
  gap: 0.75rem;
}
.pick-modal__form input[type="tel"] {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: 0.98rem;
}
.pick-modal__form input[type="tel"]:focus {
  outline: 2px solid rgba(38, 71, 51, 0.22);
  border-color: var(--forest);
}
.pick-modal__form .btn { width: 100%; }
.pick-modal__form .form-success,
.pick-modal__form .form-error {
  margin: 0;
  font-size: 0.88rem;
}
.pick-modal__form .form-success { color: var(--forest) !important; }
.pick-modal__form .form-error { color: #b42318 !important; }
body.pick-modal-open { overflow: hidden; }

.product-page {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - var(--header-h) - 2rem);
}
.product-gallery__frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #d8ddd9;
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow);
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__frame .product-badge {
  top: 1.1rem;
  left: 1.1rem;
  font-size: 0.74rem;
  padding: 0.48rem 0.9rem;
}
.product-gallery__frame img {
  width: 100%;
  height: auto;
  max-height: min(62vh, 560px);
  object-fit: contain;
}
.product-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 0.15rem 0.1rem 0.45rem;
  flex: 0 0 auto;
}
.product-gallery__thumbs::-webkit-scrollbar {
  height: 6px;
}
.product-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(31, 32, 28, 0.28);
  border-radius: var(--radius-sm);
}
.product-gallery__thumb {
  flex: 0 0 4.65rem;
  width: 4.65rem;
  min-width: 4.65rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-gallery__thumb.is-active {
  border-color: var(--forest);
}
.product-gallery__thumb:hover {
  transform: translateY(-1px);
}
.product-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #d8ddd9;
}
.product-info__cat {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--sand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-info h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
}
.product-order-card {
  margin: 1.5rem 0;
  padding: 1.7rem;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.product-info__price {
  color: var(--forest);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.product-info__note {
  margin: 0.55rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.product-geo-delivery {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(38, 71, 51, 0.06);
  border: 1px solid rgba(38, 71, 51, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.product-geo-delivery__icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: var(--forest);
  opacity: 0.85;
}
.product-geo-delivery [data-geo-delivery-text].is-ready {
  color: var(--forest);
  font-weight: 600;
}
.product-lead {
  margin: 1.25rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 32, 28, 0.08);
}
.product-lead__heading {
  position: relative;
  margin: 0 0 1rem;
  cursor: help;
  border-radius: 12px;
  outline: none;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.product-lead__heading:hover,
.product-lead__heading:focus-visible,
.product-lead__heading.is-open {
  background: rgba(74, 93, 55, 0.06);
  box-shadow: 0 0 0 2px rgba(74, 93, 55, 0.16);
}
.product-lead__title {
  margin: 0 0 0.35rem;
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-lead__tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(74, 93, 55, 0.12);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}
.product-lead__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0 0.15rem 0.15rem;
}
.product-lead__tip-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.55rem);
  z-index: 40;
  box-sizing: border-box;
  width: max-content;
  max-width: min(20rem, calc(100vw - 2.5rem));
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(12, 14, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  clip-path: inset(50%);
}
.product-lead__tip-tooltip::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: rgba(12, 14, 10, 0.96);
}
.product-lead__heading:hover .product-lead__tip-tooltip,
.product-lead__heading:focus-visible .product-lead__tip-tooltip,
.product-lead__heading.is-open .product-lead__tip-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  clip-path: none;
}
.product-lead__form .btn { width: 100%; }
.product-lead__form .form-success,
.product-lead__form .form-error {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.product-lead__form .form-success { color: var(--green); }
.product-lead__form .form-error { color: #c0392b; }
.form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.product-actions .btn-outline {
  color: var(--forest);
  background: transparent;
  border-color: rgba(38, 71, 51, 0.28);
}
.product-actions .btn-outline:hover {
  background: rgba(38, 71, 51, 0.08);
  color: var(--forest);
}
.product-section-title {
  margin: 2rem 0 1rem;
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.product-description {
  margin-top: 0.5rem;
}
.product-description__subhead {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.product-description p {
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.65;
}
.product-description p:last-child {
  margin-bottom: 0;
}
.product-specs {
  margin-top: 0.25rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.spec-item {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(31, 32, 28, 0.08);
}
.spec-item__k {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec-item__v {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.contacts-page {
  display: grid;
  gap: 1.6rem;
}
.geo-delivery {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem 1.35rem;
  align-items: start;
  padding: 1.45rem 1.6rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(232, 239, 232, 0.9)),
    var(--ivory, #ffffff);
  border: 1px solid rgba(38, 71, 51, 0.12);
  box-shadow: var(--shadow-sm);
}
.geo-delivery__icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: var(--radius-sm);
  color: var(--forest, #264733);
  background: rgba(38, 71, 51, 0.1);
}
.geo-delivery__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.geo-delivery__title {
  margin: 0 0 0.35rem;
  color: var(--dark);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}
.geo-delivery__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 54rem;
}
.geo-delivery.is-ready .geo-delivery__title {
  color: var(--forest, #264733);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}
.contact-card {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.contact-card--form {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.72);
}
.contact-card--legal {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.66);
}
.contact-card__legal-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-card__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-card h3 {
  margin: 0 0 0.55rem;
  color: var(--dark);
  font-size: 1.3rem;
}
.contact-card__note {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list__label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-list__value {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
}
.contact-list__value a {
  color: var(--forest, #264733);
  text-decoration: none;
  font-weight: 700;
}
.contact-list__value a:hover {
  text-decoration: underline;
}
.contact-card.is-nearest {
  border-color: rgba(38, 71, 51, 0.28);
  box-shadow: 0 14px 36px rgba(38, 71, 51, 0.1);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(31, 32, 28, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.66);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(38, 71, 51, 0.34);
  box-shadow: 0 0 0 4px rgba(38, 71, 51, 0.1);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-success { color: var(--forest) !important; }
.form-error { color: #c0392b !important; margin-top: 1rem; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.prose { max-width: 820px; }
.prose h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.35rem;
  color: var(--dark);
}
.prose h2:first-child { margin-top: 0; }
.prose p,
.prose ul,
.prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; }
.prose img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}
.prose-figure { margin: 1.5rem 0 0; }
.info-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.info-gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--linen);
}
.info-gallery__item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.site-footer {
  background: #161613;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.3rem;
}
.site-footer h4 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--white); }
.footer-brand p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
}
.footer-phone {
  color: #dcc39f !important;
  font-size: 1.2rem;
  font-weight: 800;
}
.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.78;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom__copy {
  opacity: 0.9;
}
.footer-bottom__legal {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-bottom__note {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  opacity: 0.72;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.float-cta {
  position: fixed;
  right: 1.4rem;
  bottom: calc(var(--float-cta-bottom) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--float-btn-gap);
}
/* Desktop: messenger stack sits left of the floating video */
@media (min-width: 769px) {
  .video-widget:not([hidden]) ~ .float-cta {
    right: calc(1.25rem + 100px + 0.85rem);
  }
  .video-widget:not([hidden])[data-state="opened"] ~ .float-cta {
    right: calc(1.25rem + 202px + 0.85rem);
  }
}
.float-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--float-btn-size);
  height: var(--float-btn-size);
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(28, 24, 17, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-cta__btn:hover {
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(28, 24, 17, 0.3);
}
.float-cta__btn--phone {
  width: var(--float-btn-phone-size);
  height: var(--float-btn-phone-size);
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  box-shadow: 0 20px 40px rgba(38, 71, 51, 0.32);
}
.float-cta__btn--telegram {
  background: linear-gradient(145deg, #3eb5e8, #229ed9);
}
.float-cta__btn--max {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.float-cta__max-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Floating video widget (muted → expand + unmute); .float-cta sits to its left */
.video-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 89;
  pointer-events: none;
}
.video-widget[hidden] { display: none !important; }
.video-widget__container {
  pointer-events: auto;
  position: absolute;
  right: 1.25rem;
  bottom: calc(var(--float-cta-bottom) + env(safe-area-inset-bottom, 0px));
  width: 100px;
  height: 178px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid rgba(255, 250, 243, 0.92);
  border-radius: 14px;
  background: #2a241c;
  box-shadow: 0 16px 40px rgba(28, 24, 17, 0.28);
  outline: none;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-radius 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.video-widget__container:hover,
.video-widget__container:focus-visible {
  transform: scale(1.06) translate(4px, -4px);
  box-shadow: 0 22px 48px rgba(28, 24, 17, 0.34);
}
.video-widget[data-state="opened"] .video-widget__container {
  width: 202px;
  height: 360px;
  border-radius: var(--radius-sm);
}
.video-widget[data-state="opened"] .video-widget__container:hover,
.video-widget[data-state="opened"] .video-widget__container:focus-visible {
  transform: none;
}
.video-widget__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  transition: opacity 0.35s ease;
}
.video-widget[data-state="opened"] .video-widget__video { opacity: 1; }
.video-widget__close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.video-widget__close::before,
.video-widget__close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 7px;
  width: 2px;
  height: 14px;
  background: var(--forest);
  border-radius: 1px;
}
.video-widget__close::before { transform: rotate(45deg); }
.video-widget__close::after { transform: rotate(-45deg); }
.video-widget__container:hover .video-widget__close,
.video-widget__container:focus-within .video-widget__close,
.video-widget[data-state="opened"] .video-widget__close {
  opacity: 0.85;
}
.video-widget__close:hover {
  opacity: 1 !important;
  background: var(--panel-strong);
  transform: scale(1.06);
}
/* opened: close becomes minimize (horizontal bar) */
.video-widget[data-state="opened"] .video-widget__close::before {
  display: none;
}
.video-widget[data-state="opened"] .video-widget__close::after {
  transform: rotate(90deg);
  top: 7px;
  height: 14px;
}
@media (max-width: 768px) {
  .video-widget__container {
    right: 0.85rem;
    bottom: calc(var(--float-stack-height) + 0.75rem + env(safe-area-inset-bottom, 0px));
    width: 84px;
    height: 148px;
    border-radius: 12px;
  }
  .video-widget[data-state="opened"] .video-widget__container {
    width: 150px;
    height: 266px;
    border-radius: 16px;
  }
  .video-widget__close { opacity: 0.75; }
  .float-cta {
    right: 0.85rem;
  }
}
@media (max-width: 480px) {
  .video-widget__container {
    right: 0.75rem;
    bottom: calc(var(--float-stack-height) + 0.65rem + env(safe-area-inset-bottom, 0px));
    width: 76px;
    height: 134px;
  }
  .video-widget[data-state="opened"] .video-widget__container {
    width: 132px;
    height: 234px;
  }
  .float-cta {
    right: 0.75rem;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  padding: 1.5rem;
  background: #f7f0e6;
}
.mobile-nav.open { display: block; }
.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2.75rem 0 1.25rem;
  color: var(--forest);
  text-decoration: none;
}
.mobile-nav__logo img {
  flex-shrink: 0;
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
}
.mobile-nav__logo .logo__text {
  font-size: 1.15rem;
}
.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(38, 71, 51, 0.08);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-nav > a,
.mobile-nav__sub {
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.mobile-nav > a {
  padding: 0.9rem 0;
  font-size: 1.04rem;
  font-weight: 650;
}
.mobile-nav__label {
  display: block;
  padding: 1.25rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-nav__sub {
  padding: 0.68rem 0 0.68rem 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .story-split,
  .product-page {
    grid-template-columns: 1fr;
  }
  .categories--lookbook .cat-card,
  .categories--lookbook .cat-card:nth-child(1),
  .categories--lookbook .cat-card:nth-child(2),
  .categories--lookbook .cat-card:nth-child(n+3) {
    grid-column: span 6;
  }
  .features,
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-shell__grid { grid-template-columns: 240px minmax(0, 1fr); }
  .catalog-collections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook-tiles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) and (min-width: 769px) {
  .page-hero__content--category {
    gap: 1.25rem;
    padding-inline: 1.25rem;
  }
  .category-benefit {
    min-height: 9rem;
    padding: 1rem 0.65rem 0.95rem;
  }
  .category-benefit__title { font-size: 0.8rem; }
  .category-benefit__desc { font-size: 0.72rem; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--float-stack-height) + 1.25rem + env(safe-area-inset-bottom, 0px));
  }
  body:has(.video-widget:not([hidden])) {
    padding-bottom: calc(var(--float-stack-height) + 10.5rem + env(safe-area-inset-bottom, 0px));
  }
  body:has(.video-widget:not([hidden])[data-state="opened"]) {
    padding-bottom: calc(var(--float-stack-height) + 18.5rem + env(safe-area-inset-bottom, 0px));
  }
  .nav,
  .header-phone,
  .header-actions { display: none; }
  .topbar .header-geo:not(.header-geo--compact) { display: none; }
  .header-geo--compact {
    display: inline-flex;
    flex: 1 1 100%;
    order: 10;
    max-width: none;
    font-size: 0.7rem;
  }
  .header-main .container {
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }
  .burger {
    display: flex;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
  }
  .logo img {
    height: 48px;
    width: 48px;
  }
  .logo__text { font-size: 0.95rem; }
  .header-main .container { min-height: 72px; }
  :root { --header-h: 72px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .section { padding: 4.5rem 0; }
  .hero,
  .hero__inner { min-height: auto; }
  .hero__inner { padding: 5.5rem 0 2rem; }
  .hero h1 { max-width: none; }
  .hero-chapters { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero-utp { gap: 0.45rem; }
  .hero-utp__item { font-size: 0.74rem; }
  .hero-chips { display: none; }
  .page-hero--category {
    min-height: auto;
    padding: 0 0 3rem;
    overflow: hidden;
  }
  .page-hero--category h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .page-hero__content--category {
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
    min-height: 0;
    padding-inline: 1.125rem;
  }
  .page-hero__copy { max-width: none; flex: 1 1 auto; }
  .page-hero__benefits {
    align-self: stretch;
    flex: 1 1 auto;
    max-width: none;
    min-height: 0;
    padding: 0;
  }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero__actions .btn { width: 100%; }
  .category-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .category-benefit {
    min-height: 8.5rem;
    padding: 0.85rem 0.5rem 0.85rem;
    border-radius: 14px;
  }
  .category-benefit__icon-wrap {
    width: 2.25rem;
    height: 2.25rem;
  }
  .category-benefit__title { font-size: 0.74rem; }
  .category-benefit__desc {
    max-width: none;
    font-size: 0.68rem;
  }
  .product-lead__tip-tooltip {
    max-width: min(16.5rem, calc(100vw - 2rem));
  }
  .features,
  .process,
  .contact-grid,
  .footer-grid,
  .specs-grid,
  .categories,
  .categories--lookbook .cat-card,
  .categories--lookbook .cat-card:nth-child(1),
  .categories--lookbook .cat-card:nth-child(2),
  .categories--lookbook .cat-card:nth-child(n+3) {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
  .cat-card { aspect-ratio: 1.1; }
  .product-gallery {
    position: static;
    max-height: none;
  }
  .container { width: min(var(--max), calc(100% - 1.25rem)); }
  .catalog-hero__grid,
  .catalog-shell__grid { grid-template-columns: 1fr; }
  .catalog-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-collections { grid-template-columns: 1fr; }
  .catalog-benefits { grid-template-columns: 1fr; }
  .lookbook-tiles__grid { grid-template-columns: 1fr; }
  .lookbook-tiles .lookbook-tile { aspect-ratio: 1.15; }
  .products,
  .products--catalog {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
    gap: 1rem;
  }
  .product-card__footer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .product-info__price { font-size: 2rem; }
  .product-order-card { padding: 1.25rem; border-radius: 22px; }
  .product-gallery__thumb {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    min-width: 3.25rem;
    min-height: 3.25rem;
  }
  .catalog-main__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .catalog-main__link { white-space: normal; }
  .catalog-hero__actions { flex-direction: column; }
  .catalog-hero__actions .btn { width: 100%; }
  .catalog-hero h1 { max-width: none; }
  .geo-delivery {
    grid-template-columns: 1fr;
    padding: 1.15rem 1.2rem;
  }
  .info-gallery {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 9.5rem), 1fr));
  }
  .breadcrumbs {
    font-size: 0.76rem;
    line-height: 1.45;
    word-break: break-word;
  }
  .cta-band { padding: 3.5rem 0; }
  .form-group input,
  .form-group textarea,
  .lookbook-lead__form input,
  .catalog-lead__form input,
  .pick-modal__form input[type="tel"],
  .product-lead__form input {
    min-height: 44px;
    font-size: 16px;
  }
  .btn {
    min-height: 44px;
  }
  .site-footer { padding: 3rem 0 1.25rem; }
  .footer-grid { gap: 1.5rem; }
}

/* Homepage catalog layout */
.home-catalog h1,
.home-catalog h2,
.home-catalog h3 {
  font-family: var(--font);
  letter-spacing: -0.02em;
}
.home-catalog {
  background: #f3f2ee;
}
.catalog-hero {
  padding: 2.5rem 0 0;
  background: #f3f2ee;
}
.catalog-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.catalog-hero__tag {
  margin: 0 0 0.75rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.catalog-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  max-width: 16ch;
}
.catalog-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
}
.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.catalog-hero__visual {
  border-radius: 18px;
  background: #d8ddd9;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.catalog-hero__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}
.catalog-section {
  padding: 3.5rem 0 4.5rem;
  background: #f3f5f4;
}
.catalog-section .catalog-stats {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.catalog-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-bottom: 2rem;
}
.catalog-stats div {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.catalog-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--forest);
  line-height: 1;
}
.catalog-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.catalog-shell {
  padding: 0 0 3.5rem;
}
.catalog-shell__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}
.catalog-sidebar h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.catalog-sidebar__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.catalog-sidebar__list a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}
.catalog-sidebar__list a:hover { color: var(--forest); }
.catalog-sidebar__list strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.catalog-lead {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.catalog-lead h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}
.catalog-lead p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.catalog-lead__form input {
  width: 100%;
  margin-bottom: 0.65rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.catalog-lead__form .btn { width: 100%; }
.catalog-main__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.catalog-main__head--spaced { margin-top: 2.5rem; }
.catalog-main__head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.catalog-main__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.catalog-main__link {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
.products--catalog {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.catalog-collections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.cat-card--compact {
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: 120px auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
  color: inherit;
}
.cat-card--compact:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-card--compact .cat-card__img {
  position: static;
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #d8ddd9;
}
.cat-card--compact .cat-card__overlay { display: none; }
.cat-card--compact .cat-card__body {
  position: static;
  padding: 0.85rem;
}
.cat-card--compact .cat-card__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.cat-card--compact .cat-card__count {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}
.catalog-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.catalog-benefit {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.catalog-benefit strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.catalog-benefit span {
  color: var(--muted);
  font-size: 0.86rem;
}
.process--catalog .process__item {
  background: #f8f7f3;
  border-radius: 14px;
  border: 1px solid var(--line);
}

@media (max-width: 768px) {
  .catalog-shell__grid {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
    width: 100%;
  }
  .catalog-main {
    min-width: 0;
    width: 100%;
  }
  .products--catalog {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
    gap: 1rem;
  }
  .catalog-collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-benefits {
    grid-template-columns: 1fr;
  }
  .catalog-main__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .catalog-main__link {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .products--catalog {
    grid-template-columns: 1fr;
  }
  .catalog-collections {
    grid-template-columns: 1fr;
  }
}

/* Homepage Tilda content blocks */
.lookbook-about {
  padding: 2.5rem 0 0;
  background: #f5f3ed;
}
.lookbook-about p {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.scheme-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.scheme-card {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(245, 243, 237, 0.96);
}
.scheme-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.featured-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.featured-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8ddd9;
}
.featured-card__media .product-badge {
  top: 0.85rem;
  left: 0.85rem;
  right: auto;
}
.featured-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.featured-card:hover .featured-card__media img { transform: scale(1.04); }
.featured-card__price {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(23, 23, 20, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}
.featured-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}
.featured-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
.featured-card__title a { color: inherit; }
.featured-card__descr {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}
.featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.featured-card__link {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.review-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.review-card__head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0.95rem;
}
.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}
.review-card__author {
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
}
.review-card__product {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.review-card__text {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
}
.review-card__more {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.review-card__more summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 700;
  list-style: none;
}
.review-card__more summary::-webkit-details-marker { display: none; }
.review-card__more p {
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scheme-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-chapters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(var(--max), calc(100% - 1rem)); }
  .hero__inner { padding: 4.75rem 0 1.75rem; }
  .hero h1 { font-size: clamp(2rem, 10.5vw, 2.75rem); }
  .hero__lead { font-size: 0.95rem; }
  .hero-utp__item {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
  }
  .hero-chapters {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .category-benefits {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .category-benefit {
    min-height: 0;
    padding: 0.9rem 0.85rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem 0.75rem;
    align-items: start;
    text-align: left;
  }
  .category-benefit__icon-wrap {
    grid-row: span 2;
    width: 2.5rem;
    height: 2.5rem;
  }
  .category-benefit__title { font-size: 0.82rem; }
  .category-benefit__desc { font-size: 0.76rem; }
  .catalog-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .catalog-stats strong { font-size: 1.2rem; }
  .product-info h1 { font-size: clamp(1.65rem, 7vw, 2rem); }
  .product-info__price { font-size: 1.75rem; }
  .product-gallery__frame { border-radius: 22px; }
  .product-gallery__frame img { max-height: min(52vh, 420px); }
  .page-hero { padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
  .section__head h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .mobile-nav__close {
    width: 44px;
    height: 44px;
  }
  .mobile-nav > a {
    padding: 1rem 0;
    min-height: 44px;
  }
  .video-widget__container:hover,
  .video-widget__container:focus-visible {
    transform: none;
  }
  body:has(.video-widget:not([hidden])) {
    padding-bottom: calc(var(--float-stack-height) + 9.5rem + env(safe-area-inset-bottom, 0px));
  }
  body:has(.video-widget:not([hidden])[data-state="opened"]) {
    padding-bottom: calc(var(--float-stack-height) + 16.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* === CEDAR ESTATE LISTING REDESIGN (Pacaso / Shippen / Trulia-inspired) === */
html { scroll-behavior: smooth; }
body {
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: none !important;
}
.btn:hover { transform: translateY(-1px); }
a.btn,
button.btn {
  text-decoration: none;
}
a.btn-primary,
button.btn-primary,
.btn-primary {
  background: var(--forest) !important;
  border: 1px solid var(--forest) !important;
  color: #ffffff !important;
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background: var(--forest-2) !important;
  color: #ffffff !important;
}
a.btn-outline,
.btn-outline {
  color: #ffffff !important;
}

.site-header {
  backdrop-filter: blur(14px);
}
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.header-main {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
}
.logo {
  gap: 0.75rem;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.nav > a,
.nav-dropdown > button {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  min-height: 100svh;
}
.hero__bg {
  transform: none;
  filter: saturate(0.95) contrast(1.08) brightness(0.92);
}
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(8,12,10,0.25) 0%, rgba(8,12,10,0.15) 40%, rgba(8,12,10,0.78) 100%),
    linear-gradient(90deg, rgba(8,12,10,0.55) 0%, rgba(8,12,10,0.1) 55%, transparent 100%);
}
.hero__inner {
  min-height: 100svh;
  padding: 8rem 0 3rem;
  justify-content: flex-end;
}
.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 600;
  line-height: 0.94;
  text-wrap: balance;
}
.hero__kicker {
  color: rgba(255,255,255,0.7);
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.16em;
}
.hero__lead {
  max-width: 42ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
}
.hero-utp__item,
.hero-chip {
  border-radius: var(--radius-sm);
  backdrop-filter: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.hero-chapters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-chapters a {
  padding: 1rem 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Listing cards — property portal style */
.products {
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.product-card {
  border-radius: var(--radius) !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 61, 50, 0.35) !important;
  box-shadow: var(--shadow) !important;
}
.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
  gap: 0.35rem;
}
.product-card__cat {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.product-card__title {
  font-family: var(--font) !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 0.65rem;
}
.product-card__footer {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  align-items: baseline;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark) !important;
}
.product-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-badge {
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-size: 0.62rem;
}
.product-badge--hit {
  background: var(--accent);
  color: #fff !important;
}
.product-badge--best-price {
  background: var(--forest);
  color: #fff !important;
}
.product-badge--spacious {
  background: #fff;
  color: var(--forest);
  border: 1px solid var(--line);
}

.cat-card {
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.cat-card__overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(8,12,10,0.78) 100%);
}

.section--soft,
.section--linen,
.section--ivory {
  background: var(--bg-soft) !important;
}
.section--dark {
  background: var(--dark) !important;
  color: rgba(255,255,255,0.9);
}

.feature,
.process__item,
.review-card,
.lookbook-lead,
.catalog-sidebar,
.lead-form,
.form-card {
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  border: 1px solid var(--line);
  background: #fff;
}

/* CTA: dark band, light text, white label on green button */
.cta-band {
  background: linear-gradient(135deg, #0c1210 0%, #1e3d32 60%, #2f5646 100%) !important;
  border: none !important;
  color: #ffffff !important;
}
.cta-band__eyebrow {
  color: #c5b896 !important;
}
.cta-band h2 {
  color: #ffffff !important;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.82) !important;
}
.cta-band .btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0c1210 !important;
}
.cta-band .btn-primary:hover {
  background: #eef1ef !important;
  color: #0c1210 !important;
}

.feature__num {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 2rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  border-top: none;
}
.site-footer a { color: rgba(255,255,255,0.88); }
.footer-phone,
.footer-brand .logo__text { color: #fff; }

.float-cta__btn {
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.float-cta__btn--max { display: none !important; }

.page-hero {
  min-height: 42vh;
}
.page-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.lookbook-tiles {
  gap: 1rem;
}
.lookbook-tile {
  border-radius: var(--radius) !important;
}

.catalog-section {
  padding-block: 4rem;
}
.catalog-stats {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

input, textarea, select {
  border-radius: var(--radius-sm) !important;
  border-color: var(--line) !important;
  background: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes estate-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__editorial {
  animation: estate-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-chapters {
  animation: estate-fade-up 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.product-card {
  animation: estate-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
