:root {
  --beige: #F5F5DC;
  --dark-green: #1B3022;
  --light-green: #A4AC86;
  --off-white: #FDFBF7;
  --white: #FFFFFF;
  --text-soft: rgba(27, 48, 34, 0.76);
  --text-muted: rgba(27, 48, 34, 0.58);
  --border-soft: rgba(27, 48, 34, 0.1);
  --shadow-soft: 0 18px 44px rgba(27, 48, 34, 0.08);
  --shadow-strong: 0 28px 72px rgba(27, 48, 34, 0.14);
  --curve: cubic-bezier(0.22, 1, 0.36, 1);
  --section-space: clamp(4.5rem, 8vw, 7.2rem);
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --nav-height: 5rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--dark-green);
  background: var(--off-white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Text", sans-serif;
  line-height: 1.6;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
/*  font-synthesis: none;*/
}

body.no-scroll,
body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(27, 48, 34, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1.1rem;
  color: var(--dark-green);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(27, 48, 34, 0.34);
  box-shadow: 0 0 0 4px rgba(164, 172, 134, 0.16);
  background: var(--white);
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid var(--light-green);
  outline-offset: 3px;
}

::selection {
  background: rgba(164, 172, 134, 0.35);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(245, 245, 220, 0.8);
}

::-webkit-scrollbar-thumb {
  background: var(--light-green);
  border-radius: 999px;
  border: 2px solid rgba(245, 245, 220, 0.9);
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 5000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--dark-green);
  color: var(--beige);
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 2000;
}

.section-frame {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.page-shell {
  opacity: 1;
  transform: none;
}

.page-shell.is-ready {
  opacity: 1;
  transform: none;
}

html.js .page-shell--pending {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.85s var(--curve), transform 0.85s var(--curve);
  animation: pageShellSafety 0.01ms linear 3.2s forwards;
}

html.no-js .intro {
  display: none;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: var(--dark-green);
  opacity: 1;
  transition: opacity 0.7s var(--curve), visibility 0.7s var(--curve);
}

.js .intro {
  animation: introSafety 0.01ms linear 3.35s forwards;
}

.intro.is-exiting {
  opacity: 0;
  visibility: hidden;
}

#intro-logo {
  width: clamp(6.8rem, 12vw, 9rem);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
  transform: scale(0.92);
  opacity: 0;
  will-change: transform, opacity;
}

.intro.is-visible #intro-logo {
  animation: introLogo 1.1s var(--curve) forwards;
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes pageShellSafety {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes introSafety {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.navbar-floating {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(94%, 76rem);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 16px 48px rgba(27, 48, 34, 0.08);
  transform: translateX(-50%);
  transition:
    top 0.45s var(--curve),
    padding 0.45s var(--curve),
    background-color 0.45s var(--curve),
    box-shadow 0.45s var(--curve),
    width 0.45s var(--curve);
}

.navbar-floating.is-scrolled,
.navbar-floating.is-menu-open {
  top: 0.65rem;
  background: rgba(253, 251, 247, 0.94);
  box-shadow: 0 18px 54px rgba(27, 48, 34, 0.12);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.navbar-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  flex: none;
}

.navbar-brand span {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-inline: auto;
}

.nav-links a,
.mobile-menu a {
  position: relative;
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.78;
  transition: opacity 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--light-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--curve);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 48, 34, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(27, 48, 34, 0.08);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--dark-green);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-floating.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-floating.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar-floating.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(1rem + var(--nav-height) + 0.4rem);
  left: 50%;
  z-index: 2100;
  display: grid;
  gap: 0.4rem;
  width: min(92%, 23rem);
  padding: 1rem;
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 1.5rem;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(27, 48, 34, 0.16);
  transform: translate(-50%, -0.75rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--curve);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.16em;
}

.mobile-menu__cta {
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition:
    transform 0.35s var(--curve),
    box-shadow 0.35s var(--curve),
    background-color 0.35s var(--curve),
    color 0.35s var(--curve),
    border-color 0.35s var(--curve);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--dark-green);
  color: var(--beige);
  box-shadow: 0 14px 28px rgba(27, 48, 34, 0.16);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #223c2c;
  box-shadow: 0 18px 36px rgba(27, 48, 34, 0.2);
}

.button--ghost {
  border-color: rgba(27, 48, 34, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--dark-green);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(27, 48, 34, 0.25);
  background: rgba(255, 255, 255, 0.92);
}

.button--small {
  min-height: 2.65rem;
  padding-inline: 1rem;
  font-size: 0.67rem;
}

.button--nav {
  min-height: 2.85rem;
  padding-inline: 1.2rem;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 3.75rem) var(--page-gutter) 4.5rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb--left {
  top: 18%;
  left: -4rem;
  width: clamp(11rem, 20vw, 16rem);
  height: clamp(11rem, 20vw, 16rem);
  background: rgba(164, 172, 134, 0.25);
}

.hero-orb--right {
  right: -6rem;
  bottom: 12%;
  width: clamp(14rem, 24vw, 22rem);
  height: clamp(14rem, 24vw, 22rem);
  background: rgba(27, 48, 34, 0.1);
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2.25rem;
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(27, 48, 34, 0.08);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--light-green);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(245, 245, 220, 0.82);
}

.hero-title,
.section-title,
.contact-form-card h3,
.newsletter-card h3,
.footer-contact h3,
.site-footer h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-title {
  font-size: clamp(2.7rem, 7.2vw, 5.9rem);
  line-height: 1.02;
}

.hero-highlight {
  color: var(--light-green);
}

.hero-highlight em {
  font-style: italic;
}

.hero-copy,
.section-copy,
.apple-copy p,
.about-copy p,
.contact-info p,
.contact-form-card p,
.site-footer p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-soft);
  font-weight: 300;
}

.hero-copy {
  max-width: 50rem;
  margin: 1.35rem auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-metrics article {
  padding: 1.05rem 1rem;
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.56);
}

.hero-metrics strong,
.values-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.7rem, 1.7vw + 1rem, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-metrics span,
.values-grid span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section {
  padding: var(--section-space) var(--page-gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.35rem;
}

.section-heading--compact {
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
}

.section-title--light,
.apple-copy p {
  color: var(--off-white);
}

.apple-section {
  height: 205vh;
  height: 205svh;
  position: relative;
  background: var(--dark-green);
}

.apple-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.apple-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.apple-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 9, 0.42);
}

#apple-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transform-origin: center center;
  will-change: transform;
}

.apple-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  padding: clamp(2rem, 4vw, 3rem) var(--page-gutter) clamp(3rem, 7vw, 5rem);
  opacity: 1;
  transform: none;
}

html.js .apple-copy {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  will-change: transform, opacity;
}

.apple-copy p {
  margin: 1rem 0 0;
  max-width: 40rem;
}

.products-section {
  background: rgba(245, 245, 220, 0.56);
}

.slider-shell,
.values-card,
.newsletter-card,
.contact-form-card {
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 2rem;
  background: #fcfaf4;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.slider-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.slider-shell::after {
  display: none;
}

.slider-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.slider-note {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-soft);
}

.slider-controls {
  display: flex;
  gap: 0.75rem;
}

.slider-control {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 48, 34, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark-green);
  box-shadow: 0 10px 24px rgba(27, 48, 34, 0.08);
  transition: transform 0.3s var(--curve), box-shadow 0.3s var(--curve), background-color 0.3s ease;
}

.slider-control:hover,
.slider-control:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(27, 48, 34, 0.12);
}

.slider-viewport {
  overflow: hidden;
  padding: 0.45rem 0.35rem 0.3rem;
  background: transparent;
}

.slider-track {
  display: flex;
  position: relative;
  align-items: stretch;
  padding-bottom: 0;
  gap: 1.5rem;
  will-change: transform;
}

.product-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 22rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 1.8rem;
  background: #fffdfa;
  border: 1px solid rgba(27, 48, 34, 0.08);
/*  box-shadow: 0 8px 18px rgba(27, 48, 34, 0.05);*/
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(27, 48, 34, 0.16);
/*  box-shadow: 0 10px 22px rgba(27, 48, 34, 0.06);*/
}

.product-card__link:focus-visible {
  outline: none;
}

.product-media {
  overflow: hidden;
  border-radius: 1.6rem 1.6rem 0 0;
  aspect-ratio: 4 / 5;
  background: #ece9df;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--curve);
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.02);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1rem 1.15rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-tag {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(164, 172, 134, 0.18);
  color: var(--dark-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-price {
  font-size: 0.94rem;
  font-weight: 400;
}

.product-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 0;
  flex: 1;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.9rem;
}

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.1rem;
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-detail-link::after {
  content: "↗";
  font-size: 0.82rem;
  line-height: 1;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 2.25rem;
  box-shadow: var(--shadow-strong);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.about-copy p {
  margin: 0;
}

.signature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(245, 245, 220, 0.74);
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.signature-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: var(--dark-green);
  color: var(--beige);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  font-style: italic;
}

.signature-card strong,
.signature-card span {
  display: block;
}

.signature-card strong {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signature-card span {
  color: var(--text-muted);
}

.values-section {
  padding-top: 0;
}

.values-card {
  padding: clamp(1.4rem, 4vw, 3rem);
  background: rgba(250, 248, 242, 0.92);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.values-grid article {
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 48, 34, 0.06);
}

.newsletter-card,
.contact-form-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.newsletter-card {
  background: rgba(244, 244, 232, 0.92);
}

.newsletter-card h3,
.contact-form-card h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
}

.newsletter-card p,
.contact-form-card p {
  margin: 0.8rem 0 0;
}

.stack-form,
.contact-form {
  margin-top: 1.5rem;
}

.field-row {
  display: flex;
  gap: 0.75rem;
}

.field-row input {
  flex: 1;
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.select-wrap {
  position: relative;
  display: block;
}

.native-select {
  display: none;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.98rem 3rem 0.98rem 1.1rem;
  border: 1px solid rgba(27, 48, 34, 0.14);
  border-radius: 1.25rem;
  background: #f7f3ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 16px rgba(27, 48, 34, 0.05);
  color: var(--dark-green);
  text-align: left;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:hover,
.custom-select__trigger:focus-visible {
  border-color: rgba(27, 48, 34, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 22px rgba(27, 48, 34, 0.08);
  background: #fbf8f0;
}

.custom-select__label {
  display: block;
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--dark-green);
}

.custom-select__chevron {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid rgba(27, 48, 34, 0.62);
  border-bottom: 1.5px solid rgba(27, 48, 34, 0.62);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.28s ease;
}

.custom-select.is-open .custom-select__chevron {
  transform: translateY(-35%) rotate(-135deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid rgba(27, 48, 34, 0.1);
  border-radius: 1.25rem;
  background: #fdfbf7;
  box-shadow: 0 22px 48px rgba(27, 48, 34, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.3rem);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.custom-select.is-open .custom-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select__option {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border-radius: 0.95rem;
  color: var(--dark-green);
  font-size: 0.92rem;
  font-weight: 400;
  text-align: left;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(164, 172, 134, 0.18);
  transform: translateX(0.08rem);
}

.custom-select__option.is-selected {
  background: var(--dark-green);
  color: var(--beige);
  box-shadow: 0 10px 18px rgba(27, 48, 34, 0.14);
}

.form-feedback {
  min-height: 1.3rem;
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.site-footer {
  padding: 1rem var(--page-gutter) 2.5rem;
  border-top: 1px solid rgba(27, 48, 34, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
}

.footer-brand-link {
  display: inline-flex;
  width: fit-content;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links h3 {
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  margin-top: 0.6rem;
  color: var(--text-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--dark-green);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-contact h3 {
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(27, 48, 34, 0.08);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 0.85s var(--curve),
    transform 0.85s var(--curve);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.slider-shell.is-native-scroll .slider-viewport {
  overflow-x: auto;
  padding: 0.45rem 0.35rem 0.3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider-shell.is-native-scroll .slider-track {
  transform: none !important;
}

.slider-shell.is-native-scroll .product-card {
  flex-basis: min(84vw, 20rem);
  scroll-snap-align: start;
}

.slider-shell.is-native-scroll .slider-viewport::-webkit-scrollbar {
  height: 6px;
}

.slider-shell.is-native-scroll .slider-viewport::-webkit-scrollbar-thumb {
  border-width: 1px;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar-floating,
  .mobile-menu,
  .hero-card,
  .slider-shell,
  .values-card,
  .newsletter-card,
  .contact-form-card {
    background: rgba(253, 251, 247, 0.96);
  }
}

@media (max-width: 1100px) {
  .section-heading,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .button--nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .hero-card {
    text-align: left;
  }

  .hero-copy {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-metrics,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .apple-section {
    height: auto;
    padding: var(--section-space) var(--page-gutter);
    background: transparent;
  }

  .apple-sticky {
    position: relative;
    width: min(100%, 76rem);
    height: auto;
    min-height: 30rem;
    margin-inline: auto;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
  }

  .apple-media {
    position: absolute;
    inset: 0;
  }

  .apple-copy,
  html.js .apple-copy {
    width: 100%;
    padding: 2rem;
    opacity: 1;
    transform: none;
    background: rgba(27, 48, 34, 0.78);
  }

  .field-row {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .navbar-floating {
    width: min(94%, 30rem);
    padding: 0.72rem 0.85rem;
  }

  .navbar-brand span {
    font-size: 1.18rem;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 2.25rem);
    padding-bottom: 3.5rem;
  }

  .hero-card,
  .slider-shell,
  .values-card,
  .newsletter-card,
  .contact-form-card,
  .about-media,
  .apple-sticky {
    border-radius: 1.6rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card h3,
  .footer-contact h3 {
    font-size: 1.28rem;
  }

  .footer-links,
  .footer-contact,
  .footer-meta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .intro,
  .reveal,
  .apple-copy,
  .page-shell {
    opacity: 1 !important;
    transform: none !important;
  }
}
