﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --bg: #efe7db;
  --bg-soft: #f6f1e8;
  --bg-ivory: #fbf8f3;
  --panel: rgba(255, 248, 240, 0.78);
  --panel-strong: #fffaf3;
  --dark: #171714;
  --dark-soft: #23231f;
  --forest: #264733;
  --forest-2: #335e44;
  --sand: #c7a67f;
  --sand-deep: #9f7f5e;
  --text: #1f201c;
  --muted: #66685f;
  --white: #ffffff;
  --line: rgba(31, 32, 28, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 10px 24px rgba(28, 24, 17, 0.06);
  --shadow: 0 24px 60px rgba(28, 24, 17, 0.12);
  --shadow-lg: 0 34px 90px rgba(18, 16, 12, 0.2);
  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius: 30px;
  --radius-lg: 42px;
  --max: 1240px;
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 166, 127, 0.18), transparent 30%),
    linear-gradient(180deg, #f8f2e9 0%, var(--bg) 55%, #f3ebdf 100%);
  -webkit-font-smoothing: antialiased;
}
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: 999px;
  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); }

.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 img {
  height: 48px;
  width: auto;
  border-radius: 10px;
}
.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: 999px;
  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: 999px;
  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: 999px;
  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: #f7f2ea; }
.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: 24px;
}
.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 .topbar { display: none; }
.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: 20px;
}
.lookbook-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.65rem 1.5rem;
  border-radius: 20px;
  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: #f8f2e9; }
.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: #e7ddcf;
}

.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: #e7ddcf;
}
.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: 999px;
  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: 28px;
  background: rgba(255, 250, 243, 0.82);
  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 {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e7ddcf;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.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: 28px;
  padding: 1.5rem;
}
.feature {
  background: rgba(255, 250, 243, 0.75);
  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); }

.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);
}

.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);
}
.product-gallery__frame {
  overflow: hidden;
  border-radius: 34px;
  background: #e7ddcf;
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow);
}
.product-gallery__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.product-gallery__thumb {
  flex: 0 0 calc(20% - 0.52rem);
  min-width: 4.5rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.82);
  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: #e7ddcf;
}
.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: 30px;
  background: rgba(255, 250, 243, 0.82);
  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-lead {
  margin: 1.25rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 32, 28, 0.08);
}
.product-lead__title {
  margin: 0 0 0.35rem;
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 800;
}
.product-lead__subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.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: 20px;
  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;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.6rem;
}
.contact-card {
  padding: 1.8rem;
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(31, 32, 28, 0.08);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: 1.3rem;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.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 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.68;
}

.float-cta {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
}
.float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  color: var(--white);
  box-shadow: 0 20px 40px rgba(38, 71, 51, 0.32);
}
.float-cta a:hover {
  color: var(--white);
  transform: scale(1.06);
}

.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__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: 768px) {
  .nav,
  .header-phone,
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .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; }
  .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; }
  .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; }
}

/* 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: #e7ddcf;
  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: #f7f2ea;
}
.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: #e7ddcf;
}
.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);
}

/* 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: #e7ddcf;
}
.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: 999px;
  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; }
}
