:root {
  --bg: #f5efe1;
  --bg-soft: #ede5d2;
  --surface: #fffdf7;
  --surface-2: #faf5e8;
  --line: #e3d9c2;
  --ink: #1a2620;
  --ink-soft: #2c3a32;
  --muted: #6e6b5e;
  --green: #1f5f46;
  --green-deep: #143a2c;
  --green-soft: #e6efe7;
  --gold: #c9a04a;
  --gold-deep: #a07c2e;
  --gold-soft: #f4e9c8;
  --wa: #25d366;
  --wa-deep: #128c4c;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 6px 16px rgba(20, 58, 44, 0.06);
  --shadow: 0 18px 48px rgba(20, 58, 44, 0.1);
  --shadow-lg: 0 32px 80px rgba(20, 58, 44, 0.16);
  --max: 1200px;
  --pad: clamp(16px, 4vw, 28px);
  --font-title: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(201, 160, 74, 0.1), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(31, 95, 70, 0.06), transparent 60%), var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: -9999px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--r-sm);
}

.skip-link:focus {
  left: 12px;
}

::selection {
  color: var(--green-deep);
  background: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--ink);
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 em,
h2 em,
h3 em {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 160, 74, 0.35);
  border-radius: var(--r-pill);
}

.eyebrow-on-dark {
  color: #f6e9c4;
  background: rgba(201, 160, 74, 0.22);
  border-color: rgba(244, 233, 200, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px var(--pad) 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 12px 10px 14px;
  background: rgba(255, 253, 247, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(201, 160, 74, 0.55);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-tag {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  padding: 10px 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green-deep);
  background: var(--surface-2);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--green);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(31, 95, 70, 0.25);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.ico-wa {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ico-mail {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.btn-lg {
  padding: 16px 26px;
  font-size: 1.02rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(31, 95, 70, 0.28);
}

.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 18px 38px rgba(20, 58, 44, 0.35);
}

.btn-secondary {
  color: var(--green-deep);
  background: var(--surface);
  border-color: var(--line);
}

.btn-secondary:hover {
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.btn-ghost:hover {
  color: var(--bg);
  background: var(--ink);
}

.btn-gold {
  color: #fff;
  background: var(--wa);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.btn-gold:hover {
  background: var(--wa-deep);
}

.hero {
  isolation: isolate;
  position: relative;
  max-width: none;
  margin: 0;
  padding: clamp(40px, 6vw, 80px) var(--pad) clamp(40px, 5vw, 64px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(620px 460px at 86% 20%, rgba(31, 95, 70, 0.08), transparent 62%), linear-gradient(180deg, rgba(237, 229, 210, 0.5), transparent 58%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.hero-media {
  isolation: isolate;
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: clamp(20px, 2.4vw, 30px);
  box-shadow: 0 26px 70px rgba(20, 58, 44, 0.14);
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-media::before {
  background: linear-gradient(180deg, rgba(20, 38, 32, 0), rgba(20, 38, 32, 0.16));
}

.hero-media::after {
  border: 1px solid rgba(255, 253, 247, 0.42);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(20, 58, 44, 0.08);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--green-soft);
  border: 1px solid rgba(31, 95, 70, 0.22);
  border-radius: var(--r-pill);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31, 95, 70, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(31, 95, 70, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(31, 95, 70, 0.06);
  }
}

.hero-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 26px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--green-soft);
  border-radius: 50%;
}

.section {
  max-width: var(--max);
  padding: clamp(64px, 8vw, 110px) var(--pad);
  margin: 0 auto;
}

.section.products {
  position: relative;
  max-width: none;
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.section.products::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(900px 500px at 85% 10%, rgba(31, 95, 70, 0.04), transparent 60%), var(--bg-soft);
}

.section.products > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card.featured {
  position: relative;
  border-color: rgba(201, 160, 74, 0.6);
  box-shadow: 0 18px 50px rgba(201, 160, 74, 0.18);
}

.product-card.featured::before {
  position: absolute;
  inset: -1px;
  padding: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(160deg, var(--gold), transparent 50%, var(--green) 100%);
  border-radius: var(--r-lg);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    transform 600ms ease,
    opacity 520ms ease;
}

.product-image .product-image-next {
  z-index: 1;
  opacity: 0;
}

.product-image.is-changing .product-image-next {
  opacity: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-image::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(20, 38, 32, 0) 60%, rgba(20, 38, 32, 0.25));
}

.product-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 11px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.product-pill-gold {
  background: var(--gold);
  border-color: var(--gold-deep);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.7rem;
}

.product-content > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.97rem;
}

.product-features {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 auto;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-features li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.color-reference {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 10px 14px;
  margin: 18px 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.cr-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swatches {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(20, 38, 32, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.swatch-silver {
  background: #c7cbc5;
}

.swatch-green {
  background: #1f5f46;
}

.swatch-blue {
  background: #235f8f;
}

.swatch-gray {
  background: #787f78;
}

.swatch-graphite {
  background: #2b332f;
}

.swatch-black {
  background: #151917;
}

.swatch-white {
  background: #f7f6f1;
}

.swatch-yellow {
  background: #d8b44a;
}

.product-content .btn {
  width: 100%;
}

.product-card[data-modal] {
  cursor: pointer;
}

.product-card[data-modal]:focus-visible {
  border-color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.product-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.product-card:hover .product-more svg {
  transform: translateX(4px);
}

/* Product detail modal */
.modal {
  width: min(900px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.modal::backdrop {
  background: rgba(20, 38, 32, 0.55);
  backdrop-filter: blur(3px);
}

.modal[open] {
  animation: modal-in 240ms ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

.modal-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-height: calc(100dvh - 48px);
}

.modal-media {
  position: relative;
  overflow: hidden;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  min-height: 0;
  max-height: calc(100dvh - 48px);
  padding: clamp(24px, 4vw, 40px);
  overflow-y: auto;
}

.modal-title {
  margin: 4px 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.modal-body > p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.modal-subtitle {
  margin: 26px 0 14px;
  padding-top: 18px;
  color: var(--green-deep);
  font-size: 1.15rem;
  border-top: 1px solid var(--line);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.type-item {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.type-item h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
}

.type-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.modal-body .btn {
  width: 100%;
  margin-top: 8px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.modal-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
}

body.modal-open {
  overflow: hidden;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-radius: var(--r);
}

.strip-item svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 7px;
  fill: var(--green);
  background: var(--green-soft);
  border-radius: 12px;
}

.strip-item b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

.strip-item i {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.4;
}

.process {
  position: relative;
  padding-top: clamp(78px, 8vw, 112px);
}

.section-divider-badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 var(--pad);
  transform: translate(-50%, -50%);
}

.section-divider-badge .eyebrow {
  margin: 0;
  background: var(--bg);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1080px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(to right, var(--gold) 0 6px, transparent 6px 12px);
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}

.step-num {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--green-deep);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.step p {
  max-width: 28ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.about-text p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.about-stats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.about-stats svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  fill: var(--green);
}

.about-stats b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.15;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.values-grid .value-card:last-child {
  grid-column: 1 / -1;
}

.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  align-content: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.value-card > .value-number {
  grid-row: span 2;
}

.value-card > h3,
.value-card > p,
.value-card > .value-list {
  grid-column: 2;
}

.value-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-deep);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  background: var(--green-soft);
  border: 1px solid rgba(31, 95, 70, 0.2);
  border-radius: 12px;
}

.value-card h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.15rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.value-list {
  columns: 2;
  column-gap: 28px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.value-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
  break-inside: avoid;
}

.value-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--gold);
}

@media (max-width: 520px) {
  .value-list {
    columns: 1;
  }

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

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 28px;
  align-items: center;
  width: min(100% - calc(var(--pad) * 2), var(--max));
  padding: clamp(32px, 5vw, 56px);
  margin: 0 auto clamp(48px, 6vw, 80px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(700px 400px at 110% 120%, rgba(201, 160, 74, 0.32), transparent 60%),
    radial-gradient(500px 300px at -10% -20%, rgba(201, 160, 74, 0.18), transparent 60%), linear-gradient(135deg, var(--green-deep), var(--green));
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(140deg, #000, transparent 70%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cta-band h2 em {
  color: var(--gold);
}

.cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: rgba(246, 241, 230, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-alt .ico-mail {
  flex: 0 0 auto;
  fill: var(--gold);
}

.cta-alt a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(201, 160, 74, 0.55);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.cta-alt a:hover {
  color: var(--gold);
}

.footer {
  padding: clamp(48px, 6vw, 72px) var(--pad) 24px;
  color: #d6d2c4;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 0.75fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: clamp(18px, 3vw, 42px);
}

.footer h4 {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer p {
  margin: 0 0 12px;
  color: #b8b3a3;
  font-size: 0.95rem;
}

.footer-logo-wrap {
  display: grid;
  width: clamp(180px, 17vw, 230px);
  height: auto;
  place-items: center;
  margin: 0;
}

.footer-logo {
  width: clamp(190px, 18vw, 230px);
  height: auto;
  object-fit: contain;
}

address {
  display: grid;
  gap: 10px;
  color: #b8b3a3;
  font-size: 0.95rem;
  font-style: normal;
}

address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

address a:hover {
  color: var(--gold);
}

address a .ico-wa {
  width: 18px;
  height: 18px;
  fill: var(--wa);
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfcabb;
  font-size: 0.92rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-email .ico-mail {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: #8f8a7a;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #b8b3a3;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  padding-top: 22px;
  margin: 36px auto 0;
  color: #7a7666;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--wa);
  border-radius: var(--r-pill);
  box-shadow:
    0 14px 36px rgba(18, 140, 76, 0.45),
    0 0 0 6px rgba(37, 211, 102, 0.18);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.fab-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.fab-whatsapp:hover {
  background: var(--wa-deep);
  transform: translateY(-2px) scale(1.02);
}

.fab-whatsapp::before {
  position: absolute;
  inset: -4px;
  z-index: -1;
  content: "";
  background: rgba(37, 211, 102, 0.25);
  border-radius: var(--r-pill);
  animation: fabPulse 2.4s ease-out infinite;
}

@keyframes fabPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 1180px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 0;
    margin-bottom: 4px;
  }
}

@media (max-width: 1040px) {
  .nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

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

@media (max-width: 880px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .modal {
    width: min(560px, calc(100vw - 24px));
  }

  .modal-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .modal-media {
    aspect-ratio: 16 / 9;
  }

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

  .steps {
    gap: 8px;
  }

  .steps::before {
    top: 27px;
    right: auto;
    bottom: 27px;
    left: 27px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--gold) 0 6px, transparent 6px 12px);
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    row-gap: 4px;
    padding: 0;
    text-align: left;
  }

  .step-num {
    grid-row: span 2;
    margin: 0;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

  .step h3 {
    margin: 4px 0;
  }

  .step p {
    max-width: none;
    margin: 0 0 16px;
    text-align: left;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-bullets {
    justify-content: center;
  }

  .hero-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin: 2px auto 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav {
    position: fixed;
    inset: 86px 12px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    margin-left: 0;
    pointer-events: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .nav.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 16px;
    font-size: 1.02rem;
    border-radius: var(--r);
  }

  .header-cta {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 10px;
  }

  .header-cta span {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand-tag {
    display: none;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .hero-media {
    width: calc(100% + var(--pad) * 2);
    margin-right: calc(var(--pad) * -1);
    margin-left: calc(var(--pad) * -1);
    border-radius: 0;
    box-shadow: none;
  }

  .hero-media::after {
    border: 0;
    box-shadow:
      inset 0 1px 0 rgba(20, 58, 44, 0.08),
      inset 0 -1px 0 rgba(20, 58, 44, 0.08);
  }

  .cta-band .btn {
    width: 100%;
  }

  .hero-bullets {
    gap: 10px 14px;
    font-size: 0.88rem;
  }

  .strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
  }

  .strip-item {
    padding: 4px;
  }

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

  .value-card {
    grid-template-columns: 1fr;
  }

  .value-card > .value-number {
    grid-row: auto;
  }

  .value-card > h3,
  .value-card > p,
  .value-card > .value-list {
    grid-column: 1;
  }

  .product-content {
    padding: 22px;
  }

  .product-card h3 {
    font-size: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-logo {
    width: min(220px, 72vw);
  }

  .footer-base {
    flex-direction: column;
    gap: 6px;
  }

  main {
    padding-bottom: 80px;
  }

  .fab-whatsapp {
    display: inline-flex;
    right: 14px;
    bottom: 14px;
    padding: 14px 18px 14px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 540px) {
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .strip-item {
    align-items: center;
    gap: 14px;
    padding: 12px 6px;
  }

  .strip-item + .strip-item {
    border-top: 1px solid var(--line);
  }

  .strip-item b {
    margin-bottom: 2px;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    gap: 10px;
    padding: 8px 10px 8px 12px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .fab-label {
    display: none;
  }

  .fab-whatsapp {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
