/* ============================================================
   The Dripping Hive — Brand stylesheet
   Pure British Honey · Crafted by Nature, Bottled with Purpose
   ============================================================ */

:root {
  --nav-height: 60px;
  /* Core palette — pulled from logo & dark photography */
  --ink:        #222222;            /* primary bg (matches logo card) */
  --ink-2:      #1c1c1c;            /* deeper panel */
  --ink-3:      #2b2b2b;            /* raised panel / hairline */
  --slate:      #2a2724;            /* warm dark stone */
  --cream:      #ffffff;            /* clean white (matches logo type) */
  --cream-2:    #cfc9bd;            /* muted cream */
  --cream-3:    #807a6e;            /* low-contrast type */
  --gold:       #ffcd04;            /* brand yellow - exactly #ffcd04 */
  --gold-light: #ffe066;            /* highlight yellow */
  --gold-deep:  #cca300;            /* deep amber */
  --rule:       rgba(255, 255, 255, 0.10);
  --rule-strong: rgba(255, 255, 255, 0.22);

  /* Type — Montserrat + signature script for accents */
  --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-sans:    "Montserrat", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:  "Brittany Signature", "Brittany", "Allura", cursive;
  --font-italic:  "Montserrat", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Per-variety brand colors */
  --heather:    #bc3fde;  /* vibrant purple */
  --spring:     #c1ff72;  /* custom green */
  --summer:     #ffb11a;  /* custom orange-gold */
  --borage:     #0aacc8;  /* custom teal-blue */

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6.5rem;
  --s-7: 10rem;

  /* Letterspacing */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide:  0.14em;
  --tracking-xwide: 0.22em;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Honey card component dimensions (SSOT alignment tokens) */
  --honey-card-desc-height:    8.5rem;
  --honey-card-pairing-height: 3.5em;
}

@font-face {
  font-family: 'Brittany Signature';
  src: local('Brittany Signature'), local('Brittany'),
       url('Assets/fonts/BrittanySignature.woff') format('woff'),
       url('https://fonts.cdnfonts.com/s/72887/BrittanySignature.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
html.home-page, html.products-page {
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--nav-height);
}
@media (min-width: 1025px) {
  html.home-page, html.products-page {
    scroll-snap-type: y mandatory;
  }
}
html, body { background: var(--ink); }

body {
  font-family: var(--font-sans);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-light); }

/* ----- Subtle film-grain overlay (page-wide atmosphere) ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
  color: var(--cream);
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }

/* Italic accents render in the serif (Cormorant) for editorial body moments;
   bold display headlines that should feel handwritten use --font-script */
em, .italic {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}
.italic-line {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--gold);
}

.brand-caps,
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.72rem;
  color: var(--cream-2);
}

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

/* Stacked logotype lockup — matches the logo (bold, tight, no letterspacing) */
.lockup {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.05;
  color: var(--cream);
  display: inline-block;
}
.lockup .lockup__line { display: block; }
.lockup .lockup__line--gold { color: var(--gold); }
.lockup--lg { font-size: 1.4rem; }
.lockup--xl { font-size: 2rem; line-height: 1.05; }

/* The product/section italic display (e.g. "Heather", "Spring") */
.display-italic {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.gold { color: var(--gold); }
.cream-3 { color: var(--cream-3); }
.text-center { text-align: center; }

.rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}

.section {
  padding: var(--s-6) 0;
  scroll-snap-align: start;
}
.section-tight { padding: var(--s-5) 0; }

.section--collection {
  padding-top: var(--s-5);
  padding-bottom: var(--s-4);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  text-decoration: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--filled {
  background: var(--gold);
  color: var(--ink);
}
.btn--filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
}

.btn--ghost {
  background: var(--ink);
  border-color: var(--rule-strong);
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn { transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.12s var(--ease); }
.btn:active { transform: scale(0.97); }

.btn--pill {
  border-radius: 100px;
}


/* Touch devices: surface the hover treatment on press (no real hover state) */
@media (hover: none) {
  .btn:active { background: var(--gold); color: var(--ink); }
  .btn--ghost:active { background: var(--cream); border-color: var(--cream); color: var(--ink); }
  .honey-card:active .honey-card__media img { transform: scale(1.02); }
  .honey-card[class*="honey-card--"]:active .honey-card__media {
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--variety) 55%, transparent),
                0 12px 32px -12px color-mix(in srgb, var(--variety) 50%, transparent);
  }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  padding-top: max(0.5rem, env(safe-area-inset-top));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  position: relative;
  z-index: 100;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.nav__logo-img { display: none; }
.nav__logo-mark {
  height: 44px;
  width: auto;
  display: block;
}
.nav__logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  gap: 3px;
}
.nav__logo-word .word-1 { font-size: 14px; }
.nav__logo-word .word-2 { font-size: 14px; color: var(--gold); letter-spacing: -0.01em; }
.nav__logo-word .word-3 { font-size: 14px; }
@media (max-width: 480px) {
  .nav__logo { gap: 0.5rem; }
  .nav__logo-mark { height: 36px; }
  .nav__logo-word { gap: 2px; }
  .nav__logo-word .word-1,
  .nav__logo-word .word-2,
  .nav__logo-word .word-3 { font-size: 11.5px; }
}

.nav__links {
  display: flex;
  gap: var(--s-4);
  list-style: none;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-2);
  position: relative;
  padding-bottom: 4px;
}
.nav__link em {
  font-family: var(--font-sans);
  font-weight: inherit;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--cream);
}
.nav__link.active::after,
.nav__link:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: var(--s-2); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 8px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}
.nav__hamburger span {
  position: absolute;
  left: 8px;
  width: calc(100% - 16px);
  height: 1px;
  background: var(--cream);
  transition: 0.3s var(--ease);
}
.nav__hamburger span:nth-child(1) { top: 12px; }
.nav__hamburger span:nth-child(2) { top: 50%; }
.nav__hamburger span:nth-child(3) { bottom: 12px; }
.nav__hamburger.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--ink);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 99;
}
.nav__mobile.active {
  transform: translateY(0);
  visibility: visible;
}

@media (max-width: 880px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__hamburger { display: block; }
  .nav__mobile { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 9rem 0 3.6rem;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 160, 77, 0.18), transparent 40%),
    radial-gradient(circle at 12% 70%, rgba(122, 91, 143, 0.10), transparent 45%);
  filter: blur(20px);
}

.hero__honeycomb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 305px;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='324' height='455'><defs><g id='h'><path d='M-54 0 L-27 -46.77 L27 -46.77 L54 0 L27 46.77 L-27 46.77 Z' fill='none' stroke='%23323232' stroke-width='1.2'/></g></defs><use href='%23h' x='0' y='405'/><use href='%23h' x='0' y='311.47'/><use href='%23h' x='0' y='217.94'/><use href='%23h' x='0' y='124.41'/><use href='%23h' x='0' y='30.88'/><use href='%23h' x='81' y='358.23'/><use href='%23h' x='81' y='264.70'/><use href='%23h' x='81' y='171.17'/><use href='%23h' x='81' y='77.64'/><use href='%23h' x='162' y='405'/><use href='%23h' x='162' y='311.47'/><use href='%23h' x='162' y='217.94'/><use href='%23h' x='162' y='124.41'/><use href='%23h' x='162' y='30.88'/><use href='%23h' x='243' y='358.23'/><use href='%23h' x='243' y='264.70'/><use href='%23h' x='243' y='171.17'/><use href='%23h' x='243' y='77.64'/><use href='%23h' x='324' y='405'/><use href='%23h' x='324' y='311.47'/><use href='%23h' x='324' y='217.94'/><use href='%23h' x='324' y='124.41'/><use href='%23h' x='324' y='30.88'/></svg>");
  background-repeat: repeat-x;
  background-size: 324px 455px;
  background-position: bottom center;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.hero__badge-wrap {
  margin-bottom: 1.35rem;
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.95rem 2.2rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255, 205, 4, 0.15);
}


.hero__title {
  margin-bottom: 1.35rem;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.hero__title-line-1 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.40rem, 3.2vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-2);
  margin-top: 0.8rem;
}
.hero__title-line-2 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.80rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-top: 0.25rem;
  white-space: nowrap;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 44ch;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; }

.hero__verse {
  margin-top: 3.6rem;
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
  max-width: 30ch;
}
.hero__verse .verse-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.4;
}
.hero__verse .verse-source {
  display: block;
  margin-top: var(--s-1);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--gold);
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  max-height: 520px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-frame {
  position: absolute;
  inset: var(--s-3);
  border: 1px solid var(--rule-strong);
  pointer-events: none;
}
.hero__image-label {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  right: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero__image-wrap { aspect-ratio: 3 / 4; order: -1; }
}

/* Landscape phones: don't let the full-height hero crush vertically */
@media (max-width: 880px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding: var(--s-6) 0 var(--s-4); }
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__image-wrap { aspect-ratio: 4 / 5; order: 0; }
}

/* ============================================================
   Product / Collection cards
   ============================================================ */
.collection__badge-wrap {
  margin-bottom: 1.2rem;
}

.collection-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--rule);
}
.collection-head h2 {
  margin-top: var(--s-1);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}
.collection-head .meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
  text-align: right;
}

.honey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 1024px) {
  .honey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .honey-grid { grid-template-columns: 1fr; }
}

.honey-card {
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.honey-card__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.honey-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.honey-card__media .placeholder {
  width: 100%;
  height: 100%;
}

/* Per-variety accent — one distinguishing colour touch per harvest.
   Gold stays primary; --variety tints only the top rule + index badge. */
.honey-card--heather { --variety: var(--heather); }
.honey-card--spring  { --variety: var(--spring); }
.honey-card--summer  { --variety: var(--summer); }
.honey-card--borage  { --variety: var(--borage); }

.honey-card[class*="honey-card--"] .honey-card__media {
  border-top: 2px solid var(--variety, var(--gold));
  transition: box-shadow 0.4s var(--ease);
}
.honey-card[class*="honey-card--"] .honey-card__index {
  color: var(--variety, var(--gold));
}
.honey-card[class*="honey-card--"]:hover .honey-card__media,
.honey-card[class*="honey-card--"]:focus-within .honey-card__media {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--variety) 55%, transparent),
              0 12px 32px -12px color-mix(in srgb, var(--variety) 50%, transparent);
}

.honey-card__index {
  position: absolute;
  bottom: var(--s-2);
  left: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.honey-card__crest {
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-2);
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--rule-strong);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
}

.honey-card__body {
  padding: var(--s-3) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  flex: 1 1 auto;
}
.honey-card__name {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--cream);
  text-transform: none;
}
.honey-card__tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--gold);
}
.honey-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cream-2);
  margin-top: var(--s-2);
  flex: 1 1 auto;
  min-height: var(--honey-card-desc-height);
}

.honey-card__pairing {
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
}
.honey-card__pairing-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
  margin-bottom: 0.45rem;
}
.honey-card__pairing-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  min-height: var(--honey-card-pairing-height);
  align-content: flex-start;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
}
.honey-card__pairing-list li::before {
  content: "·";
  color: var(--gold);
  margin-right: 0.5rem;
}
.honey-card__pairing-list li:first-child::before { content: ""; margin-right: 0; }

.honey-card__cta {
  margin-top: auto;
  padding-top: var(--s-2);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.honey-card__cta .price { color: var(--gold); }
.honey-card__cta .add { color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* SVG placeholder jar (for missing photos) */
.jar-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, var(--ink-2) 0 14px, var(--ink-3) 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-3);
  position: relative;
}
.jar-placeholder__label {
  position: absolute;
  bottom: var(--s-2);
  left: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--cream-3);
}
.jar-placeholder svg {
  width: 50%; height: auto;
  opacity: 0.42;
}

/* Desktop viewport optimization for Signature Collection section */
@media (min-width: 1025px) {
  :root {
    --honey-card-desc-height: 5.6rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
  }

  .section--collection {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--s-5);
    padding-bottom: 1rem;
    scroll-snap-align: start;
  }

  .section--collection .container {
    max-width: 1140px;
  }

  .collection-head {
    margin-bottom: var(--s-2);
    padding-bottom: var(--s-1);
    gap: var(--s-1);
    align-items: center;
  }

  .collection__badge-wrap {
    margin-bottom: 0;
  }

  .collection-head .badge {
    font-size: 0.95rem;
    padding: 0.65rem 1.6rem;
    border-radius: 10px;
  }

  .collection-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .honey-grid {
    gap: var(--s-3);
  }



  .honey-card__body {
    padding: 0.75rem 0;
  }

  .honey-card__name {
    font-size: 1.45rem;
  }

  .honey-card__desc {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .honey-card__cta {
    margin-top: 0.5rem;
  }

  /* Snap alignment for middle content bands on desktop */
  .newsletter-block {
    scroll-snap-align: start;
  }

  .verse-band {
    padding: var(--s-5) 0;
  }
}

/* ============================================================
   Featured / banner — Quran verse
   ============================================================ */
.verse-band {
  position: relative;
  padding: var(--s-7) 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.verse-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,160,77,0.10), transparent 60%);
}
.verse-band__inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 var(--s-3); }
.verse-band__quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
  text-transform: none;
  letter-spacing: -0.01em;
}
.verse-band__quote .gold { color: var(--gold-light); }
.verse-band__source {
  margin-top: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  color: var(--gold);
}


/* ============================================================
   Prices table
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.price-table thead th {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
  text-align: left;
  padding: 0 0 var(--s-3);
  border-bottom: 1px solid var(--rule-strong);
  font-weight: 500;
}
.price-table thead th .size-detail {
  display: block;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  text-transform: none;
}
.price-table tbody td {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.price-table tbody td:first-child {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--cream);
}
.price-table tbody td:first-child .sub {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
  margin-top: 0.35rem;
}
.price-table tbody td.price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.price-table tbody tr:hover td { color: var(--cream); }
.price-table tbody tr:hover td.price { color: var(--gold-light); }

/* ============================================================
   Award / badge
   ============================================================ */
.award-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 0.72rem;
  color: var(--cream-2);
}
.great-taste {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gold);
  border-radius: 50%;
  line-height: 1.1;
  padding: 4px;
}

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-height) + var(--s-3)) 0 var(--s-4);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  scroll-snap-align: start;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,160,77,0.08), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.page-header h1 .italic-line { display: block; font-family: var(--font-italic); font-style: italic; font-weight: 500; text-transform: none; letter-spacing: -0.02em; line-height: 1; color: var(--gold-light); }

/* "Signature" three-tier display (THE / cursive / HONEY COLLECTION) */
.signature-collection {
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 600;
}
.signature-collection__top {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  letter-spacing: 0.32em;
  font-weight: 700;
}
.signature-collection__script {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.9;
  color: var(--cream);
  margin: -0.18em 0 0.06em;
}
.signature-collection__script .hr {
  display: inline-block;
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  height: 1.5px;
  background: var(--cream);
  opacity: 0.85;
}
.signature-collection__bottom {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: 0.28em;
  color: var(--cream-2);
  font-weight: 700;
}


.page-header__sub {
  max-width: 56ch;
  margin: var(--s-3) auto 0;
  color: var(--cream-2);
}

/* ============================================================
   Story / longform
   ============================================================ */
.prose {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--cream-2);
}
.prose p { margin-bottom: var(--s-3); }
.prose p.lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.prose h2 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.pull-quote {
  margin: var(--s-5) 0;
  padding: var(--s-4) var(--s-3);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
  text-transform: none;
}
.pull-quote .gold { color: var(--gold-light); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.location-card {
  padding: var(--s-4) 0;
  border-top: 1px solid var(--rule);
}
.location-card:last-child { border-bottom: 1px solid var(--rule); }
.location-card__name {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--cream);
}
.location-card__phone {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.location-card__meta {
  margin-top: var(--s-1);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--s-2); }
.field label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.6rem 0;
  transition: border-color 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: var(--s-4) 0 var(--s-3);
  border-top: 1px solid var(--rule);
  background: var(--ink);
  scroll-snap-align: end;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.footer__brand .footer__logo-img { display: none; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--s-3);
}
.footer__logo-mark { height: 80px; width: auto; display: block; }
.footer__logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  gap: 6px;
}
.footer__logo-word .word-1 { font-size: 20.8px; }
.footer__logo-word .word-2 { font-size: 20.8px; color: var(--gold); letter-spacing: -0.01em; }
.footer__logo-word .word-3 { font-size: 20.8px; }
.footer__tagline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0.8rem;
  max-width: 35ch;
}
.footer__tagline .tagline-line-1 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.2em;
}
.footer__tagline .tagline-line-2 {
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--cream-3);
  letter-spacing: 0.2em;
  margin-top: 0.35rem;
}
.footer__tagline .tagline-line-3 {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--cream-2);
  letter-spacing: 0.2em;
  margin-top: 0.3rem;
}
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__link {
  font-size: 0.88rem;
  color: var(--cream-2);
}
.footer__link em {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-style: italic;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.footer__bottom-badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer__bottom-badges img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.85;
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: var(--s-2); text-align: center; }
}

/* ============================================================
   Scroll-reveal motion was removed in favor of a simpler static layout.
   The .fade-up class (and unused --i values) remain as inert hooks on
   elements; no entrance animation is applied.
   ============================================================ */
.fade-up { opacity: 1; transform: none; }

/* ============================================================
   Accessibility — focus & reduced motion
   ============================================================ */
:where(a, button, input, textarea, select, [tabindex]):focus {
  outline: none;
}
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.btn--filled:focus-visible {
  outline-color: var(--ink);
  outline-offset: 3px;
}
.honey-card a:focus-visible,
.footer__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   The Dripping Hive - Brand & Visual Additions
   ============================================================ */

/* Reusable Newsletter Signup Block */
.newsletter-block {
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.newsletter-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 205, 4, 0.03), transparent 70%);
  pointer-events: none;
}
.newsletter-block__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-block__inner h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--s-1);
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
}
.newsletter-block__inner p {
  color: var(--cream-2);
  font-size: 0.88rem;
  margin-bottom: var(--s-3);
}
.newsletter-block__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  text-align: left;
}
.newsletter-block__form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.newsletter-block__form .field--full {
  grid-column: 1 / -1;
}
.newsletter-block__form label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream-3);
}
.newsletter-block__form input {
  background: var(--ink-3);
  border: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.newsletter-block__form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  outline: none;
}
.newsletter-block__form button {
  grid-column: 1 / -1;
  margin-top: var(--s-2);
  width: 100%;
  justify-content: center;
  border-radius: 8px;
}
@media (max-width: 580px) {
  .newsletter-block__form {
    grid-template-columns: 1fr;
  }
  .newsletter-block__form .field {
    grid-column: 1 / -1;
  }
}

/* Honeycomb Background Decorative Patterns */
.honeycomb-decor {
  position: absolute;
  color: var(--gold);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Alternating 2-Column Product Rows (Signature Collection Page) */
.product-row-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  padding: clamp(1.5rem, 4.5vh, 3rem) 0;
  border-bottom: 1px solid var(--rule);
  scroll-snap-align: center;
}
.product-row-2col:last-child {
  border-bottom: 0;
}
.product-row-2col__info {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  order: 1;
}
.product-row-2col__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-2);
  border-top: 3px solid var(--variety-accent);
  order: 2;
}
.product-row-2col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-row-2col__pairings {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  background: var(--ink-2);
  padding: var(--s-3) var(--s-3);
  border-radius: 12px;
  border: 1px solid var(--rule);
  margin-top: var(--s-2);
}
.product-row-2col__pairings-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  color: var(--cream);
  margin-bottom: var(--s-1);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.5rem;
}

/* Alternating layout order rules (Desktop) */
.product-row-2col.layout-reversed .product-row-2col__media { order: 1; }
.product-row-2col.layout-reversed .product-row-2col__info { order: 2; }

@media (max-width: 1024px) {
  .product-row-2col {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-5) 0;
  }
  .product-row-2col__media {
    order: -1 !important;
  }
  .product-row-2col__info {
    order: 1 !important;
  }
}

/* Badge Capsules (Mockup design) */
.variety-capsule {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-xwide);
  line-height: 1;
  width: fit-content;
}
.variety-capsule--summer  { background: var(--summer); color: #222222; }
.variety-capsule--spring  { background: var(--spring); color: #222222; }
.variety-capsule--heather { background: var(--heather); color: #ffffff; }
.variety-capsule--borage  { background: var(--borage); color: #ffffff; }

/* Product row typography components */
.product-row-2col__title-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-1);
}
.product-row-2col__title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.0;
  letter-spacing: var(--tracking-tight);
  color: var(--cream);
  margin-top: var(--s-1);
}
.product-row-2col__title-wrap svg {
  width: 32px;
  height: 32px;
  fill: var(--variety-accent);
}
.product-row-2col__desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.55;
  color: var(--cream-2);
}

/* Perfect With vertical check items */
.pairings-list-vertical {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.pairings-list-vertical li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.pairing-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: var(--variety-accent);
  color: var(--variety-stroke, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Crop dark background corners of pairing icon images */
}
.pairing-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pairing-circle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pairing-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
}

/* Order page two-column layout */
.order-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-5);
  margin-top: var(--s-4);
  align-items: stretch; /* Stretches both columns to be equal height */
}
@media (max-width: 880px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    align-items: start; /* Restore natural height when stacked on mobile */
  }
}

/* Left side pricing card */
.order-prices-card {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: var(--s-4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
@media (min-width: 881px) {
  .order-prices-card {
    min-height: 380px; /* Desktop minimum height for compact screen fit */
  }
}
.order-prices-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--s-1);
  letter-spacing: var(--tracking-wide);
}

/* Right side booking card */
.order-cta-card {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: var(--s-4) var(--s-3); /* Shrunken padding for compact screen fit */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center-align content vertically when card is stretched */
  position: relative; /* Static position removes scroll overlaps with navigation */
  z-index: 10;
}
@media (min-width: 881px) {
  .order-cta-card {
    min-height: 380px; /* Matching desktop minimum height for perfect symmetry */
  }
}

.whatsapp-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-2); /* Shrunken spacing */
  background: rgba(255, 205, 4, 0.04);
  margin-left: auto;
  margin-right: auto;
}

.order-cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--s-1); /* Shrunken spacing */
  letter-spacing: var(--tracking-wide);
}

.order-cta-card p {
  color: var(--cream-2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--s-2); /* Shrunken spacing */
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.order-cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  width: 100%;
}

.order-cta-card__actions .btn {
  width: 100%;
  justify-content: center;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
  border-radius: 8px; /* Strict rectangular brand border-radius */
}

.order-cta-card__actions .btn--filled {
  font-weight: 700;
}

.order-cta-card__actions .btn--ghost {
  border-color: var(--rule-strong);
}



/* Hide wholesale elements completely */
.wholesale-only, .wholesale-links {
  display: none !important;
}



/* Alternating variety strokes */
#heather { --variety-accent: var(--heather); --variety-stroke: #ffffff; }
#spring   { --variety-accent: var(--spring);  --variety-stroke: #222222; }
#summer   { --variety-accent: var(--summer);  --variety-stroke: #222222; }
#borage   { --variety-accent: var(--borage);  --variety-stroke: #ffffff; }

/* Inline Brittany Signature script accents */
.sig-script-nav {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.45em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  margin: 0 0.08em;
  position: relative;
  top: -1px;
}

.sig-script-badge {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.45em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  margin: 0 0.12em;
  position: relative;
  top: -1px;
  color: var(--ink); /* Matches badge text color */
}

.sig-script-hero {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.45em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  margin-right: 0.05em;
}

.sig-script-footer-link {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.45em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  margin: 0 0.08em;
  position: relative;
  top: -1px;
}

.sig-script-footer-head {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.55em;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  margin: 0 0.12em;
  position: relative;
  top: -1px;
  color: var(--gold); /* Matches footer heading color */
}




/* ============================================================
   Price Grid Component (Consolidated from order.html)
   ============================================================ */
.price-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}
.price-grid__row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  width: 100%;
  min-height: 44px;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: background-color 0.25s var(--ease);
}
.price-grid__row--header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  min-height: 52px;
}
.price-grid__row:not(.price-grid__row--header):hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.price-grid__row > * {
  padding: 0.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-grid .size {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.2;
}
.price-grid .size small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--cream-3);
  margin-top: 0.2rem;
  letter-spacing: 0;
  text-transform: none;
}

.price-grid .variety {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  padding-left: 0;
}
.price-grid .variety--heather { color: var(--heather); }
.price-grid .variety--spring  { color: var(--spring); }
.price-grid .variety--summer  { color: var(--summer); }
.price-grid .variety--borage  { color: var(--borage); }

.price-grid .price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.price-grid .corner { padding: 0; min-height: 0; }

@media (max-width: 700px) {
  .price-grid__row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .price-grid__row > *:nth-child(2) {
    display: none;
  }
}

/* Styling utility for Products Page Header Image */
.signature-header-img-wrap {
  max-width: 940px;
  margin: 0 auto;
  box-sizing: border-box;
}
