:root {
  --color-ink: #1f1a17;
  --color-muted: #6f6259;
  --color-soft: #f6f1ea;
  --color-surface: #fffaf4;
  --color-surface-strong: #ffffff;
  --color-line: #e3d7cc;
  --color-brand: #9b632f;
  --color-brand-dark: #5c351b;
  --color-sage: #64756b;
  --color-sage-soft: #e9eee9;
  --color-dark: #211817;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(42, 31, 24, 0.1);
  --shadow-hover: 0 22px 55px rgba(42, 31, 24, 0.16);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 78px;
  --container: 1180px;
  --section-space: clamp(4rem, 7vw, 6.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #f8f5ef;
  font-family: var(--font-body);
  line-height: 1.55;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
}

button,
input {
  font: inherit;
}

::selection {
  background: rgba(155, 99, 47, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(100, 117, 107, 0.34);
  outline-offset: 4px;
}

.is-lightbox-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.72rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.button--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  border-color: rgba(255, 255, 255, 0.58);
}

.button--large {
  min-height: 50px;
  padding-inline: 1.35rem;
  font-size: 0.98rem;
}

.section {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: var(--section-space) clamp(1.1rem, 4vw, 2rem);
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(clamp(1.1rem, 4vw, 2rem), calc((100% - var(--container)) / 2 + 2rem));
  background: linear-gradient(180deg, #f1ebe3, #f8f5ef);
}

.section-heading {
  width: min(760px, 100%);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.section-heading h2 {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 0.85rem;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.glass-panel {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-flex;
  color: var(--color-brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid rgba(47, 35, 28, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(43, 31, 23, 0.09);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

.site-header__inner {
  width: min(100%, 1280px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(170px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 0.7rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-width: 168px;
}

.logo__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #d3a36f;
  flex: 0 0 auto;
}

.logo__mark span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 16px;
  border-radius: 99px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-12px);
  transform-origin: center;
}

.logo__text {
  display: grid;
  color: #2c221d;
  line-height: 1;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.logo__text small {
  margin-top: 0.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.38em;
}

.logo--mark-only .logo__text {
  display: none;
}

.logo--mark-only {
  min-width: 0;
}

.logo--mark-only .logo__mark {
  width: 78px;
  height: 78px;
  opacity: 0.45;
}

.logo--mark-only .logo__mark span {
  width: 5px;
  height: 31px;
  transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-24px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.65rem);
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.1rem;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.22rem;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-brand-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + clamp(2.4rem, 6vw, 6rem)) clamp(1.1rem, 4vw, 4rem) clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
  background-color: #211d1b;
  background-image:
    linear-gradient(90deg, rgba(20, 18, 17, 0.96) 0%, rgba(20, 18, 17, 0.78) 42%, rgba(20, 18, 17, 0.12) 72%),
    linear-gradient(180deg, rgba(20, 18, 17, 0.04), rgba(20, 18, 17, 0.48)),
    var(--hero-bg);
  background-size: cover, cover, auto 100%;
  background-repeat: no-repeat;
  background-position: center, center, right center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(20, 18, 17, 0.58));
}

.hero__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(270px, 370px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(2rem, 7vw, 6rem);
}

.hero__copy {
  max-width: 660px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.26);
}

.hero__kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f1cfaa;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(255, 250, 244, 0.92);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.68;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 36px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__note {
  display: grid;
  gap: 0.25rem;
  max-width: 430px;
  margin-top: 1.45rem;
  color: rgba(255, 250, 244, 0.9);
}

.hero__note strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--color-white);
}

.hero__note span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero__intentions {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero__intentions li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 250, 244, 0.95);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero__intentions .icon {
  width: 28px;
  height: 28px;
  padding: 0.38rem;
  border-radius: 50%;
  background: rgba(241, 207, 170, 0.18);
  color: #f1cfaa;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr) minmax(190px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about__story h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
}

.about__story p {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.value-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-surface-strong);
}

.value-item__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-sage-soft);
  color: var(--color-sage);
}

.value-item h3 {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-item p {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.about__founder {
  margin: 0;
}

.about__founder img {
  width: min(100%, 250px);
  margin-inline: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.products__grid,
.store__grid,
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card,
.store-card,
.catalog-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.store-card:hover,
.catalog-card:hover {
  transform: translateY(-3px);
  border-color: #d5c6bb;
  box-shadow: var(--shadow-hover);
}

.product-card img,
.store-card img {
  width: 100%;
  aspect-ratio: 1.25 / 0.82;
  object-fit: cover;
  background: #eadfd4;
}

.product-card__body,
.store-card__body,
.catalog-card__body {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0.78rem;
  padding: 1.15rem;
}

.product-card__tag {
  justify-self: start;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3,
.store-card h3,
.catalog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.08;
  font-weight: 600;
}

.product-card__line,
.store-card__line {
  color: var(--color-brand-dark);
  font-weight: 850;
}

.product-card__body > p:not(.product-card__line),
.product-card li,
.store-card p:not(.store-card__line),
.catalog-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.product-card ul,
.store-card ul,
.catalog-card ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.product-card li,
.store-card li,
.catalog-card li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand);
  flex: 0 0 auto;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1.15rem 1.15rem;
}

.product-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1e5da;
  color: var(--color-brand-dark);
  font-size: 1.35rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.store {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.store-card__meta,
.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.store-card__meta span,
.store-card__meta strong,
.catalog-card__meta span,
.catalog-card__meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.store-card__meta span,
.catalog-card__meta span {
  background: var(--color-sage-soft);
  color: var(--color-sage);
}

.store-card__meta strong,
.catalog-card__meta strong {
  background: #f2e5d8;
  color: var(--color-brand-dark);
}

.store-card li .icon,
.catalog-card li .icon {
  width: 22px;
  height: 22px;
  padding: 0.28rem;
  border-radius: 50%;
  background: #f2e5d8;
  color: var(--color-brand-dark);
}

.store-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1.15rem 1.15rem;
}

.store-card__footer > span {
  color: var(--color-brand-dark);
  font-size: 0.92rem;
  font-weight: 950;
}

.store-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 42px;
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--color-dark);
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-card__button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.payment-strip {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.payment-method {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-surface);
}

.payment-method .icon {
  width: 34px;
  height: 34px;
  padding: 0.45rem;
  border-radius: 50%;
  background: var(--color-sage-soft);
  color: var(--color-sage);
}

.payment-method h3 {
  font-size: 0.92rem;
  font-weight: 900;
}

.payment-method p {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-soft);
}

.benefit-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  font-size: 1.3rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-surface-strong);
  box-shadow: var(--shadow-soft);
}

.testimonial-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.1;
}

.testimonial-card__content > span {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.testimonial-card p {
  margin-top: 0.7rem;
  color: var(--color-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.stars {
  margin-top: 0.75rem;
  color: var(--color-brand);
  font-size: 1.06rem;
  letter-spacing: 0.08em;
}

.catalog-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee3d8;
  cursor: zoom-in;
}

.catalog-card__media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.catalog-card__media:hover img,
.catalog-card__media:focus-visible img {
  transform: scale(1.035);
}

.catalog-card__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-card__actions {
  padding: 0 1.15rem 1.15rem;
}

.catalog-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 900;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(24, 18, 14, 0.62);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__dialog {
  width: min(920px, 100%);
  max-height: min(760px, 86svh);
  margin: 0;
  padding: 0.7rem;
  border-radius: 16px;
  background: var(--color-surface-strong);
}

.gallery-lightbox__dialog img {
  width: 100%;
  max-height: calc(86svh - 86px);
  border-radius: 10px;
  object-fit: contain;
  background: #f1ebe3;
}

.gallery-lightbox__dialog figcaption {
  padding: 0.8rem 0.4rem 0.2rem;
  color: var(--color-dark);
  font-weight: 900;
  text-align: center;
}

.gallery-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 91;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
}

.final-cta {
  width: min(calc(100% - 2.2rem), var(--container));
  margin: var(--section-space) auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-dark), #3a2822);
  color: var(--color-white);
}

.final-cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 500;
}

.final-cta__action {
  display: grid;
  gap: 1rem;
}

.final-cta__action p {
  color: rgba(255, 250, 244, 0.86);
}

.footer {
  background: #1f1a17;
  color: rgba(255, 250, 244, 0.86);
}

.footer__main {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer .logo__text,
.footer .logo {
  color: var(--color-white);
}

.footer__brand p {
  margin-top: 1rem;
  max-width: 280px;
  color: rgba(255, 250, 244, 0.68);
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.footer__column h2 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__link,
.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.92rem;
}

.footer__link:hover,
.footer__nav a:hover {
  color: var(--color-white);
}

.footer__bar {
  padding: 1rem clamp(1.1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 244, 0.52);
  font-size: 0.86rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 48px;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  background: #f7f3ed;
  color: var(--color-dark);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(35, 25, 19, 0.2);
}

.floating-whatsapp .icon {
  color: #1fae5b;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .site-header__actions {
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 1rem;
    right: 1rem;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: var(--color-surface-strong);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--color-soft);
  }

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

  .hero__intentions {
    max-width: 520px;
  }

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

  .about__founder {
    grid-column: 1 / -1;
  }

  .products__grid,
  .store__grid,
  .catalog__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-strip,
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta,
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .site-header__inner {
    grid-template-columns: auto auto auto;
    gap: 0.65rem;
    padding-inline: 0.9rem;
  }

  .logo {
    min-width: 0;
    gap: 0.5rem;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
  }

  .logo__mark span {
    width: 2px;
    height: 13px;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-10px);
  }

  .logo__text strong {
    font-size: 0.98rem;
  }

  .logo__text small {
    font-size: 0.64rem;
    letter-spacing: 0.3em;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header__cta {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .site-header__cta span {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding: calc(var(--header-height) + 2.2rem) 1rem 2rem;
    background-image:
      linear-gradient(180deg, rgba(18, 16, 15, 0.18) 0%, rgba(18, 16, 15, 0.9) 62%),
      var(--hero-bg);
    background-size: cover, auto 72%;
    background-position: center, 56% top;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .hero__trust {
    align-items: stretch;
  }

  .hero__trust span,
  .hero__actions .button {
    width: 100%;
  }

  .hero__actions {
    display: grid;
  }

  .hero__intentions {
    padding: 0.9rem;
  }

  .section,
  .section--soft {
    padding-inline: 1rem;
  }

  .about,
  .about__values,
  .products__grid,
  .store__grid,
  .catalog__grid,
  .testimonials__grid,
  .payment-strip,
  .benefits__grid,
  .final-cta,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .store-card img,
  .catalog-card__media img {
    aspect-ratio: 1.12 / 0.82;
  }

  .store-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .store-card__button,
  .catalog-card__link {
    width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 64px 1fr;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
  }

  .final-cta {
    margin-block: 4rem;
  }

  .floating-whatsapp {
    display: none;
  }
}
