:root {
  --pine: #123326;
  --leaf: #277448;
  --sage: #edf3ed;
  --mist: #f7f9f4;
  --gold: #b88a35;
  --gold-light: #f3ce74;
  --copper: #a7623f;
  --cream: #fbfaf4;
  --paper: #ffffff;
  --ink: #152019;
  --muted: #64736a;
  --line: #dce7dd;
  --shadow: 0 22px 60px rgba(18, 51, 38, 0.12);
  --soft-shadow: 0 12px 30px rgba(18, 51, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 143px;
  padding-bottom: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.page-white {
  background: #fff;
}

body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: #fff;
}

[id] {
  scroll-margin-top: 160px;
}

button,
input,
textarea {
  font: inherit;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 34;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 7px 18px;
  min-height: 31px;
  color: #fff;
  background: #102b20;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 31px;
  left: 0;
  right: 0;
  z-index: 33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.4vw, 24px);
  min-height: 112px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 231, 221, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(18, 51, 38, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 430px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.34rem;
  line-height: 1;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: none;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 32px);
  justify-content: center;
  min-width: 0;
  color: var(--pine);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a,
.button {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--pine);
}

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

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

.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--pine);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  grid-column: 1;
  grid-row: 1;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  max-width: 19px;
  max-height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg path {
  fill: none !important;
  stroke: currentColor !important;
}

.button.primary {
  color: #fff;
  background: #1f7a46;
  box-shadow: 0 16px 34px rgba(31, 122, 70, 0.26);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.button.ghost {
  color: var(--pine);
  border-color: rgba(18, 51, 38, 0.16);
  background: #fff;
  box-shadow: 0 12px 26px rgba(18, 51, 38, 0.08);
}

.floating-order {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: calc(100vw - 32px);
  min-height: 58px;
  padding: 0 22px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #123326, #21834e);
  border: 1px solid rgba(244, 214, 132, 0.34);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(18, 51, 38, 0.26);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  -webkit-transform: translateZ(0);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(18, 51, 38, 0.3);
}

.floating-order svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.floating-order svg path {
  fill: currentColor !important;
  stroke: none !important;
}

.hero {
  position: relative;
  min-height: clamp(540px, 80vh, 720px);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 38, 28, 0.88), rgba(14, 38, 28, 0.62) 46%, rgba(14, 38, 28, 0.12)),
    linear-gradient(0deg, rgba(251, 250, 244, 0.22), rgba(251, 250, 244, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 48px 0 82px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.contact-strip h2,
.contact-page h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.hero h1 {
  color: #fff;
  max-width: 680px;
  font-size: clamp(3.9rem, 9vw, 7.4rem);
}

.hero-subtitle {
  margin: 6px 0 0;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions,
.product-actions,
.contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.trust-bar {
  overflow: hidden;
  color: #fff;
  background: var(--pine);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(220, 231, 221, 0.86);
}

.trust-ticker {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  overflow: hidden;
}

.trust-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trustTicker 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.trust-ticker-set {
  display: flex;
  flex: 0 0 100vw;
  width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: clamp(24px, 4vw, 64px);
  padding: 0 clamp(18px, 4vw, 56px);
}

.trust-ticker-set span {
  position: relative;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-ticker-set span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  vertical-align: 0.08em;
}

@keyframes trustTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 12px;
    white-space: normal;
  }

  .trust-ticker-set {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-ticker-set[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust-bar {
    color: #fff;
    background: var(--pine);
  }

  .trust-ticker {
    min-height: 44px;
  }

  .trust-ticker-track {
    display: flex;
    width: max-content;
    animation: trustTicker 16s linear infinite;
    white-space: nowrap;
  }

  .trust-ticker-set {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 30px 0 0;
  }

  .trust-ticker-set[aria-hidden="true"] {
    display: flex;
  }

  .trust-ticker-set span {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(255, 255, 255, 0.96);
    background: transparent;
    font-size: 0.78rem;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .trust-ticker-set span::before {
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-right: 7px;
  }
}

.section-heading p,
.product-feature p,
.steps p,
.benefit-grid p,
.contact-strip p,
.contact-page p,
.site-footer {
  color: var(--muted);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: 0;
  background: #fff;
}

.featured-purchase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  isolation: isolate;
  padding-top: clamp(60px, 7vw, 92px);
  padding-bottom: clamp(60px, 7vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 249, 244, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 6% 18%, rgba(184, 138, 53, 0.12), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(39, 116, 72, 0.1), transparent 34%);
  border-bottom: 1px solid rgba(220, 231, 221, 0.72);
}

.featured-product-visual {
  position: relative;
  display: grid;
  min-height: clamp(440px, 50vw, 620px);
  place-items: center;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.featured-product-visual::before {
  position: absolute;
  width: min(82%, 470px);
  height: min(82%, 470px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(244, 214, 132, 0.12) 58%, transparent 72%);
  border-radius: 50%;
  content: "";
}

.featured-product-visual::after {
  position: absolute;
  bottom: 8%;
  width: min(66%, 360px);
  height: 16px;
  background: radial-gradient(ellipse, rgba(18, 51, 38, 0.14), transparent 68%);
  content: "";
}

.featured-product-halo {
  display: none;
}

.featured-product-visual img {
  position: relative;
  z-index: 1;
  width: min(96%, 560px);
  height: auto;
  max-height: 610px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.featured-product-copy {
  min-width: 0;
  max-width: 680px;
}

.featured-product-copy h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.featured-product-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.featured-product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.featured-product-points span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--pine);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(184, 138, 53, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-order-card {
  max-width: 620px;
  gap: 16px;
  margin-top: 30px;
  padding: clamp(20px, 3vw, 30px);
  border-color: rgba(184, 138, 53, 0.26);
  box-shadow: 0 20px 58px rgba(18, 51, 38, 0.1);
}

.featured-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.featured-order-head .eyebrow {
  margin: 0;
}

.featured-order-head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--leaf);
  background: #eef8f1;
  border: 1px solid rgba(39, 116, 72, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-size-row {
  display: grid;
  gap: 9px;
}

.featured-field-label,
.featured-price-panel > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-order-card .variant-options {
  gap: 8px;
}

.featured-order-card .variant-option {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.featured-price-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(247, 249, 244, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
}

.featured-price-panel .product-price {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.featured-price-panel small {
  color: var(--muted);
  font-weight: 700;
}

.featured-order-controls {
  display: grid;
  gap: 10px;
}

.featured-order-card .cod-note {
  max-width: 460px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.featured-order-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
}

.featured-order-actions .button {
  width: 100%;
  min-width: 0;
}

.dynamic-products-section[hidden] {
  display: none;
}

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

.dynamic-product-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.dynamic-product-media {
  display: grid;
  min-height: 180px;
  place-items: center;
  background: var(--mist);
  border-radius: 8px;
}

.dynamic-product-media img {
  width: min(150px, 85%);
  height: 160px;
  object-fit: contain;
}

.dynamic-product-copy {
  display: grid;
  gap: 12px;
}

.dynamic-product-copy h3 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.dynamic-product-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.dynamic-order-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.whatsapp-button {
  color: var(--leaf);
  background: #fff;
  border-color: rgba(39, 116, 72, 0.28);
  box-shadow: 0 12px 28px rgba(18, 51, 38, 0.08);
}

.product-showcase-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
  min-width: 0;
}

.product-showcase {
  position: relative;
  min-width: 0;
  width: min(100%, 360px);
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(10px, 1.6vw, 16px);
  color: inherit;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 35%),
    linear-gradient(145deg, #183428, #24312a 54%, #111b16);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 51, 38, 0.12);
  cursor: zoom-in;
}

.product-detail-link {
  justify-self: center;
  min-width: 230px;
  margin-top: 2px;
  color: var(--pine);
  background: #fff;
  border-color: rgba(184, 138, 53, 0.28);
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.1);
}

.bottle-halo {
  position: absolute;
  width: 66%;
  height: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 155, 68, 0.26), rgba(199, 155, 68, 0) 68%);
}

.showcase-product-image {
  position: relative;
  width: 100%;
  max-width: 336px;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.34));
}

.feature-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 520px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 249, 244, 0.52)),
    radial-gradient(circle at 88% 18%, rgba(184, 138, 53, 0.16), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(39, 116, 72, 0.12), transparent 30%);
  border: 1px solid rgba(184, 138, 53, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 51, 38, 0.08);
}

.feature-copy::before,
.feature-copy::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.feature-copy::before {
  top: 34px;
  right: 28px;
  bottom: auto;
  left: auto;
  inset: 34px 28px auto auto;
  height: min(42%, 360px);
  width: min(42%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 138, 53, 0.26);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.feature-copy::after {
  right: 42px;
  bottom: 36px;
  width: min(32%, 260px);
  height: 62%;
  opacity: 0.4;
  background:
    linear-gradient(145deg, transparent 48%, rgba(18, 51, 38, 0.16) 49%, transparent 51%),
    radial-gradient(ellipse at 34% 28%, transparent 35%, rgba(184, 138, 53, 0.22) 36%, transparent 38%),
    radial-gradient(ellipse at 68% 54%, transparent 35%, rgba(39, 116, 72, 0.18) 36%, transparent 38%);
}

.feature-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.feature-glow-one {
  top: 74px;
  right: 74px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  box-shadow:
    -70px 140px 0 rgba(184, 138, 53, 0.42),
    54px 220px 0 rgba(39, 116, 72, 0.34);
}

.feature-glow-two {
  left: 42px;
  bottom: 74px;
  width: 8px;
  height: 8px;
  background: rgba(39, 116, 72, 0.5);
  box-shadow:
    118px -284px 0 rgba(184, 138, 53, 0.38),
    238px -168px 0 rgba(18, 51, 38, 0.22);
}

.feature-copy h2 {
  margin: 0;
  max-width: 660px;
  overflow-wrap: anywhere;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.1rem;
  line-height: 1.02;
}

.feature-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.feature-lede {
  max-width: 620px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 1.12rem;
}

.feature-copy .eyebrow {
  margin: 0 0 12px;
}

.comfort-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
}

.comfort-map::before {
  position: absolute;
  top: -30px;
  right: 28px;
  bottom: auto;
  left: auto;
  inset: -30px 28px auto auto;
  z-index: -1;
  width: 54%;
  height: 72%;
  border-top: 1px solid rgba(184, 138, 53, 0.28);
  border-right: 1px solid rgba(184, 138, 53, 0.2);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

.comfort-card {
  position: relative;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-width: 0;
  min-height: 168px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 51, 38, 0.08);
}

.comfort-card::after {
  position: relative;
  content: "";
}

.comfort-card img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  background: #e9efe8;
}

.comfort-card div {
  display: grid;
  align-content: center;
  padding: 20px;
}

.comfort-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--gold);
  background: rgba(184, 138, 53, 0.1);
  border: 1px solid rgba(184, 138, 53, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.comfort-card h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.18rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.comfort-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.comfort-card-large {
  grid-row: span 2;
  grid-template-columns: 1fr;
  min-height: 352px;
}

.comfort-card-large img {
  height: 210px;
  min-height: 210px;
}

.comfort-card-large div {
  align-content: start;
  padding: 22px 24px 24px;
}

.comfort-card-large h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.78rem;
}

.comfort-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  min-height: 184px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 244, 0.72)),
    radial-gradient(circle at 94% 18%, rgba(184, 138, 53, 0.14), transparent 34%);
}

.comfort-card-wide img {
  min-height: 184px;
}

.comfort-card-wide h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.comfort-card-large::before,
.comfort-card-wide::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 14%),
    linear-gradient(145deg, #b88a35, #f4d684 58%, #8f6522);
  border-radius: 50% 50% 50% 16%;
  content: "";
  transform: rotate(42deg);
  box-shadow: 0 0 0 8px rgba(184, 138, 53, 0.1);
}

.why-choose {
  background:
    linear-gradient(135deg, #f7f9f4, #fff 58%, #f9f1df);
  border-top: 1px solid rgba(220, 231, 221, 0.78);
}

.why-choose-heading {
  max-width: 860px;
}

.why-choose-heading h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5.6vw, 5rem);
  line-height: 0.98;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.why-choose-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.06);
}

.why-choose-grid .why-choose-image-card {
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.why-choose-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-grid span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(184, 138, 53, 0.1);
  border: 1px solid rgba(184, 138, 53, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.why-choose-grid h3 {
  margin: 18px 0 0;
  color: var(--pine);
  font-size: 1.16rem;
  line-height: 1.18;
}

.why-choose-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pain-areas {
  overflow: hidden;
  color: #1f2933;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 162, 74, 0.1), transparent 30%),
    linear-gradient(180deg, #f9f8f4 0%, #fff 100%);
}

.pain-areas-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.pain-areas-copy {
  max-width: 560px;
}

.pain-areas-copy h2 {
  margin: 0;
  color: #184f35;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.pain-areas-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #516157;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}

.pain-areas-action {
  margin-top: 28px;
}

.pain-areas-panel {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  padding: clamp(18px, 3.6vw, 34px);
  background: #fff;
  border: 1px solid rgba(24, 79, 53, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(24, 79, 53, 0.12);
}

.pain-view-toggle {
  position: relative;
  z-index: 4;
  display: flex;
  width: max-content;
  margin: 0 auto clamp(18px, 3vw, 26px);
  padding: 5px;
  background: rgba(24, 79, 53, 0.08);
  border: 1px solid rgba(24, 79, 53, 0.12);
  border-radius: 999px;
}

.pain-view-toggle button {
  min-width: 86px;
  min-height: 40px;
  padding: 0 20px;
  color: #184f35;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.pain-view-toggle button.is-active {
  color: #fff;
  background: #184f35;
  box-shadow: 0 10px 24px rgba(24, 79, 53, 0.18);
}

.pain-body-stage {
  position: relative;
}

.pain-body-view {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
}

.pain-body-view[hidden] {
  display: none;
}

.pain-body-view img {
  width: 100%;
  height: auto;
  background: #fff;
  object-fit: contain;
  border-radius: 8px;
}

.pain-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
  background: #c9a24a;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow:
    0 0 0 9px rgba(201, 162, 74, 0.18),
    0 0 30px rgba(201, 162, 74, 0.76);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pain-hotspot::before,
.pain-hotspot::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(201, 162, 74, 0.46);
  border-radius: inherit;
  content: "";
  animation: painPulse 2s ease-out infinite;
}

.pain-hotspot::after {
  animation-delay: 0.75s;
}

.pain-hotspot.is-active,
.pain-hotspot:hover,
.pain-hotspot:focus-visible {
  background: #e0b957;
  box-shadow:
    0 0 0 10px rgba(201, 162, 74, 0.24),
    0 0 36px rgba(201, 162, 74, 0.9);
  outline: none;
}

.pain-tooltip {
  position: absolute;
  left: var(--tip-x, 50%);
  top: var(--tip-y, 24%);
  z-index: 5;
  width: min(280px, calc(100% - 28px));
  padding: 18px 18px 16px;
  color: #1f2933;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 231, 221, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(24, 79, 53, 0.17);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(0.96);
  transition: opacity 250ms ease, transform 250ms ease;
}

.pain-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.pain-tooltip span {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 12px;
  background: #c9a24a;
  border-radius: 999px;
}

.pain-tooltip h3 {
  margin: 0;
  color: #184f35;
  font-size: 1.05rem;
  line-height: 1.2;
}

.pain-tooltip p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.5;
}

@keyframes painPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.68);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@media (max-width: 980px) {
  .pain-areas-layout {
    grid-template-columns: 1fr;
  }

  .pain-areas-copy {
    max-width: 760px;
  }

  .pain-areas-panel {
    max-width: 390px;
  }
}

@media (max-width: 640px) {
  .pain-areas {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .pain-areas-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .pain-areas-action {
    width: 100%;
  }

  .pain-areas-panel {
    width: min(100%, 348px);
    margin-inline: calc(var(--page-gutter, 20px) * -0.35);
    padding: 16px 14px 18px;
  }

  .pain-view-toggle {
    width: 100%;
  }

  .pain-view-toggle button {
    flex: 1;
    min-width: 0;
  }

  .pain-body-stage {
    min-height: 0;
  }

  .pain-body-view {
    width: min(100%, 280px);
  }

  .pain-hotspot {
    width: 22px;
    height: 22px;
  }

  .pain-tooltip {
    position: relative;
    left: auto;
    top: auto;
    display: none;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  .pain-tooltip.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.coming-soon-range {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(32px, 6vw, 78px);
  background:
    linear-gradient(135deg, #102b20, #123326 58%, #183428);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.coming-soon-copy {
  position: sticky;
  top: 170px;
  min-width: 0;
}

.coming-soon-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.coming-soon-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

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

.coming-soon-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.coming-soon-grid span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 214, 132, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.coming-soon-grid h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.coming-soon-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.social-proof {
  background: #fff;
}

.social-proof-heading {
  max-width: 860px;
}

.social-proof-heading h2,
.quality-promise-copy h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5.2vw, 4.7rem);
  line-height: 1;
}

.review-ready-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
}

.review-ready-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(247, 249, 244, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.05);
}

.review-stars,
.review-placeholder {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-placeholder {
  min-width: 92px;
  justify-content: center;
  padding: 0 12px;
  color: var(--pine);
  background: rgba(184, 138, 53, 0.1);
  border: 1px solid rgba(184, 138, 53, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-ready-grid h3 {
  margin: 18px 0 0;
  color: var(--pine);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.review-ready-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.quality-promise {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, #f7f9f4, #fff 62%, #f9f1df);
  border-top: 1px solid rgba(220, 231, 221, 0.78);
}

.quality-promise-copy {
  min-width: 0;
}

.quality-promise-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.quality-promise-grid {
  display: grid;
  gap: 16px;
}

.quality-promise-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  padding: clamp(20px, 2.6vw, 28px);
  background: #fff;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.05);
}

.quality-promise-grid span {
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(184, 138, 53, 0.1);
  border: 1px solid rgba(184, 138, 53, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.quality-promise-grid h3 {
  margin: 0;
  color: var(--pine);
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  line-height: 1.14;
}

.quality-promise-grid p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.benefits {
  background: #f4f8f3;
}

.process {
  padding-top: 0;
  padding-bottom: clamp(18px, 2.8vw, 34px);
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.contact-strip h2,
.contact-page h1 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 1.04rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  min-height: 285px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(220, 231, 221, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 51, 38, 0.06);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--pine);
  background: #f9f1df;
  border: 1px solid rgba(184, 138, 53, 0.26);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid h3 {
  min-height: 58px;
  margin: 20px 0 0;
  color: var(--pine);
  font-size: 1.24rem;
  line-height: 1.18;
}

.benefit-grid p {
  margin: 12px 0 0;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps::before {
  position: absolute;
  top: 46px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 138, 53, 0), rgba(184, 138, 53, 0.4), rgba(39, 116, 72, 0.32), rgba(184, 138, 53, 0));
  content: "";
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 220px;
  padding: 24px 22px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(184, 138, 53, 0.11), transparent 34%),
    #fff;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.07);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, var(--pine), #1f7a46);
  border: 1px solid rgba(244, 214, 132, 0.24);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 51, 38, 0.18);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon svg path {
  fill: none !important;
  stroke: currentColor !important;
}

.steps h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.35rem;
}

.steps p {
  max-width: 280px;
  margin: 12px auto 0;
}

.process-cta {
  margin-top: 28px;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: clamp(8px, 1.5vw, 18px) clamp(18px, 5vw, 72px) clamp(14px, 2vw, 24px);
  min-height: 150px;
  padding: 24px clamp(28px, 5vw, 48px);
  color: #fff;
  background: var(--pine);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(18, 51, 38, 0.16);
}

.contact-strip .eyebrow {
  margin-bottom: 8px;
  color: var(--gold-light);
}

.contact-strip h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.contact-strip p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.contact-strip .button.ghost {
  align-self: center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.product-dialog {
  position: fixed;
  inset: 16px;
  display: none;
  width: calc(100% - 32px);
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.product-dialog[open] {
  display: block;
}

.product-dialog:not([open]) {
  display: none;
}

.product-dialog::backdrop {
  background: rgba(10, 22, 16, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pine);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.viewer-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
  max-height: 820px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #173528, #202820);
}

.viewer-stage {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.viewer-slide {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.viewer-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.viewer-slide img {
  width: 100%;
  height: 100%;
  max-width: min(760px, 78vw);
  max-height: min(500px, 62dvh);
  min-height: 0;
  object-fit: contain;
}

.viewer-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--pine);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 51, 38, 0.14);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(18, 51, 38, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.viewer-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.viewer-arrow-prev {
  left: 18px;
}

.viewer-arrow-next {
  right: 18px;
}

.viewer-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 12px;
  max-height: 122px;
  overflow: hidden;
}

.viewer-thumb {
  display: grid;
  place-items: center;
  min-height: 92px;
  aspect-ratio: 1.28;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.viewer-thumb.is-active {
  border-color: var(--gold);
}

.viewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding-top: 0;
}

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

.info-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.info-grid h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.2rem;
}

.info-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-page {
  padding: clamp(32px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(54px, 9vw, 100px);
  background: #fff;
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(360px, 520px);
  align-items: start;
  width: min(100%, 1240px);
  margin: 0 auto;
  justify-content: center;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(34px, 5vw, 56px);
  border-bottom: 1px solid rgba(220, 231, 221, 0.92);
}

.contact-hero-copy {
  max-width: 620px;
}

.contact-hero p {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.contact-hero-copy > p:not(.eyebrow) {
  text-align: justify;
}

.contact-hero-panel {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  margin-top: clamp(72px, 6.7vw, 96px);
  min-height: clamp(480px, 53.5vw, 580px);
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 132, 0.22), transparent 30%),
    linear-gradient(145deg, #123326, #1d6942);
  border: 1px solid rgba(244, 214, 132, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(18, 51, 38, 0.16);
}

.contact-hero-panel,
.contact-hero-panel p,
.contact-hero-panel strong,
.contact-hero-panel dd,
.contact-hero-panel .contact-hero-action {
  color: #fff;
}

.contact-hero-panel span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-hero-panel strong svg {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-panel strong svg path {
  fill: none !important;
  stroke: currentColor !important;
}

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

.contact-hero-action {
  width: 100%;
  margin-top: 22px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.contact-hours {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-hours div {
  display: grid;
  gap: 4px;
}

.contact-hours dt {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hours dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.contact-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 24px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 16px;
  min-height: 118px;
  padding: 18px 20px;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(18, 51, 38, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 138, 53, 0.3);
  box-shadow: 0 24px 68px rgba(18, 51, 38, 0.12);
}

.contact-card svg {
  grid-row: span 3;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--leaf);
  background: var(--sage);
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h2 {
  margin: 0;
  color: var(--pine);
  font-size: 1.2rem;
  line-height: 1.15;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.contact-card strong {
  color: var(--pine);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 24px;
  padding: clamp(20px, 3vw, 26px);
  background: #fff;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 51, 38, 0.08);
}

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

.form-row {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-row label {
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcf8;
  border: 1px solid rgba(220, 231, 221, 0.95);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: #fff;
  border-color: rgba(184, 138, 53, 0.56);
  box-shadow: 0 0 0 4px rgba(184, 138, 53, 0.12);
}

.contact-submit {
  justify-self: start;
  min-width: 180px;
  margin-top: 2px;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  color: var(--pine);
  background: #f9f1df;
  border: 1px solid rgba(184, 138, 53, 0.24);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status[data-status="success"] {
  color: #0d3326;
  background: #eef8f1;
  border-color: rgba(31, 128, 75, 0.28);
}

.form-status[data-status="error"] {
  color: #5d3510;
  background: #fff6e5;
  border-color: rgba(184, 138, 53, 0.32);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.message-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.message-result {
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.message-result h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.message-result p:not(.eyebrow) {
  margin: 14px 0 24px;
  color: var(--muted);
}

.contact-prep,
.contact-details,
.contact-faq {
  margin-top: clamp(46px, 7vw, 78px);
}

.contact-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-prep-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.06);
}

.contact-prep-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--pine);
  background: #fff;
  border: 1px solid rgba(184, 138, 53, 0.28);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-prep-grid h3 {
  margin: 18px 0 8px;
  color: var(--pine);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact-prep-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-detail-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.06);
}

.contact-detail-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  background: linear-gradient(145deg, rgba(184, 138, 53, 0.18), rgba(39, 116, 72, 0.1));
  border-radius: 50%;
  content: "";
}

.contact-detail-grid h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-grid p {
  margin: 0;
  color: var(--pine);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.details-page {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.details-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  min-width: 0;
  gap: clamp(28px, 6vw, 76px);
}

.details-hero-copy {
  min-width: 0;
  max-width: 760px;
}

.details-hero h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
}

.details-hero-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.details-product-visual {
  appearance: none;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(10px, 1.4vw, 16px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.54), transparent 42%),
    linear-gradient(145deg, #183428, #24312a 54%, #111b16);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  font: inherit;
  text-align: center;
}

.details-product-visual img {
  width: 100%;
  max-width: 500px;
  width: min(100%, 500px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.32));
}

.details-product-visual span {
  align-self: end;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-product-visual:hover img {
  transform: translateY(-2px) scale(1.015);
}

.details-dossier {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  min-width: 0;
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(46px, 7vw, 78px);
}

.details-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 168px;
  align-self: start;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(244, 214, 132, 0.2), transparent 30%),
    linear-gradient(150deg, #123326, #1f5f3d 62%, #10281e);
  border: 1px solid rgba(244, 214, 132, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(18, 51, 38, 0.18);
}

.details-summary .eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
}

.details-summary dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.details-summary div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.details-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.details-summary dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.details-summary dd {
  margin: 4px 0 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.12;
}

.details-accordion {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.details-accordion details {
  border-bottom: 1px solid rgba(220, 231, 221, 0.92);
}

.details-accordion details:last-child {
  border-bottom: 0;
}

.details-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 26px 82px 26px 30px;
  color: var(--pine);
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  list-style: none;
}

.details-accordion summary::-webkit-details-marker {
  display: none;
}

.details-accordion summary::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 18px;
  height: 18px;
  border-right: 4px solid var(--leaf);
  border-bottom: 4px solid var(--leaf);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.details-accordion details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.details-panel {
  padding: 0 30px 30px;
  color: var(--muted);
}

.rich-copy {
  display: grid;
  gap: 16px;
}

.rich-copy p,
.details-panel > p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.benefit-list li {
  position: relative;
  min-height: 66px;
  padding: 16px 16px 16px 46px;
  color: var(--pine);
  background: #fbfcf8;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.benefit-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: linear-gradient(145deg, #b88a35, #f4d684 58%, #8f6522);
  border-radius: 50% 50% 50% 14%;
  content: "";
  transform: rotate(42deg);
}

.benefit-list.compact {
  grid-template-columns: 1fr;
}

.details-note {
  margin-top: 26px;
  padding: 20px 24px;
  background: #f9f1df;
  border: 1px solid rgba(184, 138, 53, 0.24);
  border-radius: 8px;
}

.details-note p {
  margin: 0;
  color: var(--pine);
  font-weight: 800;
}

.contact-detail-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.about-page {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(54px, 9vw, 100px);
  background:
    radial-gradient(circle at 8% 16%, rgba(39, 116, 72, 0.06), transparent 24%),
    radial-gradient(circle at 92% 44%, rgba(184, 138, 53, 0.08), transparent 28%),
    #fff;
}

.about-hero,
.about-mission,
.founder-vision,
.about-commitments,
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 78px);
}

.about-hero {
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 82px);
  border-bottom: 1px solid rgba(220, 231, 221, 0.9);
}

.about-hero-copy {
  max-width: 760px;
}

.about-page h1,
.about-page h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.about-page h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.about-page h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.about-page h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.22rem;
  line-height: 1.22;
}

.about-page p {
  color: var(--muted);
}

.about-hero-subtitle {
  margin: 14px 0 0;
  color: var(--pine);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  font-weight: 800;
}

.about-hero-copy > p:not(.eyebrow):not(.about-hero-subtitle) {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 1.06rem;
  text-align: justify;
}

.about-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 360px);
  min-height: 470px;
  overflow: hidden;
  padding: clamp(10px, 1.6vw, 16px);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.5), transparent 36%),
    linear-gradient(145deg, #183428, #24312a 54%, #111b16);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 51, 38, 0.12);
}

.about-hero-visual::before,
.about-hero-visual::after {
  display: none;
}

.about-visual-orbit {
  display: none;
}

.about-visual-orbit-one {
  top: 18%;
  right: 24%;
}

.about-visual-orbit-two {
  bottom: 24%;
  left: 18%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.46);
}

.about-product-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-product-card img {
  width: 100%;
  max-width: 336px;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.34));
}

.about-visual-note {
  display: none;
}

.about-visual-note span,
.about-card-grid span,
.care-step-grid span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-visual-note strong,
.about-visual-note small {
  display: block;
}

.about-visual-note strong {
  margin-top: 4px;
  color: var(--pine);
  line-height: 1.15;
}

.about-visual-note small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.about-mission,
.founder-vision,
.about-difference,
.about-commitments,
.prepared-care,
.about-cta {
  margin-top: clamp(54px, 8vw, 94px);
}

.about-mission {
  align-items: start;
  padding: clamp(28px, 5vw, 46px);
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 51, 38, 0.07);
}

.about-mission > p {
  align-self: end;
  margin: 0;
  font-size: 1.08rem;
  text-align: justify;
}

.founder-vision {
  align-items: stretch;
}

.founder-vision > div,
.founder-vision blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
}

.founder-vision > div {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 132, 0.18), transparent 32%),
    linear-gradient(150deg, #123326, #1f5f3d 62%, #10281e);
  border: 1px solid rgba(244, 214, 132, 0.28);
  box-shadow: 0 22px 44px rgba(18, 51, 38, 0.16);
}

.founder-vision > div .eyebrow {
  color: var(--gold-light);
}

.founder-vision > div h2 {
  color: #fff;
}

.founder-vision blockquote {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(18, 51, 38, 0.07);
}

.founder-vision blockquote::before {
  display: none;
}

.founder-vision blockquote p {
  position: relative;
  margin: 0;
  font-size: 1.06rem;
  text-align: justify;
}

.founder-vision blockquote p + p {
  margin-top: 18px;
  color: var(--pine);
  font-weight: 800;
}

.about-card-grid,
.care-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.about-card-grid article,
.care-step-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 51, 38, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.about-card-grid article:hover,
.care-step-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 53, 0.3);
  box-shadow: 0 24px 60px rgba(18, 51, 38, 0.1);
}

.about-card-grid h3,
.care-step-grid h3 {
  margin-top: 0;
}

.about-card-grid p {
  margin: 12px 0 0;
}

.about-commitments {
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 132, 0.18), transparent 32%),
    linear-gradient(145deg, #123326, #1d6942);
  border: 1px solid rgba(244, 214, 132, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(18, 51, 38, 0.14);
}

.about-commitments .eyebrow {
  color: var(--gold-light);
}

.about-commitments h2,
.about-commitments p {
  color: #fff;
}

.about-commitments-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.commitment-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitment-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.commitment-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--gold-light);
  border-bottom: 3px solid var(--gold-light);
  content: "";
  transform: rotate(45deg);
}

.prepared-care .section-heading {
  max-width: 940px;
}

.prepared-care .section-heading p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 1.04rem;
}

.care-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.care-step-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 190px;
  text-align: center;
}

.care-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, var(--pine), #1f7a46);
  border: 1px solid rgba(244, 214, 132, 0.28);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 51, 38, 0.16);
}

.care-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-icon svg path {
  fill: none !important;
  stroke: currentColor !important;
}

.about-cta {
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 214, 132, 0.16), transparent 26%),
    linear-gradient(145deg, #123326, #143d2d);
  border: 1px solid rgba(244, 214, 132, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-cta .eyebrow {
  color: var(--gold-light);
}

.about-cta h2,
.about-cta p {
  color: #fff;
}

.about-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-cta .contact-strip-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.about-cta .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(18, 51, 38, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  color: var(--pine);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 86% 8%, rgba(244, 214, 132, 0.16), transparent 30%),
    linear-gradient(145deg, #0d3326 0%, #123326 48%, #1d6942 100%);
  border-top: 1px solid rgba(220, 231, 221, 0.22);
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 0.75fr)) minmax(240px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(42px, 6vw, 72px) clamp(22px, 5vw, 72px);
}

.footer-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.footer-accordion-toggle {
  display: none;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.footer-logo strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.footer-contact {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-contact svg,
.footer-social svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 231, 221, 0.24);
  border-radius: 50%;
  text-decoration: none;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

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

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-list a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: var(--gold-light);
}

.footer-note {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-support-action,
.footer-mini-form {
  display: flex;
  margin-top: 20px;
}

.footer-mini-form {
  gap: 0;
  padding: 0;
  border: 0;
}

.footer-mini-form input {
  display: none;
}

.footer-support-action a,
.footer-mini-form a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  color: #fff;
  background: #1f7a46;
  border: 1px solid rgba(244, 214, 132, 0.38);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(5, 22, 15, 0.22);
  font-weight: 800;
  text-decoration: none;
}

.footer-support-action a:hover,
.footer-mini-form a:hover {
  color: #fff;
  background: #277448;
}

.footer-support-action a:focus-visible,
.footer-mini-form a:focus-visible {
  outline: 3px solid rgba(244, 214, 132, 0.72);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(13, 51, 38, 0.28);
  border-top: 1px solid rgba(220, 231, 221, 0.18);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(64px, 9vw, 110px);
  background: #fff;
}

.legal-hero,
.legal-content {
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: clamp(28px, 5vw, 48px);
}

.legal-hero h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid rgba(220, 231, 221, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(18, 51, 38, 0.06);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--pine);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul {
  margin-top: 12px;
}

.legal-section ul {
  padding-left: 20px;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  place-items: center;
  color: #fff;
  background: var(--leaf);
  border-radius: 999px;
  font-size: 0.72rem;
}

.cart-count[hidden] {
  display: none;
}

.product-order-card {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  min-height: 42px;
  padding: 0 18px;
  color: var(--pine);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.variant-option[aria-pressed="true"] {
  color: #fff;
  background: var(--leaf);
  border-color: var(--leaf);
}

.product-price {
  color: var(--pine);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pine);
  font-weight: 800;
}

.quantity-control input {
  width: 86px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.commerce-page {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(64px, 9vw, 110px);
}

.commerce-hero {
  max-width: 980px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}

.commerce-hero h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
}

.commerce-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(24px, 4vw, 46px);
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.cart-items,
.checkout-card,
.cart-summary,
.admin-card,
.admin-section,
.admin-order-card,
.admin-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.cart-items {
  display: grid;
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item img {
  width: 96px;
  height: 110px;
  object-fit: contain;
  background: var(--mist);
  border-radius: 8px;
}

.cart-item h2,
.cart-summary h2,
.checkout-card h2,
.admin-section h2,
.admin-order-card h3 {
  margin: 0;
  color: var(--pine);
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.cart-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pine);
  font-weight: 800;
}

.cart-controls input {
  width: 76px;
  min-height: 40px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-controls button {
  color: var(--copper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.cart-summary,
.checkout-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.summary-row,
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.summary-row strong,
.checkout-line strong {
  color: var(--pine);
  white-space: nowrap;
}

.cod-note,
.form-help {
  margin: 0;
  color: var(--muted);
}

.cod-box {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: var(--pine);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cod-box span {
  color: var(--muted);
}

.checkout-button {
  width: 100%;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.button.on-light {
  color: var(--pine);
  border-color: var(--line);
}

.empty-cart {
  padding: 34px;
  text-align: center;
}

.span-full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.address-search-row {
  position: relative;
}

.address-results {
  position: absolute;
  z-index: 5;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 260px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.address-results button {
  padding: 12px 14px;
  color: var(--pine);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.map-frame {
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.confirmation-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.order-reference {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-reference span {
  color: var(--muted);
  font-weight: 800;
}

.order-reference strong {
  color: var(--pine);
  font-size: 1.35rem;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.admin-card {
  display: grid;
  gap: 14px;
  width: min(100%, 420px);
  padding: 28px;
}

.admin-card input,
.admin-page input,
.admin-page select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-page {
  padding: clamp(24px, 5vw, 60px);
}

.admin-header,
.admin-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-header h1 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.admin-user-line,
.admin-text-link {
  color: var(--muted);
  font-weight: 800;
}

.admin-text-link {
  text-align: center;
}

.admin-main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.admin-main-nav a {
  padding: 10px 14px;
  color: var(--pine);
  text-decoration: none;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.admin-main-nav a.is-active {
  background: #fff;
  border-color: var(--copper);
  box-shadow: var(--soft-shadow);
}

.admin-section {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
}

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

.admin-summary-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.admin-summary-grid span {
  color: var(--muted);
  font-weight: 900;
}

.admin-summary-grid strong {
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-notice,
.admin-alert {
  padding: 12px 14px;
  color: var(--pine);
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-products,
.admin-product-card,
.admin-orders {
  display: grid;
  gap: 16px;
}

.admin-product-card,
.admin-order-card {
  padding: 18px;
}

.admin-product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-product-card-head h3 {
  margin: 0;
  color: var(--pine);
}

.admin-product-card-head span,
.admin-discount-note,
.cart-discount-line,
.price-stack small,
.checkout-line small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-management-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-management-menu a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px;
  color: var(--pine);
  text-decoration: none;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-management-menu a.is-active {
  background: #fff;
  border-color: var(--copper);
  box-shadow: var(--soft-shadow);
}

.admin-management-menu strong {
  font-size: 1rem;
}

.admin-management-menu span {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.variant-editor {
  display: grid;
  gap: 8px;
}

.variant-row {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  gap: 10px;
}

.variant-row.price-row,
.variant-row.stock-row {
  grid-template-columns: minmax(120px, 1fr) minmax(160px, 220px);
  align-items: center;
}

.variant-row.add-item-row {
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 180px) minmax(120px, 180px);
  align-items: center;
}

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

.new-item-grid label {
  color: var(--pine);
  font-weight: 800;
}

.admin-add-product .variant-row {
  grid-template-columns: 1fr 120px 120px 120px;
}

.variant-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-filters,
.status-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.discount-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.discount-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.discount-grid label,
.discount-row label,
.variant-row.price-row,
.variant-row.stock-row {
  color: var(--pine);
  font-weight: 800;
}

.discount-active {
  align-self: end;
  min-height: 44px;
}

.discount-custom {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.discount-custom h4 {
  margin: 0;
  color: var(--pine);
}

.discount-preview {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.discount-preview div,
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-stack {
  display: inline-grid;
  gap: 2px;
}

.price-stack strong,
.cart-item strong,
.checkout-line strong {
  color: var(--pine);
}

.price-stack s,
.cart-item s,
.checkout-line s,
.discount-preview s {
  color: var(--muted);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.checkout-line span {
  display: grid;
  gap: 3px;
}

.admin-discount-note {
  display: block;
  margin-top: 4px;
}

.admin-order-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.admin-order-card p {
  color: var(--muted);
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--pine);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table input,
.admin-table select {
  width: 100%;
  min-width: 120px;
}

.admin-actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.order-detail-grid p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-detail-grid strong {
  color: var(--pine);
}

@media (max-width: 860px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .admin-management-menu,
  .discount-grid,
  .discount-row,
  .admin-summary-grid,
  .order-detail-grid,
  .dynamic-products-grid,
  .dynamic-product-card {
    grid-template-columns: 1fr;
  }

  .variant-row.price-row,
  .variant-row.stock-row,
  .variant-row.add-item-row,
  .new-item-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .featured-order-actions .button {
    width: 100%;
  }

  .featured-order-actions {
    grid-template-columns: 1fr;
  }

  .featured-order-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-product-visual {
    min-height: 360px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item strong {
    grid-column: 2;
  }

  .cart-item img {
    width: 72px;
    height: 86px;
  }

  .variant-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .span-full {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(14, 38, 28, 0.93), rgba(14, 38, 28, 0.74));
  }

  .product-feature,
  .featured-purchase,
  .coming-soon-range,
  .quality-promise,
  .contact-hero,
  .details-hero,
  .details-dossier,
  .about-hero,
  .about-mission,
  .founder-vision,
  .about-commitments,
  .about-cta,
  .benefit-grid,
  .info-grid,
  .steps,
  .about-card-grid,
  .care-step-grid,
  .contact-prep-grid,
  .contact-detail-grid,
  .contact-strip,
  .dialog-shell,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    width: min(100%, 360px);
    min-height: 470px;
  }

  .featured-product-visual {
    min-height: 420px;
  }

  .product-showcase-stack {
    justify-items: center;
  }

  .feature-copy {
    min-height: auto;
  }

  .feature-copy h2 {
    font-size: 3.45rem;
  }

  .details-summary {
    position: static;
  }

  .comfort-map {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .review-ready-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-copy {
    position: static;
  }

  .contact-strip-actions {
    margin-top: 0;
  }

  .viewer-stage {
    min-height: 520px;
  }

  .benefit-grid h3 {
    min-height: 0;
  }

  .site-footer {
    display: block;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .steps::before {
    display: none;
  }

  .disclaimer {
    margin-top: 10px;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-footer.footer-accordion-ready .footer-grid {
    display: block;
    padding: 18px clamp(20px, 6vw, 28px) 10px;
  }

  .site-footer.footer-accordion-ready .footer-brand,
  .site-footer.footer-accordion-ready .footer-column {
    display: block;
    border-bottom: 1px solid rgba(220, 231, 221, 0.18);
  }

  .site-footer.footer-accordion-ready .footer-column h2 {
    display: none;
  }

  .site-footer.footer-accordion-ready .footer-accordion-toggle {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
  }

  .site-footer.footer-accordion-ready .footer-accordion-toggle::after {
    content: "+";
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.86);
    min-width: 28px;
    font-size: 2.35rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
  }

  .site-footer.footer-accordion-ready .footer-brand.is-open .footer-accordion-toggle::after,
  .site-footer.footer-accordion-ready .footer-column.is-open .footer-accordion-toggle::after {
    content: "-";
  }

  .site-footer.footer-accordion-ready .footer-brand > :not(.footer-accordion-toggle),
  .site-footer.footer-accordion-ready .footer-column > :not(.footer-accordion-toggle):not(h2) {
    display: none;
  }

  .site-footer.footer-accordion-ready .footer-brand.is-open .footer-logo {
    display: inline-flex;
    margin: 4px 0 18px;
  }

  .site-footer.footer-accordion-ready .footer-brand.is-open .footer-contact,
  .site-footer.footer-accordion-ready .footer-column.is-open .footer-list {
    display: grid;
    padding-bottom: 22px;
  }

  .site-footer.footer-accordion-ready .footer-column.is-open .footer-note {
    display: block;
    padding-bottom: 18px;
  }

  .site-footer.footer-accordion-ready .footer-column.is-open .footer-support-action {
    display: flex;
    padding-bottom: 24px;
  }

  .site-footer.footer-accordion-ready .footer-bottom {
    display: block;
    padding: 18px clamp(20px, 6vw, 28px);
    text-align: left;
  }
}

@media (max-width: 560px) {
  [id] {
    scroll-margin-top: 176px;
  }

  body {
    padding-top: 166px;
    padding-bottom: 84px;
  }

  .top-bar {
    display: block;
    min-height: 54px;
  }

  .top-bar a {
    display: block;
    margin-top: 2px;
  }

  .site-header {
    top: 54px;
    padding: 12px 16px;
  }

  .brand {
    flex-basis: 100%;
    max-width: 100%;
  }

  .brand-mark {
    flex-basis: 74px;
    width: 74px;
    height: 74px;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .brand-copy small {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .why-choose-grid,
  .coming-soon-grid,
  .review-ready-grid {
    grid-template-columns: 1fr;
  }

  .quality-promise-grid article {
    grid-template-columns: 1fr;
  }

  .quality-promise-grid p {
    grid-column: auto;
  }

  .site-nav {
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    justify-content: flex-start;
    padding-bottom: 2px;
    font-size: 0.84rem;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .details-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 38px 18px;
  }

  .contact-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 38px 24px;
  }

  .about-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 38px 24px;
  }

  .details-hero,
  .details-dossier,
  .about-hero,
  .about-mission,
  .founder-vision,
  .about-commitments,
  .about-cta {
    display: block;
  }

  .contact-hero,
  .contact-hero-copy,
  .contact-hero-panel,
  .contact-options,
  .contact-card,
  .contact-prep,
  .contact-prep-grid,
  .contact-details,
  .contact-faq,
  .contact-detail-grid,
  .faq-list,
  .details-hero-copy,
  .details-hero,
  .details-dossier,
  .details-summary,
  .details-accordion,
  .details-product-visual,
  .about-hero,
  .about-hero-copy,
  .about-hero-visual,
  .about-mission,
  .founder-vision,
  .founder-vision > div,
  .founder-vision blockquote,
  .about-difference,
  .about-card-grid,
  .about-commitments,
  .prepared-care,
  .care-step-grid,
  .about-cta {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    justify-self: center;
  }

  .contact-hero {
    gap: 24px;
    padding-bottom: 30px;
  }

  .contact-hero-panel {
    margin-top: 0;
    min-height: auto;
  }

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

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

  .contact-hero-action {
    width: 100%;
  }

  .details-product-visual,
  .details-summary,
  .details-accordion {
    margin-top: 30px;
  }

  .details-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 2.52rem;
  }

  .contact-page h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 2.25rem;
  }

  .about-page h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 2.7rem;
  }

  .about-page h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 2.1rem;
  }

  .details-hero-copy p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-hero p,
  .contact-card p,
  .contact-form,
  .contact-prep-grid p,
  .contact-detail-grid p,
  .faq-list p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .details-product-visual {
    min-height: 440px;
    padding: 10px;
  }

  .about-hero-visual {
    width: 100%;
    max-width: min(360px, calc(100vw - 48px));
    min-height: 450px;
    margin-top: 30px;
    padding: 12px;
  }

  .about-product-card {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .about-product-card img {
    width: min(100%, 300px);
  }

  .about-card-grid,
  .care-step-grid {
    grid-template-columns: 1fr;
  }

  .about-mission,
  .founder-vision > div,
  .founder-vision blockquote,
  .about-commitments,
  .about-cta {
    padding: 24px;
  }

  .about-commitments-panel {
    margin-bottom: 22px;
  }

  .about-cta .contact-strip-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .details-product-visual img {
    width: min(100%, 360px);
    max-height: 400px;
  }

  .details-accordion summary {
    min-height: 78px;
    padding: 22px 62px 22px 18px;
    font-size: 1.42rem;
  }

  .details-accordion summary::after {
    right: 22px;
    width: 16px;
    height: 16px;
  }

  .details-panel {
    overflow: hidden;
    padding: 0 18px 24px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .benefit-list li {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .floating-order {
    left: 16px;
    right: auto;
    bottom: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-order span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .product-actions .button,
  .contact-strip-actions .button {
    flex: 1 1 100%;
  }

  .product-showcase {
    width: 100%;
    max-width: min(360px, calc(100vw - 36px));
    min-height: 450px;
    justify-self: center;
  }

  .feature-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    justify-self: center;
    padding: 24px;
  }

  .feature-copy::before {
    width: 260px;
    opacity: 0.62;
  }

  .feature-copy::after,
  .feature-glow {
    display: none;
  }

  .feature-copy h2 {
    max-width: calc(100vw - 84px);
    font-size: 2.45rem;
  }

  .feature-lede {
    max-width: calc(100vw - 84px);
  }

  .comfort-map,
  .comfort-card,
  .comfort-card-large,
  .comfort-card-wide {
    grid-template-columns: 1fr;
  }

  .comfort-card,
  .comfort-card-large,
  .comfort-card-wide {
    min-height: 0;
  }

  .comfort-map::before {
    display: none;
  }

  .comfort-card img,
  .comfort-card-large img,
  .comfort-card-wide img {
    height: 168px;
    min-height: 168px;
  }

  .comfort-card div,
  .comfort-card-large div {
    max-width: calc(100vw - 84px);
    padding: 20px;
  }

  .comfort-card-wide {
    grid-column: auto;
  }

  .comfort-card-large h3,
  .comfort-card-wide h3 {
    font-size: 1.42rem;
  }

  .showcase-product-image {
    width: min(100%, 300px);
  }

  .benefit-grid article,
  .steps article,
  .contact-prep-grid article,
  .contact-card {
    padding: 24px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .product-dialog {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
  }

  .dialog-shell {
    max-height: calc(100vh - 18px);
  }

  .viewer-gallery {
    padding: 12px;
  }

  .viewer-stage {
    min-height: 360px;
  }

  .viewer-slide img {
    max-height: 360px;
  }

  .viewer-arrow {
    width: 40px;
    height: 40px;
  }

  .viewer-arrow-prev {
    left: 10px;
  }

  .viewer-arrow-next {
    right: 10px;
  }

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

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

body.nav-open,
body.cart-drawer-open {
  overflow: hidden;
}

body.nav-open::before,
body.cart-drawer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(18, 32, 25, 0.42);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.hero-slider {
  width: 100vw;
  height: 43.58vw;
  max-height: 828px;
  min-height: 320px;
  aspect-ratio: 1900 / 828;
  margin-left: calc(50% - 50vw);
  background: var(--pine);
  display: block;
  isolation: isolate;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--pine);
  transform: scale(1);
  transition: opacity 0.7s ease, transform 5.5s ease;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
}

.hero-slider .hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-user-drag: none;
  user-select: none;
}

.cart-added-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 45;
  display: grid;
  gap: 18px;
  width: min(92vw, 390px);
  height: 100dvh;
  padding: 28px 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: -24px 0 70px rgba(18, 51, 38, 0.18);
  transform: translateX(105%);
  transition: transform 240ms ease;
  align-content: start;
}

body.cart-drawer-open .cart-added-drawer {
  transform: translateX(0);
}

.cart-drawer-close {
  justify-self: end;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--pine);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.cart-added-drawer h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.cart-drawer-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-drawer-product img {
  width: 86px;
  height: 96px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.cart-drawer-product strong,
.cart-drawer-product span {
  display: block;
}

.cart-drawer-product strong {
  color: var(--pine);
  font-size: 1.05rem;
}

.cart-drawer-product span {
  color: var(--muted);
}

.cart-drawer-actions {
  display: grid;
  gap: 10px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(16px, 2vw, 26px);
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(13, 51, 38, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--gold);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
  }

  .brand {
    flex: 1 1 auto;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 46;
    display: grid;
    flex: 0 0 48px;
  }

  .site-nav {
    position: fixed;
    top: calc(38px + 14px);
    right: 14px;
    z-index: 44;
    display: grid;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100dvh - 76px);
    gap: 0;
    padding: 76px 18px 22px;
    overflow-y: auto;
    color: var(--pine);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 231, 221, 0.95);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(18, 51, 38, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(100% + 28px));
    transition: opacity 200ms ease, transform 240ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    display: flex;
    min-height: 54px;
    align-items: center;
    border-bottom: 1px solid rgba(220, 231, 221, 0.85);
    font-size: 1.05rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero-slider {
    height: 111.1vw;
    max-height: none;
    min-height: 360px;
    aspect-ratio: 1190 / 1322;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 111.1vw;
    min-height: 340px;
    aspect-ratio: 1190 / 1322;
  }

  .hero-dots {
    bottom: 12px;
    gap: 7px;
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
  }

  .hero-dots button.is-active {
    width: 22px;
  }

  .site-nav {
    top: calc(54px + 10px);
  }

  .cart-added-drawer {
    width: min(94vw, 360px);
    padding: 22px 18px;
  }
}
