:root {
  --forest: #123f2a;
  --forest-deep: #0b2f20;
  --leaf: #496f4d;
  --cream: #f8f4e9;
  --paper: #fffdf7;
  --ink: #17382d;
  --line: rgba(23, 56, 45, 0.21);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
}

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

.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: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: white;
}

.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 104px;
  padding: 0 4.6vw;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(100px, 1fr);
  align-items: center;
  gap: 2rem;
  background: rgba(255, 253, 247, 0.97);
  border-bottom: 1px solid rgba(18, 63, 42, 0.05);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-block;
  width: min(365px, 100%);
  padding: 0.65rem 0;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3.1vw, 3.3rem);
  font-family: Montserrat, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 600;
}

.primary-nav a {
  text-decoration: none;
  padding: 0.75rem 0 0.65rem;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active { border-color: var(--forest); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.header-actions a {
  width: 27px;
  height: 27px;
}

.header-actions svg {
  width: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle { display: none; }

.hero {
  min-height: 505px;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(249, 247, 237, 0.98) 0%, rgba(249, 247, 237, 0.9) 34%, rgba(249, 247, 237, 0.16) 58%, rgba(249, 247, 237, 0) 100%),
    url("hero-botanical.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-content {
  width: min(610px, 48vw);
  margin-left: 7.2vw;
  padding: 4rem 0;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.15rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: Allura, "Segoe Script", cursive;
  font-weight: 400;
  font-size: 0.83em;
  letter-spacing: 0;
}

.hero p {
  max-width: 520px;
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.8rem 1.8rem;
  border-radius: 3px;
  color: white;
  background: var(--forest);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(18, 63, 42, 0.14);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible { background: #0d5232; transform: translateY(-1px); }

.values {
  padding: 2.2rem 6vw 2.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.86), transparent 48%),
    linear-gradient(90deg, #f2f1e6, #faf7ed 50%, #f2f1e6);
}

.section-heading { text-align: center; }

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
  line-height: 1.12;
  font-weight: 600;
}

.section-heading em { font-family: Allura, cursive; font-weight: 400; font-size: 1.18em; }

.botanical-rule {
  width: min(460px, 80%);
  margin: 1rem auto 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
}

.botanical-line { height: 1px; background: var(--line); }

.botanical-mark {
  width: 41px;
  height: 32px;
  display: block;
  overflow: hidden;
}

.botanical-mark img {
  width: 185px;
  max-width: none;
  height: auto;
}

.value-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article {
  min-height: 140px;
  padding: 0.35rem 2.1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.value-grid article:first-child { border-left: 0; }

.value-grid h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-grid p { margin: 0 auto; max-width: 210px; line-height: 1.35; }

.founder-letter {
  padding: clamp(2rem, 5vw, 4.5rem) 5vw;
  background:
    radial-gradient(circle at 8% 18%, rgba(73, 111, 77, 0.11), transparent 25rem),
    radial-gradient(circle at 92% 82%, rgba(184, 145, 61, 0.1), transparent 22rem),
    #f1ecdf;
}

.about-page .founder-letter {
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: center;
}

.letter-sheet {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(3.4rem, 7vw, 6rem) clamp(1.6rem, 8vw, 7.8rem) clamp(2.8rem, 6vw, 4.8rem);
  overflow: hidden;
  color: #103d2b;
  background:
    radial-gradient(circle at 80% 4%, rgba(174, 126, 38, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 6%, rgba(174, 126, 38, 0.5) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 76% 7%, rgba(174, 126, 38, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.88), transparent 22rem),
    repeating-linear-gradient(6deg, rgba(126, 96, 45, 0.03) 0, rgba(126, 96, 45, 0.03) 1px, transparent 1px, transparent 5px),
    #f7eddb;
  border: 1px solid rgba(86, 68, 36, 0.15);
  border-radius: 1px;
  box-shadow: 0 18px 48px rgba(18, 63, 42, 0.13);
  transform: rotate(-0.45deg);
  transform-origin: center;
}

.letter-sheet::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 1.65rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 64, 45, 0.28), transparent);
}

.letter-botanical {
  position: absolute;
  top: 0.8rem;
  right: -0.4rem;
  width: 112px;
  height: 92px;
  display: block;
  overflow: hidden;
  opacity: 0.42;
}

.letter-botanical img {
  width: 530px;
  max-width: none;
  height: auto;
}

.letter-sheet h1,
.letter-sheet h2 {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-family: Caveat, "Segoe Print", cursive;
  font-size: clamp(3.35rem, 6.6vw, 5.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.78;
  text-align: center;
  transform: rotate(-0.8deg);
}

.letter-sheet h1 > span,
.letter-sheet h2 > span { display: block; }

.letter-sheet h1 > span:last-child,
.letter-sheet h2 > span:last-child { margin-top: 0.38em; }

.letter-heading-heart {
  display: inline-block;
  margin-left: 0.12em;
  color: #a87927;
  font-family: Caveat, cursive;
  font-size: 0.88em;
  font-weight: 400;
  transform: rotate(-8deg);
}

.letter-copy {
  max-width: 790px;
  margin: 0 auto;
  font-family: Caveat, "Segoe Print", cursive;
  font-size: clamp(1.62rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.24;
}

.letter-copy p { margin: 0 0 1.2rem; }

.letter-copy p:nth-child(1) { transform: rotate(-0.12deg); }
.letter-copy p:nth-child(2) { margin-left: 1.1rem; transform: rotate(0.1deg); }
.letter-copy p:nth-child(3) { margin-left: 0.35rem; transform: rotate(-0.08deg); }
.letter-copy p:nth-child(4) { margin-left: 1.55rem; transform: rotate(0.12deg); }

.hand-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hand-underline::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.12em;
  bottom: 0.01em;
  height: 2px;
  background: rgba(16, 61, 43, 0.75);
  border-radius: 50%;
  transform: rotate(-1.2deg);
}

.letter-thank-you {
  max-width: 700px;
  font-size: 1.08em;
}

.letter-thank-you span {
  display: inline-block;
  margin-left: 0.18em;
  font-size: 1.6em;
  line-height: 0;
  transform: rotate(-8deg);
}

.letter-signoff {
  width: max-content;
  max-width: 100%;
  margin: 1.2rem 2.5rem 0 auto;
  font-family: Caveat, "Segoe Print", cursive;
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.05;
  transform: rotate(-0.8deg);
}

.letter-signoff p { margin: 0; }

.letter-heart {
  display: inline-block;
  margin: 0 0.1em;
  color: #a97828;
  font-family: Georgia, serif;
  font-size: 1.65em;
  line-height: 0;
  vertical-align: -0.08em;
}

.letter-signature {
  padding: 0.18rem 0 0 0.35rem;
  display: flex;
  align-items: flex-end;
  font-family: Allura, "Segoe Script", cursive;
  font-size: 4.2rem;
  line-height: 1;
  white-space: nowrap;
}

.signature-botanical {
  width: 72px;
  height: 55px;
  margin: 0 0 0.12rem 0.25rem;
  display: inline-block;
  overflow: hidden;
  opacity: 0.72;
}

.signature-botanical img {
  width: 320px;
  max-width: none;
  height: auto;
}

.letter-title {
  padding-left: 0.6rem;
  font-size: 1.3rem;
}

.letter-email {
  width: max-content;
  max-width: 100%;
  margin: 2rem auto 0;
  padding: 0 0.55rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(23, 64, 45, 0.38);
  font-family: Caveat, "Segoe Print", cursive;
  font-size: clamp(1.35rem, 2.3vw, 1.72rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transform: rotate(0.35deg);
}

.letter-envelope { font-family: Georgia, serif; font-size: 0.9em; }

.letter-email-heart {
  color: #a87927;
  font-size: 1.42em;
  line-height: 0;
  transform: rotate(-8deg);
}

.letter-email:hover,
.letter-email:focus-visible { color: #8e6520; }

.products {
  padding: 2.8rem 7.5vw 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.8rem, 3.8vw, 4rem);
  background: #f7f3e9;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(#fffdf8, #f5f1e7);
  box-shadow: 0 8px 28px rgba(32, 55, 37, 0.05);
}

.product-image { aspect-ratio: 1 / 1; overflow: hidden; background: white; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-image.has-status { position: relative; }

.coming-soon-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  padding: 0.65rem 1.05rem;
  color: #fff8e8;
  background: rgba(18, 63, 42, 0.96);
  border: 1px solid rgba(225, 194, 126, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(11, 47, 32, 0.22);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.coming-soon-badge:hover,
.coming-soon-badge:focus-visible {
  background: #0d5232;
  transform: translateY(-2px);
}

.product-copy {
  flex: 1;
  min-height: 26rem;
  padding: 1.1rem 2.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}

.product-copy .eyebrow { margin: 0.2rem 0 1rem; color: #2c5742; }
.product-copy .eyebrow span { padding: 0 0.25rem; }
.product-copy p:not(.eyebrow) { max-width: 510px; margin: 0 auto 1.25rem; font-size: 1.05rem; line-height: 1.38; }
.product-button { width: min(320px, 100%); margin-top: auto; }

.product-rating-summary {
  width: 100%;
  min-height: 1.15rem;
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #5f674f;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.product-rating-summary.is-empty { visibility: hidden; }

.product-rating-stars {
  display: inline-flex;
  gap: 0.08rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
}

.product-rating-star {
  --star-fill: 0%;
  color: transparent;
  background: linear-gradient(90deg, #e0aa1f var(--star-fill), #d6d0c1 var(--star-fill));
  background-clip: text;
  -webkit-background-clip: text;
}

.product-rating-value { white-space: nowrap; }

.review-section {
  width: 100%;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.review-section summary {
  padding: 1rem 0 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.review-summary-action {
  color: #866b43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.review-summary-action span { font-size: 1.25rem; }
.review-section[open] summary { padding-bottom: 0.9rem; }

.review-body {
  padding: 1rem;
  background: rgba(73, 111, 77, 0.055);
  border: 1px solid rgba(23, 56, 45, 0.1);
  border-radius: 5px;
}

.product-copy .review-body p.review-intro,
.review-intro {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: left;
}

.review-form {
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.review-form label,
.rating-fieldset legend {
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.review-form label > span { color: #6d766e; font-weight: 500; }

.review-form input:not([type="radio"]):not([type="checkbox"]),
.review-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.72rem 0.78rem;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(23, 56, 45, 0.25);
  border-radius: 3px;
  font: 1rem/1.4 Georgia, "Times New Roman", serif;
}

.review-form textarea { resize: vertical; }

.review-form input:not([type="radio"]):not([type="checkbox"]):focus,
.review-form textarea:focus {
  outline: 2px solid rgba(73, 111, 77, 0.35);
  outline-offset: 1px;
  border-color: var(--leaf);
}

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

.review-email-consent {
  padding: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #53645a;
  background: rgba(73, 111, 77, 0.08);
  border: 1px solid rgba(73, 111, 77, 0.18);
  border-radius: 5px;
  font-family: Arial, sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  line-height: 1.45;
}

.review-email-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  flex: 0 0 1rem;
  accent-color: var(--forest);
}

.review-email-consent > span { color: inherit !important; font-weight: inherit !important; }

.review-media-field {
  padding: 0.85rem;
  display: grid;
  gap: 0.35rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px dashed rgba(73, 111, 77, 0.38);
  border-radius: 5px;
}

.review-media-field > span:first-child {
  color: var(--ink) !important;
  font-weight: 600 !important;
}

.review-media-field small { color: #6d766e; font-size: 0.72rem; font-weight: 500; }

.review-media-field input[type="file"] {
  margin-top: 0.15rem !important;
  padding: 0.5rem !important;
  font: 0.82rem/1.3 Montserrat, Arial, sans-serif !important;
}

.review-media-field input[type="file"]::file-selector-button {
  margin-right: 0.7rem;
  padding: 0.5rem 0.7rem;
  color: #fffdf8;
  background: var(--forest);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font: 600 0.72rem/1 Montserrat, Arial, sans-serif;
}

.review-media-help {
  color: #6d766e !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.rating-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating {
  width: max-content;
  margin-top: 0.15rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.12rem;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.star-rating label {
  color: #c9c2b0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 140ms ease, transform 140ms ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #bd8e3f; }

.star-rating label:hover { transform: translateY(-1px); }
.star-rating input:focus-visible + label { outline: 2px solid var(--leaf); outline-offset: 2px; }

.review-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.product-copy .review-form p.review-note,
.review-form p.review-note {
  margin: -0.15rem 0 0;
  color: #637168;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: left;
}

.product-copy .review-form p.review-status,
.review-form p.review-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.review-form p.review-status.is-error { color: #9c382f; }

.review-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.review-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.posted-reviews {
  margin: 0 0 1.2rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(23, 56, 45, 0.14);
}

.posted-reviews h3 {
  margin: 0 0 0.8rem;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.posted-review-list {
  display: grid;
  gap: 0.75rem;
}

.customer-review {
  padding: 0.9rem 1rem;
  background: #fffdf8;
  border: 1px solid rgba(23, 56, 45, 0.12);
  border-radius: 5px;
}

.customer-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.customer-review-stars {
  color: #bd8e3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.customer-review time {
  color: #6d766e;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.68rem;
}

.customer-review h4 {
  margin: 0.55rem 0 0.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.customer-review-media {
  width: 100%;
  max-height: 360px;
  margin: 0.75rem 0 0.15rem;
  display: block;
  object-fit: contain;
  background: #f1eee4;
  border: 1px solid rgba(23, 56, 45, 0.1);
  border-radius: 5px;
}

.product-copy .customer-review p,
.customer-review p {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
  white-space: pre-wrap;
}

.product-copy .customer-review p.customer-review-name,
.customer-review p.customer-review-name {
  margin-top: 0.5rem;
  color: #5c6f62;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
}

.product-copy .posted-reviews p.review-empty,
.posted-reviews p.review-empty {
  max-width: none;
  margin: 0;
  color: #637168;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
}

.posted-reviews p.review-load-error { color: #8f4a43; }

.standalone-review {
  width: min(1040px, 100%);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  background: #fffdf8;
  border: 1px solid rgba(23, 56, 45, 0.13);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(18, 63, 42, 0.09);
}

.standalone-review-heading { align-self: start; }

.standalone-review-heading .eyebrow {
  margin: 0 0 0.45rem;
  color: var(--leaf);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.standalone-review-heading h2 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 0.98;
}

.standalone-review-heading p:last-child { margin: 0; font-size: 1.04rem; line-height: 1.5; }

.brand-banner {
  min-height: 150px;
  padding: 1.2rem 8vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image:
    linear-gradient(90deg, rgba(248,246,233,0.84), rgba(248,246,233,0.58) 48%, rgba(248,246,233,0.2)),
    url("hero-botanical.png");
  background-size: cover;
  background-position: center 67%;
}

.brand-banner div { margin-left: 7vw; text-align: center; }
.brand-banner h2 { margin: 0; font-family: Allura, cursive; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.brand-banner p { margin: 0.3rem 0 0; font-size: 1rem; line-height: 1.3; }

.contact-main {
  background:
    radial-gradient(circle at 88% 12%, rgba(73, 111, 77, 0.12), transparent 27rem),
    var(--paper);
}

.contact-hero {
  min-height: 330px;
  padding: 4.5rem 7vw;
  display: grid;
  place-items: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(248, 246, 233, 0.82), rgba(248, 246, 233, 0.92)),
    url("hero-botanical.png");
  background-size: cover;
  background-position: center 54%;
  border-bottom: 1px solid var(--line);
}

.contact-hero div { width: min(700px, 100%); }

.contact-kicker,
.contact-label {
  margin: 0 0 0.45rem;
  color: var(--leaf);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: 0.95;
}

.contact-hero h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--leaf) 22%, var(--leaf) 78%, transparent);
}

.contact-hero p:last-child {
  max-width: 620px;
  margin: 0.7rem auto 0;
  font-size: 1.12rem;
}

.contact-details { padding: 3.2rem 7vw 4rem; }

.contact-panel {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(23, 56, 45, 0.13);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(18, 63, 42, 0.1);
}

.contact-company {
  min-height: 0;
  padding: clamp(2.4rem, 5vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: #fffdf8;
  border-right: 1px solid var(--line);
}

.contact-company .contact-label { color: var(--leaf); }

.contact-company h2 {
  max-width: 410px;
  margin: 0 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.company-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: center;
  gap: 1.35rem;
}

.ownership-badge {
  width: 130px;
  height: auto;
  display: block;
  justify-self: end;
  margin: 0;
  filter: drop-shadow(0 10px 16px rgba(18, 63, 42, 0.14));
}

.company-description {
  max-width: 370px;
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.55;
}

.contact-methods {
  padding: clamp(2.2rem, 5vw, 4rem);
  display: grid;
  align-content: center;
}

.contact-method { padding: 0.8rem 0 2.1rem; }

.contact-method + .contact-method {
  padding: 2.1rem 0 0.4rem;
  border-top: 1px solid var(--line);
}

.contact-method h3 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.contact-method p,
.contact-method address {
  margin: 0;
  font-size: 1.06rem;
  font-style: normal;
  line-height: 1.55;
}

.contact-email {
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.82rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest);
  background: rgba(73, 111, 77, 0.09);
  border: 1px solid rgba(73, 111, 77, 0.22);
  border-radius: 3px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: white;
  background: var(--forest);
  transform: translateY(-1px);
}

.faq-main {
  min-height: calc(100vh - 104px);
  background:
    radial-gradient(circle at 8% 34%, rgba(184, 145, 61, 0.08), transparent 25rem),
    radial-gradient(circle at 92% 66%, rgba(73, 111, 77, 0.1), transparent 30rem),
    #f8f4e9;
}

.faq-hero {
  padding: clamp(3.2rem, 7vw, 5.8rem) 7vw clamp(2.8rem, 6vw, 4.6rem);
  background-image:
    linear-gradient(rgba(248, 246, 233, 0.86), rgba(248, 246, 233, 0.95)),
    url("hero-botanical.png");
  background-size: cover;
  background-position: center 57%;
  border-bottom: 1px solid var(--line);
}

.faq-hero-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq-kicker {
  margin: 0 0 0.55rem;
  color: var(--leaf);
  font: 600 0.86rem/1.3 Montserrat, Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.faq-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6.6vw, 5.7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.faq-hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin: 1.15rem auto 0;
  background: linear-gradient(90deg, transparent, #a67d32 22%, #a67d32 78%, transparent);
}

.faq-intro {
  max-width: 650px;
  margin: 0.85rem auto 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.faq-search {
  width: min(780px, 100%);
  margin: 2rem auto 0;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(23, 56, 45, 0.16);
  border-radius: 9px;
  box-shadow: 0 16px 40px rgba(18, 63, 42, 0.1);
}

.faq-search-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(23, 56, 45, 0.28);
  border-radius: 5px;
}

.faq-search-control:focus-within {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(73, 111, 77, 0.14);
}

.faq-search-icon {
  width: 22px;
  height: 22px;
  margin-left: 1rem;
  color: var(--leaf);
}

.faq-search-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.faq-search-control input {
  min-width: 0;
  min-height: 56px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: 1rem/1.3 Georgia, "Times New Roman", serif;
}

.faq-search-control input::placeholder { color: #758078; opacity: 1; }

.faq-search-control button {
  align-self: stretch;
  min-width: 128px;
  padding: 0.8rem 1.4rem;
  color: white;
  background: var(--forest);
  border: 0;
  cursor: pointer;
  font: 600 0.78rem/1 Montserrat, Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.faq-search-control button:hover,
.faq-search-control button:focus-visible { background: #0d5232; }

.faq-search-hint {
  margin: 0.7rem 0 0;
  color: #637168;
  font-size: 0.86rem;
  line-height: 1.4;
}

.faq-search-status {
  min-height: 1.3rem;
  margin: 0.35rem 0 0;
  color: var(--leaf);
  font: 600 0.75rem/1.4 Montserrat, Arial, sans-serif;
  letter-spacing: 0.02em;
}

.faq-content {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.faq-list { display: grid; gap: 0.85rem; }

.faq-item {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(23, 56, 45, 0.15);
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(18, 63, 42, 0.045);
}

.faq-item[hidden] { display: none; }

.faq-item summary {
  min-height: 68px;
  padding: 1.2rem 4.2rem 1.2rem 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--forest-deep);
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
}

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

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(73, 111, 77, 0.1);
  border: 1px solid rgba(73, 111, 77, 0.2);
  border-radius: 50%;
  font: 400 1.35rem/1 Georgia, serif;
  transform: translateY(-50%);
}

.faq-item[open] {
  border-color: rgba(73, 111, 77, 0.34);
  box-shadow: 0 12px 30px rgba(18, 63, 42, 0.08);
}

.faq-item[open] summary::after { content: "−"; }

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  border-top: 1px solid rgba(23, 56, 45, 0.1);
}

.faq-answer p {
  max-width: 820px;
  margin: 1.1rem 0 0;
  color: #385246;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer a { color: var(--forest); font-weight: 600; }

.faq-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-empty[hidden] { display: none; }
.faq-empty h2 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.faq-empty p { margin: 0.4rem 0 0; }
.faq-empty a { color: var(--forest); font-weight: 600; }

.coming-soon-main {
  min-height: calc(100vh - 104px);
  padding: clamp(2rem, 6vw, 5.5rem) 7vw;
  display: grid;
  place-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(73, 111, 77, 0.14), transparent 28rem),
    linear-gradient(135deg, #fffdf7, #f3eddf);
}

.coming-soon-card {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(23, 56, 45, 0.13);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(18, 63, 42, 0.12);
}

.coming-soon-visual {
  min-height: 520px;
  background: #ede8dc;
}

.coming-soon-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-copy {
  padding: clamp(2.4rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.coming-soon-copy .eyebrow {
  margin: 0 0 0.65rem;
  color: var(--leaf);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: 0.88;
}

.coming-soon-copy h2 {
  margin: 1.25rem 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.08;
}

.coming-soon-copy p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 auto 1.6rem;
  font-size: 1.08rem;
}

.coming-soon-copy .button { align-self: center; }

.newsletter-section {
  padding: clamp(2rem, 3.5vw, 3.2rem) 7vw;
  color: #3f413f;
  text-align: center;
  background: linear-gradient(180deg, #fffef9 0%, #f8f6ed 100%);
  border-top: 1px solid rgba(73, 111, 77, 0.18);
  border-bottom: 1px solid rgba(73, 111, 77, 0.14);
}

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

.newsletter-copy h2 {
  margin: 0;
  font-family: Allura, "Segoe Script", cursive;
  font-size: clamp(2.25rem, 3.9vw, 3.55rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.newsletter-copy h2 strong { color: #7f9b6c; font-weight: 400; }

.newsletter-copy > p {
  max-width: 640px;
  margin: clamp(0.65rem, 1.6vw, 1rem) auto clamp(1rem, 2vw, 1.35rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.035em;
}

.newsletter-form {
  width: min(660px, 100%);
  margin: 0 auto;
}

.newsletter-email {
  position: relative;
  display: block;
}

.newsletter-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.newsletter-form .newsletter-email input {
  width: 100%;
  min-height: 54px;
  padding: 0.72rem 1.3rem;
  color: #354039;
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid #879f75;
  border-radius: 0;
  font: 600 clamp(0.92rem, 1.6vw, 1.12rem)/1.2 Montserrat, Arial, sans-serif;
  letter-spacing: 0.14em;
}

.newsletter-form .newsletter-email input::placeholder {
  color: #84917f;
  opacity: 1;
}

.newsletter-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 0.65rem;
  padding: 0.72rem 1.3rem;
  color: white;
  background: #829b6d;
  border: 2px solid #829b6d;
  border-radius: 0;
  cursor: pointer;
  font: 700 clamp(0.92rem, 1.6vw, 1.12rem)/1 Montserrat, Arial, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.newsletter-submit:hover,
.newsletter-submit:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
}

.newsletter-preferences {
  margin: 0.65rem auto 0;
  color: #657067;
}

.newsletter-preferences summary {
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  font: 600 0.76rem/1.3 Montserrat, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-preferences summary span {
  color: #7a827c;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.newsletter-optional-fields {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.9rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(73, 111, 77, 0.18);
}

.newsletter-optional-fields label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.newsletter-optional-fields input,
.newsletter-optional-fields select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(73, 111, 77, 0.42);
  border-radius: 0;
  font: 1rem/1.2 Georgia, serif;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  outline: 2px solid rgba(73, 111, 77, 0.28);
  outline-offset: 2px;
  border-color: var(--leaf);
}

.newsletter-consent {
  max-width: 700px;
  margin: 0.7rem auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
  color: #575d59;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.45;
}

.newsletter-consent input { width: 17px; height: 17px; margin-top: 0.22rem; flex: 0 0 auto; accent-color: var(--forest); }

.newsletter-status { min-height: 0.8rem; margin: 0.35rem 0 0; color: var(--leaf); font-size: 0.86rem; font-weight: 600; }
.newsletter-status.is-error { color: #9c382f; }
.newsletter-form button:disabled { cursor: wait; opacity: 0.65; }

.newsletter-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

body.signup-popup-open { overflow: hidden; }

.signup-popup {
  width: min(520px, calc(100% - 2rem));
  max-height: min(90dvh, 720px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background:
    linear-gradient(#fffdf7, #fffdf7) padding-box,
    linear-gradient(125deg, #c99a44, #789c72 52%, #c97f62) border-box;
  border: 2px solid transparent;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(5, 34, 21, 0.3);
}

.signup-popup::backdrop {
  background: rgba(7, 34, 22, 0.62);
  backdrop-filter: blur(3px);
}

.signup-popup-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
  background:
    radial-gradient(circle at 4% 5%, rgba(226, 178, 84, 0.24), transparent 12rem),
    radial-gradient(circle at 96% 15%, rgba(118, 157, 108, 0.24), transparent 13rem),
    radial-gradient(circle at 18% 100%, rgba(198, 116, 83, 0.15), transparent 12rem),
    linear-gradient(155deg, #fffef9 20%, #f7f5e8 72%, #fff8ec);
}

.signup-popup-inner::before,
.signup-popup-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.signup-popup-inner::before {
  top: -92px;
  right: -60px;
  background: radial-gradient(circle, rgba(225, 164, 61, 0.34), rgba(225, 164, 61, 0));
}

.signup-popup-inner::after {
  bottom: -100px;
  left: -52px;
  background: radial-gradient(circle, rgba(187, 105, 78, 0.23), rgba(187, 105, 78, 0));
}

.signup-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #496253;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font: 400 1.8rem/1 Arial, sans-serif;
}

.signup-popup-close:hover,
.signup-popup-close:focus-visible { background: rgba(73, 111, 77, 0.1); }

.signup-popup-eyebrow {
  margin: 0 0 0.25rem;
  color: #7c713c;
  font: 600 0.72rem/1.3 Montserrat, Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signup-popup h2 {
  margin: 0;
  color: var(--forest);
  font: 400 clamp(2.5rem, 8vw, 3.75rem)/1 Allura, "Segoe Script", cursive;
}

.signup-popup-copy {
  max-width: 410px;
  margin: 0.45rem auto 1rem;
  color: #4b5d53;
  font-size: 1rem;
  line-height: 1.5;
}

.signup-popup-form {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.67);
  border: 1px solid rgba(174, 139, 67, 0.28);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(38, 68, 45, 0.08);
  backdrop-filter: blur(3px);
}

.signup-popup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  text-align: left;
}

.signup-popup-fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font: 600 0.78rem/1.3 Montserrat, Arial, sans-serif;
  letter-spacing: 0.02em;
}

.signup-popup-fields input {
  width: 100%;
  min-height: 40px;
  padding: 0.52rem 0.72rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(73, 111, 77, 0.42);
  border-radius: 5px;
  font: 1rem/1.2 Georgia, serif;
}

.signup-popup-fields input:focus {
  outline: 2px solid rgba(73, 111, 77, 0.28);
  outline-offset: 2px;
  border-color: var(--leaf);
}

.signup-popup-consent {
  margin-top: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #5b675f;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

.signup-popup-consent input {
  width: 17px;
  height: 17px;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.signup-popup-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 1rem;
  color: white;
  background: linear-gradient(105deg, #0c4a2f, #2f6a45);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: 700 0.84rem/1 Montserrat, Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(12, 74, 47, 0.18);
}

.signup-popup-submit:hover,
.signup-popup-submit:focus-visible { background: #0b5130; }
.signup-popup-submit:disabled { cursor: wait; opacity: 0.65; }

.signup-popup-status {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 600;
}

.signup-popup-status.is-error { color: #9c382f; }

.site-footer {
  padding: 2rem 7vw 1rem;
  color: #f9f3df;
  background: linear-gradient(115deg, #0e3a26, #092c1d);
}

.footer-grid {
  max-width: 1210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand img {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(95%) sepia(12%) saturate(625%) hue-rotate(334deg) brightness(105%);
  opacity: 0.95;
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a { display: block; width: max-content; font-size: 0.9rem; line-height: 1.45; text-decoration: none; }
.site-footer a:hover,
.site-footer a:focus-visible { text-decoration: underline; }

.social-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.social-row a {
  min-width: 1.55rem;
  min-height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.social-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}
.footer-note {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-note p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.footer-leaf-mark {
  width: 44px;
  height: 36px;
  display: block;
  flex: 0 0 44px;
  overflow: hidden;
}

.footer-leaf-mark img {
  width: 208px;
  max-width: none;
  height: auto;
  filter: brightness(0) invert(95%) sepia(12%) saturate(625%) hue-rotate(334deg) brightness(105%);
}
.copyright { margin: 1.2rem auto 0; text-align: center; font-size: 0.75rem; opacity: 0.84; }

@media (max-width: 980px) {
  .site-header {
    min-height: 90px;
    grid-template-columns: 1fr auto auto;
    padding: 0 1.4rem;
    gap: 1rem;
  }

  .brand { width: 285px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1rem 1.5rem 1.4rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(18, 63, 42, 0.08);
  }

  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; text-align: center; }

  .hero { min-height: 540px; background-position: 58% center; }
  .hero-content { width: min(560px, 62vw); margin-left: 5vw; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article:nth-child(3) { border-left: 0; }
  .value-grid article { padding: 1rem 1.5rem; }
  .founder-letter { padding-left: 4vw; padding-right: 4vw; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-left: 4vw; padding-right: 4vw; gap: 1.5rem; }
  .product-copy { min-height: 29rem; padding-left: 1.3rem; padding-right: 1.3rem; }
  .contact-panel { grid-template-columns: 1fr; }
  .coming-soon-card { grid-template-columns: 1fr; }
  .standalone-review { grid-template-columns: 1fr; gap: 1.5rem; }
  .coming-soon-visual { min-height: auto; aspect-ratio: 16 / 10; }
  .contact-company {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { grid-template-columns: 1fr auto; }
  .brand { width: min(255px, 70vw); }
  .menu-toggle { order: 2; }
  .header-actions { display: none; }

  .hero {
    min-height: 655px;
    align-items: end;
    background-image:
      linear-gradient(0deg, rgba(249,247,237,0.99) 0%, rgba(249,247,237,0.94) 45%, rgba(249,247,237,0.1) 72%),
      url("hero-botanical.png");
    background-size: auto 100%, auto 100%;
    background-position: center, 64% center;
  }

  .hero-content { width: auto; margin: 0; padding: 17rem 1.4rem 2.6rem; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .hero p { font-size: 1rem; }
  .values { padding: 2rem 1rem; }
  .section-heading h2 br { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 0; border-left: 0; border-top: 1px solid var(--line); padding: 1.25rem 0.75rem; }
  .value-grid article:first-child { border-top: 0; }
  .founder-letter { padding: 1.4rem 1rem; }
  .letter-sheet { padding: 4.2rem 1.3rem 3rem; transform: rotate(-0.22deg); }
  .letter-botanical { top: 1rem; right: 0.8rem; width: 58px; height: 48px; }
  .letter-botanical img { width: 278px; }
  .letter-sheet h1,
  .letter-sheet h2 { margin-bottom: 1.6rem; font-size: clamp(3rem, 15vw, 4rem); }
  .letter-copy { font-size: 1.42rem; line-height: 1.28; }
  .letter-copy p:nth-child(n) { margin-left: 0; }
  .letter-signoff { margin-right: 0; font-size: 1.42rem; }
  .letter-signature { font-size: 3.35rem; }
  .signature-botanical { width: 50px; height: 40px; }
  .signature-botanical img { width: 235px; }
  .letter-title { font-size: 1.2rem; }
  .letter-email { margin-top: 1.7rem; padding-left: 0; padding-right: 0; gap: 0.35rem; font-size: 1.02rem; }
  .products { grid-template-columns: 1fr; padding: 1.3rem; }
  .product-image { aspect-ratio: 1 / 1; }
  .product-copy { min-height: 0; padding: 1.1rem 1.15rem 1.4rem; }
  .review-section summary { align-items: flex-start; flex-direction: column; gap: 0.2rem; }
  .review-fields { grid-template-columns: 1fr; }
  .standalone-review { padding: 1.6rem 1.25rem; border-radius: 7px; }
  .coming-soon-badge { top: 0.8rem; right: 0.8rem; padding: 0.55rem 0.85rem; font-size: 0.72rem; }
  .coming-soon-main { min-height: auto; padding: 1.2rem; }
  .coming-soon-card { border-radius: 7px; }
  .coming-soon-visual { aspect-ratio: 1 / 1; }
  .coming-soon-copy { padding: 2.4rem 1.4rem 2.7rem; }
  .coming-soon-copy h1 { font-size: clamp(3.25rem, 16vw, 4.6rem); }
  .coming-soon-copy p:not(.eyebrow) { font-size: 1rem; }
  .contact-hero { min-height: 230px; padding: 2.7rem 1.3rem; }
  .contact-hero h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .contact-hero p:last-child { font-size: 1rem; }
  .contact-details { padding: 1.4rem 1rem 2.3rem; }
  .contact-panel { border-radius: 6px; }
  .contact-company { padding: 2rem 1.6rem 2.2rem; }
  .contact-company h2 { margin-bottom: 1rem; font-size: 1.8rem; }
  .company-summary { grid-template-columns: minmax(0, 1fr) 110px; gap: 1rem; }
  .ownership-badge { width: 110px; }
  .company-description { font-size: 1rem; }
  .contact-methods { padding: 1.4rem 1.6rem 1.8rem; }
  .contact-method { padding: 0.6rem 0 1.5rem; }
  .contact-method + .contact-method { padding: 1.5rem 0 0.2rem; }
  .contact-method h3 { font-size: 1.8rem; }
  .contact-email { width: 100%; gap: 0.65rem; font-size: 0.82rem; }
  .faq-hero { padding: 2.8rem 1rem 2.4rem; }
  .faq-hero h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .faq-intro { font-size: 1rem; }
  .faq-search { margin-top: 1.5rem; padding: 0.7rem; }
  .faq-search-control { grid-template-columns: auto minmax(0, 1fr); }
  .faq-search-control button { min-height: 48px; grid-column: 1 / -1; }
  .faq-search-icon { margin-left: 0.8rem; }
  .faq-search-control input { min-height: 52px; padding-left: 0.75rem; }
  .faq-search-hint { padding: 0 0.35rem; font-size: 0.8rem; }
  .faq-content { width: min(100% - 1.4rem, 980px); padding: 1.8rem 0 2.5rem; }
  .faq-item summary { min-height: 62px; padding: 1rem 3.6rem 1rem 1.1rem; font-size: 1.22rem; }
  .faq-item summary::after { right: 0.9rem; }
  .faq-answer { padding: 0 1.1rem 1.15rem; }
  .faq-answer p { font-size: 1rem; line-height: 1.55; }
  .brand-banner { min-height: 160px; padding: 1rem; justify-content: center; }
  .brand-banner div { margin: 0; }
  .newsletter-section { padding: 2rem 1.2rem; }
  .newsletter-copy h2 { font-size: clamp(2.15rem, 11vw, 3rem); letter-spacing: 0.01em; }
  .newsletter-copy > p { font-size: 1.2rem; }
  .newsletter-form .newsletter-email input,
  .newsletter-submit { min-height: 52px; }
  .newsletter-form .newsletter-email input { padding: 0.85rem 1.1rem; letter-spacing: 0.09em; }
  .newsletter-optional-fields { grid-template-columns: 1fr; }
  .newsletter-consent { font-size: 1rem; }
  .signup-popup { width: min(94vw, 500px); border-radius: 12px; }
  .signup-popup-inner { padding: 2.3rem 1.25rem 1.5rem; }
  .signup-popup h2 { font-size: clamp(2.55rem, 15vw, 3.3rem); }
  .signup-popup-copy { margin-bottom: 1rem; }
  .signup-popup-fields { grid-template-columns: 1fr; gap: 0.7rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
