:root {
  --vg-ivory: #fbf8f4;
  --vg-ivory-deep: #f3ece5;
  --vg-white: #ffffff;
  --vg-bronze: #9a563a;
  --vg-bronze-dark: #78402c;
  --vg-bronze-soft: #d7b19d;
  --vg-burgundy: #6f2335;
  --vg-burgundy-dark: #4d1624;
  --vg-charcoal: #272321;
  --vg-muted: #6e6560;
  --vg-line: rgba(79, 48, 38, 0.14);
  --vg-success: #286645;
  --vg-success-soft: #e8f4ec;
  --vg-warning: #936412;
  --vg-warning-soft: #fff6dc;
  --vg-error: #8b2838;
  --vg-error-soft: #fcebef;
  --vg-shadow-sm: 0 10px 30px rgba(72, 43, 35, 0.08);
  --vg-shadow-md: 0 24px 70px rgba(72, 43, 35, 0.13);
  --vg-radius-sm: 0.75rem;
  --vg-radius-md: 1.25rem;
  --vg-radius-lg: 2rem;
  --vg-container: 75rem;
  --vg-gutter: clamp(1.125rem, 4vw, 2.5rem);
  --vg-section-space: clamp(4.5rem, 9vw, 8rem);
  --vg-heading: "Marcellus", Georgia, "Times New Roman", serif;
  --vg-body: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  scrollbar-gutter: stable;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--vg-ivory);
  color: var(--vg-charcoal);
  font-family: var(--vg-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
[type="button"],
[type="submit"] {
  -webkit-appearance: button;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--vg-charcoal);
  font-family: var(--vg-heading);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.15rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--vg-burgundy);
  color: var(--vg-white);
}

:focus-visible {
  outline: 3px solid rgba(154, 86, 58, 0.48);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - (var(--vg-gutter) * 2)), var(--vg-container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--vg-charcoal);
  color: var(--vg-white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Announcement and navigation */
.announcement {
  position: relative;
  z-index: 52;
  background: var(--vg-burgundy);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.77rem;
  letter-spacing: 0.055em;
}

.announcement-inner {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  padding-block: 0.5rem;
  text-align: center;
}

.announcement-inner > p {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-message {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-contact {
  display: none;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.announcement-links {
  display: none;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.announcement-links a + a {
  position: relative;
  padding-left: 1rem;
}

.announcement-links a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  content: "";
  transform: translateY(-50%);
}

.announcement a {
  color: var(--vg-white);
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--vg-line);
  background: rgba(251, 248, 244, 0.94);
  box-shadow: 0 4px 25px rgba(72, 43, 35, 0.035);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--vg-burgundy);
  font-family: var(--vg-heading);
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}

.brand img,
.brand svg {
  width: auto;
  height: clamp(2.25rem, 4vw, 3.1rem);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.35rem, 2.5vw, 2.5rem);
}

.nav-link {
  position: relative;
  padding-block: 0.45rem;
  color: var(--vg-charcoal);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.1rem;
  left: 0;
  height: 1px;
  background: var(--vg-bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-link.is-active {
  color: var(--vg-burgundy);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions > .btn {
  display: none;
}

.desktop-verify {
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--vg-line);
  border-radius: 50%;
  background: var(--vg-white);
  color: var(--vg-burgundy);
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: var(--vg-bronze-soft);
  background: var(--vg-ivory-deep);
}

.icon-button {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--vg-line);
  border-radius: 50%;
  background: var(--vg-white);
  color: var(--vg-burgundy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--vg-bronze-soft);
  background: var(--vg-ivory-deep);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, background-color 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  transform: translateY(-0.36rem);
}

.menu-icon::after {
  transform: translateY(0.36rem);
}

[data-menu-close] .menu-icon {
  background: transparent;
}

[data-menu-close] .menu-icon::before {
  transform: rotate(45deg);
}

[data-menu-close] .menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(88vw, 25rem);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-backdrop {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(39, 35, 33, 0.55);
  cursor: pointer;
  opacity: 0;
  transition: opacity 260ms ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: max(1.25rem, env(safe-area-inset-top)) 1.35rem max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  background: var(--vg-ivory);
  box-shadow: -20px 0 60px rgba(39, 35, 33, 0.2);
  transform: translateX(102%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-head,
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vg-line);
}

.mobile-nav-links {
  display: grid;
  gap: 0;
  margin-top: 1.2rem;
}

.mobile-nav-links .nav-link,
.mobile-nav-links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--vg-line);
  font-family: var(--vg-heading);
  font-size: 1.35rem;
  font-weight: 400;
  text-decoration: none;
}

.mobile-nav-links > a:hover,
.mobile-nav-links > a[aria-current="page"],
.mobile-nav-links > a.is-active {
  color: var(--vg-burgundy);
}

.mobile-nav-links .nav-link::after,
.mobile-nav-links > a::after {
  display: none;
}

.mobile-nav-links .btn,
.mobile-nav-panel > .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.mobile-nav.is-open,
.mobile-nav[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav-backdrop,
.mobile-nav[aria-hidden="false"] .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav-panel,
.mobile-nav[aria-hidden="false"] .mobile-nav-panel {
  transform: translateX(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.78rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.btn-primary {
  background: var(--vg-burgundy);
  color: var(--vg-white);
  box-shadow: 0 10px 24px rgba(111, 35, 53, 0.18);
}

.btn-primary:hover {
  background: var(--vg-burgundy-dark);
  color: var(--vg-white);
  box-shadow: 0 14px 30px rgba(111, 35, 53, 0.24);
}

.btn-secondary {
  border-color: rgba(111, 35, 53, 0.42);
  background: transparent;
  color: var(--vg-burgundy);
}

.btn-secondary:hover {
  border-color: var(--vg-burgundy);
  background: var(--vg-burgundy);
  color: var(--vg-white);
}

.btn-ghost {
  border-color: rgba(111, 35, 53, 0.28);
  background: transparent;
  color: var(--vg-burgundy);
}

.btn-ghost:hover {
  border-color: var(--vg-burgundy);
  background: var(--vg-white);
  color: var(--vg-burgundy);
}

.btn-light {
  background: var(--vg-white);
  color: var(--vg-burgundy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: var(--vg-ivory-deep);
  color: var(--vg-burgundy-dark);
}

.section-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--vg-white);
}

.section-dark .btn-ghost:hover {
  border-color: var(--vg-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--vg-white);
}

.section-dark .btn-primary {
  background: var(--vg-white);
  color: var(--vg-charcoal);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.section-dark .btn-primary:hover {
  background: var(--vg-ivory-deep);
  color: var(--vg-charcoal);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.section-dark .btn-secondary {
  border-color: var(--vg-bronze-soft);
  background: transparent;
  color: #f2d7c8;
}

.section-dark .btn-secondary:hover {
  border-color: #f2d7c8;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vg-white);
}

.text-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vg-burgundy);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(111, 35, 53, 0.35);
  text-underline-offset: 0.24em;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--vg-bronze-dark);
  text-decoration-color: currentColor;
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 12%, rgba(154, 86, 58, 0.15), transparent 31rem),
    linear-gradient(135deg, #fffdfb 0%, var(--vg-ivory) 55%, #f2e7df 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(154, 86, 58, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 24rem;
  height: 24rem;
  top: -13rem;
  left: -10rem;
}

.hero::after {
  width: 36rem;
  height: 36rem;
  right: -21rem;
  bottom: -22rem;
}

.hero-grid,
.hero > .container {
  display: grid;
  min-height: min(49rem, calc(100svh - 8rem));
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  padding-block: clamp(3.5rem, 8vw, 7.25rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
}

.hero-copy > p:not(.eyebrow):not(.hero-note) {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--vg-muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.hero-lead {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--vg-muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--vg-bronze-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: var(--vg-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-note::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  margin-top: 0.36rem;
  border-radius: 50%;
  background: var(--vg-bronze);
  content: "";
}

.hero-note:not(p) {
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.hero-note:not(p)::before {
  display: none;
}

.hero-note:not(p) span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-note:not(p) span::before {
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--vg-bronze);
  content: "";
}

.hero-media {
  position: relative;
  min-height: clamp(22rem, 72vw, 36rem);
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.14);
  border-radius: clamp(2rem, 8vw, 8rem) clamp(2rem, 8vw, 8rem) 2rem 2rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #eeded2, #cfa890);
  box-shadow: var(--vg-shadow-md);
}

.hero-media::after {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-media img,
.hero-media picture {
  width: 100%;
  height: 100%;
}

.hero-media-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media > img {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  display: grid;
  width: 7.3rem;
  height: 7.3rem;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(111, 35, 53, 0.91);
  box-shadow: 0 14px 36px rgba(62, 22, 32, 0.25);
  color: var(--vg-white);
  text-align: center;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.hero-badge strong {
  font-family: var(--vg-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.hero-badge span {
  max-width: 8ch;
  margin-top: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Sections and shared cards */
.section {
  padding-block: var(--vg-section-space);
}

.section-soft {
  background: var(--vg-ivory-deep);
}

.section-dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 86, 58, 0.22), transparent 28rem),
    var(--vg-charcoal);
  color: rgba(255, 255, 255, 0.74);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section-heading {
  color: var(--vg-white);
}

.section-dark .eyebrow {
  color: #e0af95;
}

.section-heading {
  max-width: 18ch;
  margin-bottom: 1.15rem;
}

.section-heading:not(h1):not(h2):not(h3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: none;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-heading:not(h1):not(h2):not(h3) :is(h1, h2, h3) {
  max-width: 18ch;
}

.section-heading:not(h1):not(h2):not(h3) :is(h1, h2, h3) {
  margin-bottom: 0;
}

.section-heading:not(h1):not(h2):not(h3) .eyebrow {
  margin-bottom: 0.75rem;
}

.section-heading:not(h1):not(h2):not(h3).centered {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.section-heading:not(h1):not(h2):not(h3).centered :is(h1, h2, h3),
.section-heading:not(h1):not(h2):not(h3).centered .section-copy {
  margin-inline: auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.section-copy {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--vg-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section-intro .btn {
  flex: 0 0 auto;
}

.product-grid,
.feature-grid,
.testimonial-grid,
.steps,
.content-grid,
.ingredient-grid,
.contact-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(72, 43, 35, 0.045);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(154, 86, 58, 0.34);
  box-shadow: var(--vg-shadow-sm);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  display: grid;
  min-height: 18rem;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98), transparent 35%),
    linear-gradient(145deg, #f6eee8, #e6d1c4);
}

.product-card-media::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(154, 86, 58, 0.09);
  border-radius: calc(var(--vg-radius-md) - 0.35rem);
  content: "";
  pointer-events: none;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  max-height: 22rem;
  padding: clamp(1rem, 3vw, 2rem);
  object-fit: contain;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-media img[src$="-studio.jpg"] {
  max-height: none;
  padding: 0;
  object-fit: cover;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(111, 35, 53, 0.92);
  color: var(--vg-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.product-card-body h3 {
  margin-bottom: 0.7rem;
}

.product-card-body h3 a {
  text-decoration: none;
}

.product-card-body h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.product-card-body p {
  margin-bottom: 1.2rem;
  color: var(--vg-muted);
  font-size: 0.94rem;
}

.product-actions {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.product-actions .btn {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
}

.feature-card,
.content-card,
.ingredient-card,
.contact-card,
.step-card {
  position: relative;
  height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card {
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.feature-card > .product-tag {
  position: static;
  display: inline-flex;
  margin: 0 0 1.1rem;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.feature-card:hover {
  border-color: rgba(154, 86, 58, 0.28);
  background: var(--vg-white);
  transform: translateY(-3px);
}

.content-card > .steps {
  grid-template-columns: minmax(0, 1fr);
}

.feature-card-icon,
.ingredient-card-icon,
.contact-card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(154, 86, 58, 0.11);
  color: var(--vg-bronze-dark);
}

.feature-card-icon svg,
.ingredient-card-icon svg,
.contact-card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.feature-card h3,
.content-card h3,
.ingredient-card h3,
.contact-card h3,
.step-card h3 {
  margin-bottom: 0.65rem;
}

.feature-card p,
.content-card p,
.ingredient-card p,
.contact-card p,
.step-card p {
  margin: 0;
  color: var(--vg-muted);
  font-size: 0.94rem;
}

.feature-number,
.ingredient-card > span:first-child {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--vg-bronze);
  font-family: var(--vg-heading);
  font-size: 1.4rem;
  line-height: 1;
}

.section-dark .feature-card,
.section-dark .content-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.section-dark .feature-card p,
.section-dark .content-card p {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2.2rem, 7vw, 6rem);
}

.split-media {
  position: relative;
  min-height: clamp(22rem, 75vw, 37rem);
  overflow: hidden;
  border-radius: var(--vg-radius-lg);
  background: linear-gradient(145deg, #ebd9ce, #cfa68f);
  box-shadow: var(--vg-shadow-md);
}

.split-media::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: calc(var(--vg-radius-lg) - 0.6rem);
  content: "";
  pointer-events: none;
}

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

.split-copy {
  max-width: 37rem;
}

.split-copy h2 {
  margin-bottom: 1.25rem;
}

.split-copy > p {
  color: var(--vg-muted);
}

.split-copy .btn {
  margin-top: 1rem;
}

.text-split {
  align-items: stretch;
}

.text-split .split-copy,
.text-split .callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card {
  position: relative;
  height: 100%;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-md);
  background: var(--vg-white);
  box-shadow: var(--vg-shadow-sm);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--vg-bronze);
  font-family: var(--vg-heading);
  font-size: 3.25rem;
  line-height: 0.65;
  content: "“";
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--vg-charcoal);
  font-family: var(--vg-heading);
  font-size: clamp(1.13rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.testimonial-card footer {
  margin-top: 1.4rem;
  color: var(--vg-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-card figcaption {
  display: grid;
  gap: 0.1rem;
  margin-top: 1.4rem;
  color: var(--vg-muted);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.testimonial-card figcaption strong {
  color: var(--vg-charcoal);
  font-size: 0.84rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: vg-step;
}

.step-card {
  counter-increment: vg-step;
  padding-top: 4.75rem;
}

.step-card::before {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #651b2f;
  background: #651b2f;
  color: #ffffff !important;
  content: counter(vg-step, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.steps + .callout {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

/* Interior and product pages */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(1rem, 1.75vw, 1.5rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--vg-line);
  background:
    radial-gradient(circle at 83% 18%, rgba(154, 86, 58, 0.18), transparent 25rem),
    linear-gradient(130deg, #fffdfb, #f1e5dc);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  right: -8rem;
  bottom: -15rem;
  border: 1px solid rgba(154, 86, 58, 0.15);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.15rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  color: var(--vg-muted);
  font-size: 1.07rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
  color: var(--vg-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--vg-bronze-soft);
  content: "/";
}

.breadcrumbs a {
  color: var(--vg-burgundy);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.product-hero {
  position: relative;
  padding-block: clamp(3.25rem, 7vw, 6.75rem);
  background: linear-gradient(135deg, #fffdfb, var(--vg-ivory));
}

.product-hero > .container,
.product-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.product-hero-media {
  position: relative;
  display: grid;
  min-height: clamp(24rem, 80vw, 40rem);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-lg);
  background:
    radial-gradient(circle at 50% 36%, #fff 0%, rgba(255, 255, 255, 0.45) 29%, transparent 52%),
    linear-gradient(145deg, #f1e3da, #d8b7a5);
  box-shadow: var(--vg-shadow-md);
}

.product-hero-media::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--vg-radius-lg) - 0.55rem);
  content: "";
  pointer-events: none;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 42rem;
  padding: clamp(1rem, 4vw, 2.75rem);
  object-fit: contain;
}

.product-hero-media img[src$="-studio.jpg"] {
  max-height: none;
  padding: 0;
  object-fit: cover;
}

.product-summary h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 3.9vw, 3.9rem);
}

.product-summary > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--vg-muted);
  font-size: 1.05rem;
}

.product-intro {
  max-width: 38rem;
  color: var(--vg-muted);
  font-size: 1.05rem;
}

.product-summary .hero-actions,
.product-summary .product-actions {
  margin-top: 1.7rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.product-meta > * {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--vg-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--vg-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.product-highlights {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--vg-charcoal);
  font-size: 0.94rem;
}

.product-highlights li::before {
  position: absolute;
  top: 0.58rem;
  left: 0.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--vg-bronze);
  border-radius: 50%;
  content: "";
}

.content-grid {
  align-items: stretch;
}

.compact-grid {
  gap: 1rem;
}

.content-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.content-card > :last-child {
  margin-bottom: 0;
}

.ingredient-card {
  background: var(--vg-white);
}

.ingredient-card h3 {
  font-size: 1.25rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.28rem;
  left: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--vg-success-soft);
  color: var(--vg-success);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.05rem;
  text-align: center;
}

.numbered-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0;
  padding: 0;
  counter-reset: vg-list;
  list-style: none;
}

.numbered-list li {
  position: relative;
  min-height: 1.7rem;
  padding-left: 2.25rem;
  counter-increment: vg-list;
}

.numbered-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(154, 86, 58, 0.11);
  color: var(--vg-bronze-dark);
  content: counter(vg-list);
  font-size: 0.7rem;
  font-weight: 700;
}

.fine-print {
  padding-top: 1rem;
  border-top: 1px solid var(--vg-line);
  color: var(--vg-muted);
  font-size: 0.78rem !important;
  line-height: 1.55;
}

.callout {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(154, 86, 58, 0.2);
  border-left: 4px solid var(--vg-bronze);
  border-radius: var(--vg-radius-md);
  background: linear-gradient(135deg, var(--vg-white), #f4e9e2);
  box-shadow: var(--vg-shadow-sm);
}

.callout h2,
.callout h3 {
  margin-bottom: 0.65rem;
}

.callout p {
  color: var(--vg-muted);
}

.callout-large {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.callout-large > strong:first-child {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--vg-charcoal);
  font-family: var(--vg-heading);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 400;
  line-height: 1.2;
}

.details-list {
  overflow: hidden;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-md);
  background: rgba(255, 255, 255, 0.65);
}

.details-list details + details,
.details-list > div + div {
  border-top: 1px solid var(--vg-line);
}

.details-list summary {
  position: relative;
  padding: 1.2rem 3.25rem 1.2rem 1.35rem;
  font-family: var(--vg-heading);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
}

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

.details-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.35rem;
  color: var(--vg-bronze);
  content: "+";
  font-family: var(--vg-body);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.details-list details > :not(summary) {
  margin-inline: 1.35rem;
}

.details-list details > :last-child {
  margin-bottom: 1.35rem;
}

.details-list > div {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 1.35rem;
}

.details-list dt,
.details-list strong {
  color: var(--vg-charcoal);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--vg-muted);
}

.compare-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius-md);
  background: var(--vg-white);
  box-shadow: var(--vg-shadow-sm);
  overscroll-behavior-inline: contain;
}

.compare-table {
  width: 100%;
  min-width: 47rem;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--vg-line);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--vg-burgundy);
  color: var(--vg-white);
  font-size: 0.73rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.compare-table tbody th {
  color: var(--vg-charcoal);
  font-weight: 700;
}

.compare-table tbody td {
  color: var(--vg-muted);
  font-size: 0.9rem;
}

.compare-table tbody tr:last-child > * {
  border-bottom: 0;
}

.compare-table tbody tr:hover {
  background: rgba(154, 86, 58, 0.045);
}

.compare-table a {
  color: var(--vg-burgundy);
  text-decoration: none;
}

.compare-table a:hover {
  text-decoration: underline;
}

.verify-banner,
.contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.verify-banner > div:first-child,
.contact-strip > div:first-child {
  max-width: 46rem;
}

.verify-banner h2,
.contact-strip h2 {
  margin-bottom: 0.85rem;
}

.verify-banner p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.verify-banner .hero-actions,
.contact-strip .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.contact-strip {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(154, 86, 58, 0.2);
  border-radius: var(--vg-radius-lg);
  background: var(--vg-white);
  box-shadow: var(--vg-shadow-sm);
}

.contact-strip p:not(.eyebrow) {
  margin: 0;
  color: var(--vg-muted);
}

/* Contact and verification */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--vg-white);
  box-shadow: var(--vg-shadow-sm);
}

.contact-card a:not(.btn) {
  position: relative;
  z-index: 1;
  color: var(--vg-burgundy);
  font-weight: 700;
}

.contact-card .btn {
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.verify-shell {
  display: grid;
  min-height: 36rem;
  place-items: center;
  padding-block: var(--vg-section-space);
  background:
    radial-gradient(circle at 18% 10%, rgba(154, 86, 58, 0.16), transparent 24rem),
    linear-gradient(145deg, var(--vg-ivory), #efe2da);
}

.section > .verify-shell {
  min-height: 0;
  padding-block: 0;
  background: transparent;
}

.verify-card {
  width: min(100%, 42rem);
  padding: clamp(1.5rem, 5vw, 3.25rem);
  border: 1px solid rgba(154, 86, 58, 0.2);
  border-radius: var(--vg-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--vg-shadow-md);
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.verify-card h1,
.verify-card h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
}

.verify-card > p {
  max-width: 33rem;
  margin-inline: auto;
  color: var(--vg-muted);
}

.verify-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.65rem;
  text-align: left;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--vg-charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.form-field > p {
  margin: 0;
  color: var(--vg-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-field input,
.form-field textarea,
.form-field select,
.verify-form input {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(79, 48, 38, 0.23);
  border-radius: 0.85rem;
  outline: 0;
  background: var(--vg-white);
  color: var(--vg-charcoal);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.verify-form input::placeholder {
  color: #9b918b;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.verify-form input:focus {
  border-color: var(--vg-bronze);
  box-shadow: 0 0 0 4px rgba(154, 86, 58, 0.12);
}

.verify-form .btn {
  width: 100%;
}

.verification-result,
#verificationResult {
  display: grid;
  gap: 0.7rem;
  place-items: center;
  margin-top: 1.2rem;
  padding: 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--vg-radius-sm);
  font-weight: 700;
  text-align: center;
}

.verification-result svg,
#verificationResult svg {
  width: 2.75rem;
  height: 2.75rem;
}

.verification-result h3,
.verification-result h4,
.verification-result p,
#verificationResult h3,
#verificationResult h4,
#verificationResult p {
  margin: 0;
  font-family: var(--vg-body);
  font-size: 1rem;
  font-weight: 700;
}

.verification-result[data-state="success"],
#verificationResult[data-state="success"] {
  border-color: rgba(40, 102, 69, 0.22);
  background: var(--vg-success-soft);
  color: var(--vg-success);
}

.verification-result[data-state="invalid"],
#verificationResult[data-state="invalid"] {
  border-color: rgba(139, 40, 56, 0.22);
  background: var(--vg-error-soft);
  color: var(--vg-error);
}

.verification-result[data-state="verified"],
#verificationResult[data-state="verified"] {
  border-color: rgba(147, 100, 18, 0.22);
  background: var(--vg-warning-soft);
  color: var(--vg-warning);
}

.loader,
#loader {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: vg-spin 650ms linear infinite;
}

@keyframes vg-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Empty and error states */
.empty-state,
.error-page {
  display: grid;
  min-height: min(44rem, calc(100svh - 8rem));
  place-items: center;
  padding-block: var(--vg-section-space);
  text-align: center;
}

.empty-state > *,
.error-page > * {
  width: min(100%, 42rem);
}

.error-page .empty-state {
  min-height: 0;
  padding-block: 0;
}

.empty-state h1,
.empty-state h2,
.error-page h1,
.error-page h2 {
  margin-bottom: 1rem;
}

.error-code {
  margin-bottom: 0.3rem;
  color: var(--vg-bronze-soft);
  font-family: var(--vg-heading);
  font-size: clamp(6rem, 22vw, 13rem);
  line-height: 0.8;
}

.empty-state p,
.error-page p {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--vg-muted);
}

.empty-state .btn,
.error-page .btn {
  margin-top: 1.2rem;
}

/* Footer and persistent contact */
.footer {
  padding-top: clamp(3.75rem, 8vw, 6.5rem);
  background: var(--vg-burgundy-dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer .brand {
  color: var(--vg-white);
}

.footer-brand img {
  height: clamp(2.5rem, 4vw, 3.5rem);
}

.brand-note {
  max-width: 28rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.footer-intro {
  max-width: 28rem;
}

.footer-intro p {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.66);
}

.footer h2,
.footer h3,
.footer h4 {
  margin-bottom: 1rem;
  color: var(--vg-white);
  font-size: 1.08rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--vg-white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-block: 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.generated-year {
  font-variant-numeric: tabular-nums;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #247a42;
  box-shadow: 0 12px 34px rgba(25, 79, 46, 0.28);
  color: var(--vg-white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.floating-contact:hover {
  background: #1d6736;
  box-shadow: 0 16px 40px rgba(25, 79, 46, 0.36);
  color: var(--vg-white);
  transform: translateY(-3px);
}

.floating-contact svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 36rem) {
  .hero-actions .btn {
    min-width: 10rem;
  }

  .product-grid,
  .feature-grid,
  .ingredient-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(9rem, 0.75fr));
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .announcement-inner {
    justify-content: space-between;
    text-align: left;
  }

  .announcement-contact,
  .announcement-links {
    display: flex;
  }

  .section-heading:not(h1):not(h2):not(h3):not(.centered) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
    align-items: end;
    column-gap: clamp(2rem, 6vw, 5rem);
  }

  .section-intro {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .section-intro > div {
    max-width: 48rem;
  }

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

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

  .verify-banner,
  .contact-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 62rem) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav {
    display: flex;
  }

  .header-actions > .btn {
    display: inline-flex;
  }

  .header-inner > .menu-toggle,
  .header-actions > .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-grid,
  .hero > .container,
  .split,
  .product-hero > .container,
  .product-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  }

  .hero-copy {
    padding-block: 1rem;
  }

  .hero-media {
    min-height: 40rem;
  }

  .split:nth-child(even) .split-media,
  .split.reverse .split-media {
    order: 2;
  }

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

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  }

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

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

  .content-grid.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(2.5rem, 7vw, 6rem);
  }

  .footer-grid {
    grid-template-columns: minmax(17rem, 2fr) repeat(3, minmax(9rem, 0.7fr));
  }
}

@media (max-width: 35.999rem) {
  .hero-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .floating-contact {
    right: 0.8rem;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    width: 3.45rem;
    height: 3.45rem;
    padding: 0;
  }

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

  .footer {
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .btn,
  .product-card,
  .feature-card,
  .content-card,
  .ingredient-card,
  .contact-card,
  .testimonial-card,
  .verify-card {
    border: 1px solid ButtonText;
  }

  .eyebrow::before,
  .nav-link::after {
    background: currentColor;
  }
}
