:root {
  --olive: #3b4d38;
  --olive-dark: #253222;
  --olive-soft: #63715e;
  --sage: #d9dfd0;
  --paper: #f7f5ef;
  --cream: #fffdf8;
  --ink: #20251f;
  --muted: #6d7368;
  --gold: #c8a46d;
  --rose: #d9b8a8;
  --line: rgba(59, 77, 56, 0.18);
  --shadow: 0 18px 42px rgba(35, 45, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Optima, Candara, "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: rgba(200, 164, 109, 0.22);
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.section {
  padding: 80px 24px;
}

.section.compact {
  padding-block: 54px;
}

.inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px 24px;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav.dark {
  background: rgba(37, 50, 34, 0.92);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.nav.dark .nav-links {
  color: rgba(255, 255, 255, 0.78);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--olive);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(32, 37, 31, 0.16);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(200, 164, 109, 0.72);
  outline-offset: 4px;
}

.button.light {
  background: #fff;
  color: var(--olive);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--line);
}

.nav.dark .button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--olive-dark);
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: 92px;
  line-height: 0.98;
}

h2 {
  font-size: 58px;
  line-height: 1.02;
}

h3 {
  font-size: 26px;
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.lead {
  font-size: 18px;
  max-width: 600px;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 48px 24px 34px;
  display: grid;
  align-items: center;
}

.hero .inner {
  display: grid;
  gap: 48px;
}

.brand-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    var(--olive);
  color: #fff;
}

.brand-hero h1,
.brand-hero h2 {
  color: #fff;
}

.brand-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-hero .inner {
  min-height: 650px;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.hero-logo {
  width: min(360px, 70vw);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-copy .actions {
  margin-top: 8px;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.preview-strip img,
.product-card img,
.category-card img,
.image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card img,
.category-card img,
.preview-strip img {
  background: var(--sage);
}

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

.section-title > * {
  min-width: 0;
}

.section-title p {
  max-width: 430px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.products {
  grid-template-columns: repeat(4, 1fr);
}

.grid.categories {
  grid-template-columns: repeat(3, 1fr);
}

.product-card,
.category-card,
.info-card,
.image-card,
.preview-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(35, 45, 32, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.category-card:hover,
.preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 109, 0.42);
  box-shadow: 0 18px 38px rgba(35, 45, 32, 0.13);
}

.product-card .body,
.category-card .body,
.info-card,
.preview-card .body {
  padding: 20px;
}

.product-card h3,
.category-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.price {
  margin: 14px 0 18px;
  color: var(--olive-dark);
  font-weight: 700;
}

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

.split img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.quote-band {
  background: var(--olive-dark);
  color: #fff;
}

.quote-band h2 {
  color: #fff;
  max-width: 860px;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-top: 20px;
}

.contact-band {
  background: var(--sage);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer {
  padding: 32px 24px;
  background: var(--olive-dark);
  color: rgba(255, 255, 255, 0.76);
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.commercial-hero {
  background:
    linear-gradient(90deg, rgba(217, 223, 208, 0.48), rgba(255, 253, 248, 0.1)),
    #fffdf8;
}

.commercial-hero .inner {
  min-height: 650px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.commercial-photo {
  position: relative;
}

.commercial-photo img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
}

.badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  background: var(--olive);
  color: #fff;
  border-radius: 6px;
  max-width: 240px;
  box-shadow: 0 18px 34px rgba(32, 37, 31, 0.18);
}

.badge strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.badge span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

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

.info-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.editorial-page {
  background: #171b15;
  color: #fff;
}

.editorial-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 60px 24px;
  background:
    radial-gradient(circle at 72% 28%, rgba(200, 164, 109, 0.16), transparent 34%),
    #171b15;
}

.editorial-hero .inner {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 48px;
  align-items: center;
}

.editorial-hero h1 {
  color: #fff;
  max-width: 760px;
}

.editorial-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-hero-photo {
  width: min(100%, 520px);
  max-height: calc(100vh - 150px);
  justify-self: end;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.editorial-page h2,
.editorial-page h3 {
  color: #fff;
}

.editorial-page .section {
  background: #171b15;
}

.editorial-page .product-card,
.editorial-page .category-card,
.editorial-page .info-card {
  background: #20271d;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.editorial-page p,
.editorial-page .price {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-page .button {
  background: #fff;
  color: var(--olive-dark);
}

.editorial-page .button.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.lookbook {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.lookbook img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.recommendations-band {
  background:
    linear-gradient(180deg, rgba(217, 223, 208, 0.42), rgba(247, 245, 239, 0.96));
}

.recommendation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.recommendation-grid.compact {
  grid-template-columns: 0.82fr 1fr 1fr;
}

.recommendation-grid.editorial {
  grid-template-columns: 1fr 0.9fr 0.9fr;
}

.recommendation-card {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin: 0;
  padding: 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(59, 77, 56, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(35, 45, 32, 0.1);
}

.recommendation-card.large {
  min-height: 360px;
}

.recommendation-card.wide {
  min-height: 180px;
}

.recommendation-card img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 6px;
}

.recommendation-card.wide img {
  max-height: 180px;
}

.editorial-recommendations,
.editorial-page .recommendations-band {
  background: #171b15;
}

.editorial-page .recommendation-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(32, 37, 31, 0.2);
}

.preview-page {
  background: var(--paper);
}

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

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.preview-card .actions {
  margin-top: 18px;
}

.health-panel {
  max-width: 820px;
}

.health-details {
  overflow: auto;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--paper);
  font: 14px/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .brand-hero .inner,
  .commercial-hero .inner,
  .editorial-hero .inner,
  .split,
  .contact-panel,
  .lookbook,
  .recommendation-grid,
  .recommendation-grid.compact,
  .recommendation-grid.editorial {
    grid-template-columns: 1fr;
  }

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

  .grid.categories,
  .benefits {
    grid-template-columns: 1fr;
  }

  .split img,
  .commercial-photo img,
  .lookbook img {
    min-height: 380px;
  }

  .editorial-hero-photo {
    width: min(100%, 420px);
    max-height: 560px;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body,
  .page,
  .inner,
  .hero .inner,
  .brand-hero .inner,
  .commercial-hero .inner {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 40px;
    line-height: 1.05;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }

  h3 {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
    max-width: 352px;
  }

  .hero-copy,
  .section-title > div,
  .section-title p {
    max-width: 352px;
  }

  .brand-hero .inner {
    gap: 32px;
    min-height: auto;
    align-content: start;
  }

  .brand-hero .hero-copy {
    order: 1;
  }

  .brand-hero .hero-logo {
    order: 2;
    width: min(220px, 56vw);
    justify-self: start;
  }

  .section,
  .hero {
    padding-inline: 18px;
  }

  .grid.products,
  .preview-grid,
  .preview-strip {
    grid-template-columns: 1fr;
  }

  .grid.products,
  .grid.categories,
  .benefits,
  .preview-grid,
  .preview-strip,
  .recommendation-grid {
    width: 100%;
    max-width: 352px;
  }

  .product-card,
  .category-card,
  .info-card,
  .preview-card,
  .recommendation-card {
    width: 100%;
    max-width: 352px;
  }

  .recommendation-card,
  .recommendation-card.large,
  .recommendation-card.wide {
    min-height: auto;
    padding: 14px;
  }

  .recommendation-card img,
  .recommendation-card.wide img {
    max-height: 310px;
  }

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

  .contact-panel {
    padding: 24px;
  }

  .actions,
  .contact-panel .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .commercial-photo,
  .commercial-photo img {
    width: 100%;
    max-width: 100%;
  }

  .badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .floating-whatsapp {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}
