/* =================================================================
   GARLIC BOY — STYLES
   Brand colors are fixed values. Do not substitute similar colors.
   ================================================================= */

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations"),
       url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/RobotoCondensed-VariableFont_wght.ttf") format("truetype-variations"),
       url("../fonts/RobotoCondensed-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --garlic-red: #E6412A;
  --garlic-beige: #F9E2B8;
  --garlic-black: #1C1C1C;
  --good-boy-green: #2DAD54;

  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-accent: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-heading: "Anton", Impact, "Arial Narrow", sans-serif;

  --header-height: 64px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--garlic-beige);
  color: var(--garlic-black);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: inherit; }

button { font-family: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, p { margin: 0; }

/* -----------------------------------------------------------------
   Accessibility helpers
   ----------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  background: var(--garlic-beige);
  color: var(--garlic-black);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-accent);
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.5rem;
}

:focus-visible {
  outline: 3px solid var(--garlic-beige);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--garlic-black);
  border-radius: 2px;
}

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

/* -----------------------------------------------------------------
   Typography helpers
   ----------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.display-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(2.5rem, 11vw, 6rem);
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.2rem, 4.5vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
}

.lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 42ch;
}

/* -----------------------------------------------------------------
   Layout helpers
   ----------------------------------------------------------------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(3rem, 9vw, 6rem) 0;
}

/* -----------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 44px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-fill-black {
  background: var(--garlic-black);
  color: var(--garlic-beige);
  border-color: var(--garlic-black);
}
.btn-fill-black:hover { background: #000; }

.btn-fill-beige {
  background: var(--garlic-beige);
  color: var(--garlic-black);
  border-color: var(--garlic-beige);
}

.btn-outline-beige {
  color: var(--garlic-beige);
  border-color: var(--garlic-beige);
}

.btn-outline-black {
  color: var(--garlic-black);
  border-color: var(--garlic-black);
}

.btn-fill-red {
  background: var(--garlic-red);
  color: var(--garlic-beige);
  border-color: var(--garlic-red);
}

.btn-fill-green {
  background: var(--good-boy-green);
  color: var(--garlic-black);
  border-color: var(--good-boy-green);
}

.btn-coming-soon {
  width: 100%;
}
.btn-coming-soon[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.status-msg {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}
.status-msg[hidden] { display: none; }

.back-link {
  display: block;
  width: fit-content;
  margin-bottom: 1.5rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--garlic-black);
  color: var(--garlic-beige);
  border-bottom: 3px solid var(--garlic-red);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem;
  min-height: var(--header-height);
  padding: 0.5rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}
.brand-mark img {
  display: block;
  width: 130px;
  height: auto;
  max-height: calc(var(--header-height) - 16px);
  object-fit: contain;
}

@media (min-width: 900px) {
  .brand-mark img {
    width: 170px;
  }
}

/* Menu, built with <details> so it works with no JavaScript.
   Same hamburger-triggered overlay at every viewport width. */
.nav-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.nav-details summary::-webkit-details-marker { display: none; }

.hamburger {
  display: block;
  position: relative;
  width: 22px;
  height: 16px;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--garlic-beige);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }
.nav-details[open] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-details[open] .hamburger span:nth-child(2) { opacity: 0; }
.nav-details[open] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-details {
  position: relative;
}
.nav-details .nav-links {
  position: absolute;
  top: 100%;
  right: 0;
  width: min(340px, calc(100vw - 2rem));
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
}
.nav-links {
  display: flex;
  flex-direction: column;
  background: var(--garlic-black);
  border: 1px solid rgba(249,226,184,0.25);
}
.nav-links a {
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(249,226,184,0.12);
  min-height: 44px;
}
.nav-links a:hover { color: var(--garlic-red); }
.nav-links a[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.6em;
  background: var(--garlic-red);
  vertical-align: middle;
}

.nav-backdrop {
  display: none;
}

/* Reveal — pure CSS, no JS. @starting-style animates the transition
   out of <details>'s native display:none, so items fade/rise in with
   a small stagger on open; browsers without @starting-style just
   open instantly (a fine, ungraded fallback, never broken). */
@media (prefers-reduced-motion: no-preference) {
  .nav-links li {
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }
  .nav-links li:nth-child(2) { transition-delay: 0.08s; }
  .nav-links li:nth-child(3) { transition-delay: 0.16s; }
  .nav-links li:nth-child(4) { transition-delay: 0.24s; }

  @starting-style {
    .nav-details[open] .nav-links li {
      opacity: 0;
      transform: translateY(22px);
    }
  }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  background: var(--garlic-red);
  color: var(--garlic-beige);
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  padding-top: clamp(2.5rem, 8vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 10vw, 5rem);
  align-items: center;
  flex: 1;
}
.hero-copy .display-heading {
  font-size: clamp(3.2rem, 13vw, 8rem);
}
.hero-copy .tagline {
  color: var(--garlic-beige);
  margin-top: 1rem;
  font-size: clamp(1.5rem, 6vw, 2.6rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* Scroll cue */
.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto;
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
  background: none;
  border: none;
  color: var(--garlic-beige);
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}
.scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: scroll-cue-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg { animation: none; }
}
.hero-image-wrap {
  position: relative;
  justify-self: center;
  min-width: 0;
  max-width: 100%;
}
.hero-image-block {
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 3px solid var(--garlic-black);
  z-index: 0;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  max-height: 62vh;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  border: 3px solid var(--garlic-black);
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* =================================================================
   BOYS LINEUP (homepage second section — group reveal, no per-product
   cards; the Shop page handles individual product exploration)
   ================================================================= */
.boys-lineup {
  scroll-margin-top: var(--header-height);
}
.boys-lineup-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.boys-lineup-art img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .boys-lineup-grid { grid-template-columns: 1fr 1.4fr; }
}

/* Small page hero used on Shop / About / How to Eat / Contact */
.page-hero {
  background: var(--garlic-black);
  color: var(--garlic-beige);
  padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(1.5rem, 5vw, 2.5rem);
}
.page-hero .lede { margin-top: 1.25rem; }

/* =================================================================
   PRODUCT SECTIONS (used on Shop page previews and product pages)
   ================================================================= */
.product-section {
  scroll-margin-top: var(--header-height);
}
.product-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.product-description { margin: 0; max-width: 46ch; font-family: var(--font-body); }

/* Product image / placeholder */
.product-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 2px solid currentColor;
  padding: 1.5rem;
  text-align: center;
}
.placeholder-bottle {
  position: relative;
  width: 70px;
  height: 150px;
}
.placeholder-bottle .cap {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 18px;
  background: currentColor;
  border-radius: 3px 3px 0 0;
}
.placeholder-bottle .neck {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 26px;
  background: currentColor;
  opacity: 0.85;
}
.placeholder-bottle .body {
  position: absolute;
  top: 38px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 112px;
  background: currentColor;
  border-radius: 10px;
  opacity: 0.85;
}
.placeholder-label-text {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  line-height: 1.4;
}
.placeholder-label-text span {
  display: block;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* Section color themes */
.theme-garlic-boy {
  background: var(--garlic-red);
  color: var(--garlic-beige);
}
.theme-good-boy {
  background: var(--garlic-beige);
  color: var(--garlic-black);
}
.theme-good-boy .placeholder-bottle * { color: var(--good-boy-green); }
.theme-good-boy .shopify-integration,
.theme-good-boy .image-placeholder { color: var(--good-boy-green); }
.theme-good-boy .tagline,
.theme-good-boy .eyebrow,
.theme-good-boy .price-tag { color: var(--good-boy-green); }

.theme-kink-boy {
  background: var(--garlic-black);
  color: var(--garlic-beige);
}
.theme-kink-boy .placeholder-bottle * { color: var(--garlic-red); }
.theme-kink-boy .shopify-integration,
.theme-kink-boy .image-placeholder { color: var(--garlic-red); }
.theme-kink-boy .tagline,
.theme-kink-boy .eyebrow { color: var(--garlic-red); }

/* =================================================================
   PRODUCT DETAIL THEME (data-driven — no per-product CSS needed)
   Set as inline custom properties on .product-section, sourced from
   products.js: --product-bg / --product-text / --product-accent /
   --product-heat. A future product supplies these four values only.
   ================================================================= */
.product-section {
  background: var(--product-bg);
  color: var(--product-text);
}
.product-section .tagline,
.product-section .eyebrow {
  color: var(--product-accent, var(--product-text));
}
.product-section .placeholder-bottle * {
  color: var(--product-accent, var(--product-text));
}
.product-section .image-placeholder {
  color: var(--product-accent, var(--product-text));
}
.product-section .heat-meter-bar {
  border-color: var(--product-heat, var(--product-text));
}
.product-section .heat-meter-bar.filled {
  background: var(--product-heat, var(--product-text));
  border-color: var(--product-heat, var(--product-text));
}
.product-section .coming-soon-badge {
  border-color: var(--product-text);
}
.product-page-links {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.product-page-links .btn {
  background: transparent;
  color: var(--product-text);
  border-color: var(--product-text);
}
.product-prelaunch-note {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  max-width: 52ch;
  opacity: 0.85;
}

/* =================================================================
   UNIVERSE / BRAND STORY
   ================================================================= */
.universe-names {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.universe-names span {
  border: 2px solid var(--garlic-beige);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* =================================================================
   WAYS TO EAT / HOW TO EAT
   ================================================================= */
.ways-to-eat { background: #fff; }
.ways-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
}
.way-card {
  border: 3px solid var(--garlic-black);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.way-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--garlic-black);
}
.way-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
}
.way-card p { font-family: var(--font-body); }
.way-card ul { margin-top: 0.25rem; }
.way-card li {
  font-family: var(--font-body);
  padding-left: 1.1em;
  position: relative;
  margin-bottom: 0.4rem;
}
.way-card li::before {
  content: "—";
  position: absolute;
  left: 0;
}

/* =================================================================
   INSTAGRAM
   ================================================================= */
.instagram-cta { background: var(--garlic-black); color: var(--garlic-beige); }
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  text-decoration: none;
  color: var(--garlic-red);
}
.instagram-handle:hover { text-decoration: underline; }

.slogan-strip {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.slogan-strip img {
  scroll-snap-align: start;
  height: 260px;
  width: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

/* =================================================================
   NEWSLETTER
   ================================================================= */
.newsletter { background: var(--garlic-beige); }
.newsletter-box {
  margin-top: 2rem;
  border: 3px solid var(--garlic-black);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 560px;
}
.newsletter-box p { font-family: var(--font-body); }
.newsletter-box .coming-soon-badge { margin-top: 1.5rem; }
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0.6rem 1rem;
  border: 2px solid var(--garlic-black);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-note {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.75;
}

/* =================================================================
   CONTACT PAGE
   Every class below is scoped to Contact only — no other page uses
   .contact-*, so this cannot affect Homepage, Shop, Product Detail
   or About.
   ================================================================= */
.contact-hero { background: var(--garlic-black); color: var(--garlic-beige); padding: clamp(3rem, 8vw, 5rem) 0 0; }
.contact-hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.contact-hero-art { align-self: end; }
@media (min-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.contact-hero-art img {
  display: block;
  max-height: clamp(280px, 40vw, 480px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.contact-options { background: var(--garlic-beige); color: var(--garlic-black); padding: clamp(3rem, 8vw, 5rem) 0; }

.contact-row {
  display: grid;
  gap: 2rem;
  border: 2px solid var(--garlic-black);
  border-radius: 4px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-row + .contact-row { margin-top: 1.5rem; }
@media (min-width: 900px) {
  .contact-row { grid-template-columns: 66fr 34fr; align-items: center; }
  .contact-row-art { border-left: 1px solid var(--garlic-black); padding-left: 2rem; }
}

.contact-row-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: var(--garlic-red);
  color: var(--garlic-beige);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.contact-primary { margin: 0.25rem 0 1rem; }
.contact-primary a {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  color: var(--garlic-black);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-primary a:hover { text-decoration: underline; }
.contact-supporting { font-family: var(--font-body); max-width: 42ch; margin: 0 0 1.5rem; }

.contact-row-art img {
  display: block;
  height: clamp(120px, 14vw, 200px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

/* Scroll reveal — progressive enhancement only, Contact-scoped.
   Fully independent from About's .about-reveal/.about-manifesto-item
   system: its own root class (js-contact-reveal-ready) and its own
   selectors, so contact.js and about.js never touch each other's
   markup or state. */
html.js-contact-reveal-ready .contact-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
html.js-contact-reveal-ready .contact-reveal.is-visible > * {
  opacity: 1;
  transform: none;
}
html.js-contact-reveal-ready .contact-reveal.is-visible > *:nth-child(2) { transition-delay: 0.1s; }

html.js-contact-reveal-ready .contact-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
html.js-contact-reveal-ready .contact-row.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-contact-reveal-ready .contact-reveal > *,
  html.js-contact-reveal-ready .contact-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--garlic-black);
  color: var(--garlic-beige);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { text-decoration: none; font-family: var(--font-body); font-size: 0.9rem; }
.footer-col a:hover { color: var(--garlic-red); }
.footer-col p { font-family: var(--font-body); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(249,226,184,0.2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.75;
}

/* =================================================================
   LEGAL PLACEHOLDER PAGES / GENERIC NOTICE BOX
   ================================================================= */
.legal-main { background: #fff; min-height: 60vh; }
.notice-box {
  border: 3px solid var(--garlic-red);
  background: var(--garlic-beige);
  padding: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 2rem 0;
}
.legal-body { max-width: 68ch; font-family: var(--font-body); }
.legal-body p { margin-bottom: 1rem; }

/* =================================================================
   HEAT METER (reusable, used on Shop panels + product pages)
   ================================================================= */
.heat-meter {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.heat-meter-bars {
  display: flex;
  gap: 0.3rem;
}
.heat-meter-bar {
  display: inline-block;
  width: 10px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background: transparent;
  opacity: 0.4;
}
.heat-meter-bar.filled {
  opacity: 1;
  background: var(--heat-fill, currentColor);
  border-color: var(--heat-fill, currentColor);
}
.heat-meter-text {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* =================================================================
   PRODUCT VISUAL SUMMARY (top of each product page)
   ================================================================= */
.product-summary {
  margin-top: 1.75rem;
  padding: 1.5rem;
  border: 2px solid currentColor;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.summary-price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.summary-subprice {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  opacity: 0.85;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-chip {
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
}
.summary-label {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  opacity: 0.75;
  margin-bottom: 0.4rem;
  display: block;
}
.shipping-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-decoration: underline;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

/* =================================================================
   PRODUCT DISCLOSURES (details/summary secondary information)
   ================================================================= */
.product-disclosures {
  margin-top: 3rem;
  border-top: 2px solid currentColor;
}
.product-disclosure {
  border-bottom: 2px solid currentColor;
}
.product-disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.product-disclosure summary::-webkit-details-marker { display: none; }
.product-disclosure summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.product-disclosure[open] summary::after { content: "\2212"; }
.product-disclosure-body {
  padding: 0 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  max-width: 62ch;
}
.launch-blocker-note {
  margin-top: 0.6rem;
  font-style: italic;
  opacity: 0.85;
}

/* =================================================================
   SHOP ACCORDION
   ================================================================= */
.shop-showroom {
  padding-bottom: clamp(2.5rem, 8vw, 6rem);
}
.shop-accordion {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shop-panel {
  border: 3px solid var(--garlic-black);
  border-radius: 14px;
  overflow: hidden;
}
.shop-panel-header {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  font-family: inherit;
  color: inherit;
}
.shop-panel-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.shop-panel-identity > span:last-child {
  min-width: 0;
}
.shop-panel-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--garlic-black);
}
.shop-panel-name {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1;
}
.shop-panel-slogan {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.35rem;
  opacity: 0.85;
}
.shop-panel-indicator {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
}
.shop-panel[data-open="true"] .shop-panel-indicator { transform: rotate(45deg); }
.shop-panel-body {
  padding: 0 1.5rem 2rem;
}
.shop-panel-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-panel-top-row .eyebrow {
  margin-bottom: 0;
}
.shop-panel-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .shop-panel-grid { grid-template-columns: 1fr 1.2fr; }
}
.shop-panel-art {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.shop-panel-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}
.shop-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.shop-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Desktop: horizontal accordion, active panel widest */
@media (min-width: 900px) {
  .shop-accordion {
    flex-direction: row;
    align-items: stretch;
  }
  .shop-panel {
    flex: 1 1 0;
    min-width: 190px;
    transition: flex-grow 0.25s ease;
    display: flex;
    flex-direction: column;
  }
  .shop-panel[data-open="true"] {
    flex: 6 1 0%;
  }
  .shop-panel-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 1.25rem 1.5rem;
  }
  .shop-panel-header {
    padding: 0;
  }
  .shop-panel[data-open="true"] .shop-panel-toggle {
    display: none;
  }
  .shop-panel[data-open="false"] .shop-panel-body {
    display: none;
  }
  .shop-panel-collapsed-art {
    margin-top: 1.5rem;
    width: 100%;
  }
  .shop-panel-collapsed-art img {
    width: 100%;
    max-width: 160px;
  }
  .shop-panel[data-open="true"] .shop-panel-body {
    display: block;
    padding: 1.75rem;
  }
  .shop-panel[data-open="true"] .shop-panel-close {
    display: inline-flex;
  }
}
.shop-panel-close {
  display: none;
}
@media (max-width: 899.98px) {
  .shop-panel[data-open="false"] .shop-panel-body { display: none; }
}

.shop-panel.theme-garlic-boy { background: var(--garlic-red); color: var(--garlic-beige); }
.shop-panel.theme-good-boy { background: var(--good-boy-green); color: var(--garlic-black); }
.shop-panel.theme-kink-boy { background: var(--garlic-black); color: var(--garlic-beige); }
.shop-panel.theme-garlic-boy .shop-panel-swatch { background: var(--garlic-beige); border-color: var(--garlic-beige); }
.shop-panel.theme-good-boy .shop-panel-swatch { background: var(--garlic-beige); border-color: var(--garlic-beige); }
.shop-panel.theme-kink-boy .shop-panel-swatch { background: var(--garlic-red); border-color: var(--garlic-red); }

/* Good Boy's expanded panel switches to its official green field —
   collapsed strip stays on the existing beige/green identity above. */
.shop-panel.theme-good-boy[data-open="true"] {
  background: var(--good-boy-green);
  color: var(--garlic-black);
}
.shop-panel.theme-good-boy .tagline,
.shop-panel.theme-good-boy .eyebrow {
  color: var(--garlic-black);
}

/* Shop-specific heat-meter contrast: the meter only ever renders
   inside the expanded body, so this always sits on each product's
   confirmed expanded field color. */
.shop-panel.theme-garlic-boy .heat-meter-bar { border-color: var(--garlic-beige); }
.shop-panel.theme-garlic-boy .heat-meter-bar.filled { background: var(--garlic-beige); border-color: var(--garlic-beige); }
.shop-panel.theme-good-boy .heat-meter-bar { border-color: var(--garlic-black); }
.shop-panel.theme-good-boy .heat-meter-bar.filled { background: var(--garlic-black); border-color: var(--garlic-black); }
.shop-panel.theme-kink-boy .heat-meter-bar { border-color: var(--garlic-beige); }
.shop-panel.theme-kink-boy .heat-meter-bar.filled { background: var(--garlic-beige); border-color: var(--garlic-beige); }

/* =================================================================
   ABOUT PAGE — MEET THE UNIVERSE
   Editorial, chapter-based layout. Every class below is scoped to
   About only; no other page uses .about-*, so this block cannot
   affect Homepage, Shop, Product Detail or any locked page.
   ================================================================= */
.about-chapter {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 10vw, 6rem) 0;
}
.about-chapter--beige { background: var(--garlic-beige); color: var(--garlic-black); }
.about-chapter--black { background: var(--garlic-black); color: var(--garlic-beige); }
.about-chapter--red { background: var(--garlic-red); color: var(--garlic-beige); }
.about-chapter--cta { min-height: 0; padding: clamp(4rem, 10vw, 6rem) 0; }
.about-chapter { scroll-margin-top: var(--header-height); }

.about-opening { position: relative; }
.about-opening-statement { margin-top: 1.5rem; max-width: 30ch; }

.about-scroll-cue-wrap { position: absolute; left: 0; right: 0; bottom: clamp(1.5rem, 5vw, 3rem); text-align: center; }
.about-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--garlic-black);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}
.about-scroll-cue:hover { opacity: 0.9; }
@media (prefers-reduced-motion: no-preference) {
  .about-scroll-cue span { display: inline-block; animation: about-scroll-cue-nudge 2.2s ease-in-out infinite; }
}
@keyframes about-scroll-cue-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.about-origin .lede { max-width: 56ch; }
.about-origin .section-heading + .lede { margin-top: 1.5rem; }
.about-origin-close { margin-top: 1.5rem; font-weight: 700; }

.about-manifesto-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.about-manifesto-num {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.about-manifesto-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  margin: 0 0 0.75rem;
}
.about-manifesto-item .lede { max-width: 46ch; }

.about-universe-grid { margin-top: 2.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .about-universe-grid { grid-template-columns: 65fr 35fr; align-items: center; }
}

.about-lineup-list { display: flex; flex-direction: column; gap: 1.75rem; }
.about-lineup-row { display: flex; align-items: center; gap: 1.25rem; }
.about-lineup-avatar {
  height: clamp(64px, 8vw + 20px, 120px);
  width: auto;
  display: block;
  flex-shrink: 0;
}
.about-lineup-name {
  color: var(--garlic-black);
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  margin: 0;
}
.about-lineup-descriptor {
  margin: 0.25rem 0 0;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  opacity: 0.72;
}
.about-next-lines { max-width: 30ch; margin-top: 1.5rem; }

.about-founders-photo { margin: 2rem 0; max-width: 720px; }
.about-founders-photo img { display: block; width: 100%; height: auto; }
.about-founders-caption { margin-top: 0.6rem; text-align: center; }
.about-founders-label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}
.about-founders-people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.about-founder-name {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.about-founder-name + .about-founder-name::before {
  content: "·";
  display: inline-block;
  margin-right: 0.5em;
  opacity: 0.55;
}
.about-founders-line { max-width: 34ch; }

.about-cta-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Scroll reveal — progressive enhancement only.
   .about-reveal alone has no visual effect: content stays fully
   visible with no JS. about.js adds "js-reveal-ready" to <html>
   only when IntersectionObserver exists and the user has not
   requested reduced motion; only then does the opacity/transform
   pair below apply, and only until each element's own
   "is-visible" class lands.

   Two reveal patterns:
   - .about-reveal (section wraps): direct children stagger in.
   - .about-manifesto-item (WHAT WE BELIEVE) / .about-lineup-row
     (THE UNIVERSE): each reveals independently, as its own unit,
     when IT individually enters the viewport — not as a batch when
     the parent list becomes visible. .about-lineup-row additionally
     gets a small deterministic nth-child stagger so that if all
     three happen to intersect together (e.g. a tall desktop
     viewport), they still read as a sequence rather than a flash. */
html.js-reveal-ready .about-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
html.js-reveal-ready .about-reveal.is-visible > * {
  opacity: 1;
  transform: none;
}
html.js-reveal-ready .about-reveal.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
html.js-reveal-ready .about-reveal.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
html.js-reveal-ready .about-reveal.is-visible > *:nth-child(4) { transition-delay: 0.3s; }

html.js-reveal-ready .about-manifesto-item,
html.js-reveal-ready .about-lineup-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
html.js-reveal-ready .about-manifesto-item.is-visible,
html.js-reveal-ready .about-lineup-row.is-visible {
  opacity: 1;
  transform: none;
}
html.js-reveal-ready .about-lineup-list > .about-lineup-row:nth-child(2).is-visible { transition-delay: 0.1s; }
html.js-reveal-ready .about-lineup-list > .about-lineup-row:nth-child(3).is-visible { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html.js-reveal-ready .about-reveal > *,
  html.js-reveal-ready .about-manifesto-item,
  html.js-reveal-ready .about-lineup-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =================================================================
   IMPRINT PAGE
   Every class below is scoped to Imprint only — no other legal page
   uses .imprint-*, so this cannot affect Privacy Policy, Right of
   Withdrawal, Shipping Information, Terms & Conditions, or any
   other locked page.
   ================================================================= */
.imprint-hero {
  background: var(--garlic-black);
  color: var(--garlic-beige);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.imprint-hero .eyebrow { color: var(--garlic-red); }

.imprint-info {
  background: var(--garlic-beige);
  color: var(--garlic-black);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.imprint-info-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .imprint-info-grid { grid-template-columns: repeat(3, 1fr); }
  .imprint-col + .imprint-col {
    border-left: 1px solid var(--garlic-black);
    padding-left: 2rem;
  }
}
.imprint-col {
  border-top: 1px solid var(--garlic-black);
  padding-top: 1.5rem;
}
.imprint-col-num {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--garlic-red);
  margin-bottom: 0.5rem;
}
.imprint-col-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 1rem;
}
.imprint-col-body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.imprint-col-body + .imprint-col-body { margin-top: 1.25rem; }
.imprint-col-body a { color: var(--garlic-black); }
.imprint-role-label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--garlic-black);
  margin-bottom: 0.4rem;
}
.imprint-person-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}

.imprint-exit {
  background: var(--garlic-red);
  color: var(--garlic-beige);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.imprint-exit .lede { margin: 1rem 0 1.5rem; }
.imprint-exit .btn {
  background: var(--garlic-black);
  color: var(--garlic-beige);
  border-color: var(--garlic-black);
}
.imprint-exit .btn:hover { background: #000; }

/* =================================================================
   PRIVACY POLICY PAGE
   Every class below is scoped to Privacy only — no other legal page
   uses .privacy-*, so this cannot affect Imprint or any other
   locked page. No reveal/motion CSS — static, fully visible, per
   this pass's explicit scope.
   ================================================================= */
.privacy-hero { background: var(--garlic-red); color: var(--garlic-beige); padding: clamp(4rem, 8vw, 7rem) 0; }

.privacy-glance { background: var(--garlic-beige); color: var(--garlic-black); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.privacy-glance-grid { display: grid; gap: 2.5rem; margin-top: 2rem; }
@media (min-width: 900px) {
  .privacy-glance-grid { grid-template-columns: repeat(3, 1fr); }
  .privacy-glance-item + .privacy-glance-item { border-left: 1px solid var(--garlic-black); padding-left: 2rem; }
}
.privacy-glance-item { border-top: 1px solid var(--garlic-black); padding-top: 1.5rem; }
.privacy-glance-heading {
  font-family: var(--font-heading); font-weight: 400; text-transform: uppercase;
  line-height: 1; font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 0.75rem;
}

.privacy-policy { background: var(--garlic-beige); color: var(--garlic-black); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.privacy-row { border-top: 1px solid var(--garlic-black); padding: 2rem 0; display: grid; gap: 1rem; }
.privacy-row:last-child { border-bottom: 1px solid var(--garlic-black); }
@media (min-width: 900px) {
  .privacy-row { grid-template-columns: 1fr 2fr; gap: 2.5rem; }
}
.privacy-row-head { display: flex; align-items: baseline; gap: 0.75rem; }
.privacy-row-title { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; line-height: 1; font-size: clamp(1.3rem, 2.5vw, 1.6rem); margin: 0; }
.privacy-row-body { font-family: var(--font-body); line-height: 1.6; max-width: 68ch; }
.privacy-row-body p + p { margin-top: 1rem; }

.privacy-num {
  font-family: var(--font-accent); font-weight: 700; letter-spacing: 0.06em;
  font-size: 0.85rem; color: var(--garlic-red); flex-shrink: 0;
}

.privacy-rights { background: var(--garlic-black); color: var(--garlic-beige); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.privacy-rights-grid { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 900px) {
  .privacy-rights-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-rights-grid > .privacy-right:nth-child(odd) { border-right: 1px solid rgba(249,226,184,0.25); padding-right: 2rem; }
}
.privacy-right { border-top: 1px solid rgba(249,226,184,0.25); padding-top: 1.25rem; }
.privacy-right-title { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; line-height: 1; font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin: 0.35rem 0 0.5rem; }
.privacy-right p { font-family: var(--font-body); line-height: 1.6; }

.privacy-contact { background: var(--garlic-beige); color: var(--garlic-black); padding: clamp(3rem, 6vw, 5rem) 0; }
.privacy-contact .btn { margin-top: 1.5rem; }
