:root {
  --cream-50: #f7f3ec;
  --cream-100: #ece3d3;
  --cream-200: #ddccad;
  --gold-300: #d2b171;
  --gold-500: #b38436;
  --forest-700: #28311a;
  --forest-800: #1a2010;
  --ink-900: #12170d;
  --ink-700: #2f3722;
  --ink-500: #4e5841;
  --line-soft: rgba(28, 36, 19, 0.16);
  --surface-light: rgba(255, 251, 242, 0.85);
  --surface-heavy: rgba(245, 232, 206, 0.72);
  --white: #ffffff;
  --radius-lg: 34px;
  --radius-md: 18px;
  --header-height: 92px;
  --content-width: 1180px;
  --shadow-sm: 0 18px 40px rgba(19, 23, 14, 0.11);
  --shadow-lg: 0 34px 80px rgba(13, 16, 10, 0.2);
  --ease-smooth: cubic-bezier(0.21, 1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink-900);
  font-family: 'Manrope', sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 12% -6%, rgba(255, 240, 214, 0.9) 0%, transparent 40%),
    radial-gradient(circle at 90% 110%, rgba(212, 177, 113, 0.42) 0%, transparent 44%),
    linear-gradient(160deg, var(--cream-50) 0%, #f2e8d8 44%, #e9dcc4 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms var(--ease-smooth), transform 420ms var(--ease-smooth);
}

body.page-ready {
  opacity: 1;
  transform: translateY(0);
}

body.page-leaving {
  opacity: 0;
  transform: translateY(-6px);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.2;
  background-image: radial-gradient(rgba(18, 23, 13, 0.2) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

body::after {
  background: linear-gradient(110deg, transparent 10%, rgba(211, 175, 108, 0.1) 48%, transparent 90%);
  animation: shine-drift 16s linear infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--content-width), calc(100% - 3.3rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4rem, 6vw, 6.6rem) 0;
}

.section.narrow {
  padding: clamp(3.3rem, 5vw, 4.8rem) 0 clamp(1.8rem, 2.6vw, 2.4rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.4rem;
  z-index: 2200;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-900);
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
  transition: top 0.2s var(--ease-smooth);
}

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

:focus-visible {
  outline: 3px solid rgba(179, 132, 54, 0.6);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
blockquote {
  font-family: 'Bodoni Moda', serif;
  color: var(--ink-700);
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.7rem, 5.7vw, 5.8rem);
  margin-bottom: 1rem;
  letter-spacing: 0.015em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.26rem, 2.3vw, 1.72rem);
  margin-bottom: 0.6rem;
}

p {
  max-width: 74ch;
  margin-bottom: 0.7rem;
  color: var(--ink-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(241, 228, 203, 0.58), rgba(241, 228, 203, 0.2));
  backdrop-filter: blur(16px);
  transition: background-color 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth), border-color 0.28s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(242, 230, 207, 0.88);
  border-color: rgba(34, 42, 22, 0.12);
  box-shadow: 0 12px 30px rgba(22, 27, 16, 0.16);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: clamp(148px, 13vw, 176px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: transform 0.26s var(--ease-smooth);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 0.24s var(--ease-smooth), opacity 0.24s var(--ease-smooth);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--forest-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.login-link,
.cart-button,
.btn {
  min-height: 44px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 28, 16, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: transform 0.22s var(--ease-smooth), border-color 0.22s var(--ease-smooth), background-color 0.22s var(--ease-smooth);
}

.login-link:hover,
.login-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(28, 34, 20, 0.35);
  background: rgba(255, 255, 255, 0.66);
}

.cart-button {
  width: 44px;
  border: 0;
  border-radius: 50%;
  color: #fdf7ea;
  position: relative;
  background: linear-gradient(140deg, #202814, #32431d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cart-button span {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.73rem;
  font-weight: 800;
  color: #34280f;
  background: linear-gradient(170deg, #f0d092, #c89d57);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  border-radius: 6px;
  background: var(--ink-900);
}

.hero {
  isolation: isolate;
  min-height: min(90vh, 810px);
  display: grid;
  align-items: end;
  padding-bottom: clamp(4.2rem, 7vw, 6rem);
  overflow: hidden;
  /* Fallback so hero text stays legible even if the video is slow to
     paint (slow connection, autoplay blocked, etc.) instead of showing
     cream text on the cream page background. */
  background-color: var(--forest-800);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background:
    linear-gradient(108deg, rgba(15, 20, 10, 0.92) 3%, rgba(18, 24, 12, 0.66) 44%, rgba(20, 26, 14, 0.3) 100%),
    url('https://static.wixstatic.com/media/7903d7_23ef6c5b4cad4c149080cf157dfe43e4~mv2.png/v1/fill/w_1960,h_642,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/7903d7_23ef6c5b4cad4c149080cf157dfe43e4~mv2.png') center / cover no-repeat;
  transform: translateY(var(--hero-shift, 0));
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 14%, rgba(220, 186, 120, 0.38) 0%, transparent 35%),
    linear-gradient(180deg, rgba(17, 22, 11, 0.1) 52%, rgba(10, 13, 8, 0.76) 100%);
}

/* Hero background video — sits above the ::before image/gradient (same
   stacking slot, later in the DOM so it wins the tie) and below ::after's
   existing scrim, so the current darkening/legibility treatment still
   applies over the video without duplicating it. */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero .container {
  max-width: 760px;
}

.hero h1,
.hero p {
  color: #f5ecdd;
}

.hero p {
  font-size: clamp(1.03rem, 1.7vw, 1.24rem);
  letter-spacing: 0.017em;
}

.hero .btn {
  margin-top: 1.15rem;
}

.about,
.craft,
.home-teaser,
.honey,
.honey-showcase,
.newsletter,
.testimonials,
.shop-layout,
.contact-page,
.page-benefits .section,
.page-honey .section.narrow,
.page-shop .section.narrow {
  position: relative;
}

.about::before,
.craft::before,
.home-teaser::before,
.honey::before,
.honey-showcase::before,
.newsletter::before,
.testimonials::before,
.shop-layout::before,
.contact-page::before,
.page-benefits .section::before,
.page-honey .section.narrow::before,
.page-shop .section.narrow::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(138deg, var(--surface-light), var(--surface-heavy));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.about .container,
.craft .container,
.home-teaser .container,
.honey .container,
.honey-showcase .container,
.newsletter .container,
.testimonials .container,
.shop-layout .container,
.contact-page .container,
.page-benefits .section .container,
.page-honey .section.narrow .container,
.page-shop .section.narrow .container {
  padding: clamp(1.6rem, 2.6vw, 2.8rem);
}

.about-text {
  font-size: 1.08rem;
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.product-card,
.testimonial-card,
.filters {
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 34, 19, 0.14);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(243, 230, 206, 0.74));
  box-shadow: var(--shadow-sm);
}

.feature-card,
.product-card {
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.feature-card:hover,
.feature-card:focus-within,
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.feature-card {
  padding: 1.5rem;
  text-align: center;
}

.feature-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
}

.shop-layout .shop-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.filters {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 1.2rem;
  align-items: end;
}

.filters h3 {
  margin-bottom: 0;
}

.filter-group {
  margin-top: 1.1rem;
}

.filter-group h4 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
}

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

.product-card {
  padding: 1.25rem;
  gap: 0.65rem;
  display: grid;
}

.page-shop .product-card > a:first-child,
.page-honey .product-card > a:first-child {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
}

.page-shop .product-card h3,
.page-honey .product-card h3 {
  margin-top: 0.2rem;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 252, 245, 0.96), rgba(237, 218, 183, 0.65));
  padding: 0.55rem;
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(148, 101, 28, 0.4);
  background: linear-gradient(170deg, rgba(240, 218, 170, 0.85), rgba(215, 175, 104, 0.45));
  color: #52360f;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.26rem 0.62rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.83rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.24s var(--ease-smooth), box-shadow 0.24s var(--ease-smooth), border-color 0.24s var(--ease-smooth), background-color 0.24s var(--ease-smooth);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 21, 13, 0.2);
}

.btn-primary {
  color: #f5eddd;
  border: 1px solid transparent;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-700));
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(140deg, #13190b, #33451d);
}

.btn-secondary {
  margin-top: 1rem;
  color: #35270f;
  border: 1px solid rgba(128, 89, 28, 0.32);
  background: linear-gradient(140deg, #e9c98d, #d6aa63);
}

.btn-outline {
  color: var(--ink-700);
  border: 1px solid rgba(28, 34, 19, 0.25);
  background: rgba(255, 255, 255, 0.4);
}

.text-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.emphasis {
  color: var(--forest-700);
  font-weight: 800;
}

.benefits-list {
  margin-top: 1.2rem;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.2rem;
}

.divider {
  margin: 1rem 0 1.1rem;
  letter-spacing: 0.2rem;
  color: var(--gold-500);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1.8rem;
}

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-hero {
  padding-top: clamp(3rem, 4.5vw, 4.2rem);
}

.story-hero .split {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.story-hero img {
  max-height: 520px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.42s var(--ease-smooth);
}

.story-hero:hover img {
  transform: scale(1.01);
}

.newsletter .container {
  text-align: center;
}

.testimonial-card {
  max-width: 930px;
  margin-inline: auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-card blockquote {
  font-size: clamp(1.28rem, 2.25vw, 1.98rem);
  line-height: 1.2;
}

.testimonial-author {
  margin-top: 1rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.82rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink-700);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(27, 34, 17, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-900);
  padding: 0.78rem 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(165, 121, 49, 0.55);
  box-shadow: 0 0 0 4px rgba(170, 126, 54, 0.14);
  background: rgba(255, 255, 255, 0.95);
  outline: 0;
}

.site-footer {
  padding: 2.3rem 0 2.8rem;
}

.footer-shell {
  border-top: 1px solid rgba(31, 39, 20, 0.18);
  padding-top: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-shell p,
.footer-links a {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.footer-logo {
  width: 132px;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 14, 7, 0.8);
  backdrop-filter: blur(4px);
}

.promo-modal.open {
  display: grid;
}

.promo-content {
  width: min(1080px, 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  border: 1px solid rgba(38, 46, 25, 0.3);
  border-radius: calc(var(--radius-lg) + 4px);
  background: #f6eddd;
  box-shadow: var(--shadow-lg);
}

.promo-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-copy {
  padding: 1.7rem;
  text-align: center;
}

.promo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-700);
  background: var(--white);
  cursor: pointer;
}

.scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition: opacity 0.78s var(--ease-smooth), transform 0.78s var(--ease-smooth), filter 0.78s var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.page-home .hero .container,
.page-shop .section.narrow .container,
.page-honey .section.narrow .container,
.page-benefits .section.narrow .container,
.page-about .story-hero .split,
.page-about .story-hero__intro,
.page-contact .contact-page .split {
  opacity: 0;
  transform: translateY(18px);
}

body.page-ready.page-home .hero .container,
body.page-ready.page-shop .section.narrow .container,
body.page-ready.page-honey .section.narrow .container,
body.page-ready.page-benefits .section.narrow .container,
body.page-ready.page-about .story-hero .split,
body.page-ready.page-about .story-hero__intro,
body.page-ready.page-contact .contact-page .split {
  animation: page-hero-rise 760ms var(--ease-smooth) 80ms forwards;
}

.page-shop .section.narrow .container,
.page-benefits .section.narrow .container,
.page-honey .section.narrow .container {
  position: relative;
  overflow: hidden;
}

.page-shop .section.narrow .container::after,
.page-benefits .section.narrow .container::after,
.page-honey .section.narrow .container::after {
  content: '';
  position: absolute;
  inset: auto -10% -35% 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 189, 123, 0.3) 0%, transparent 72%);
  pointer-events: none;
}

@keyframes shine-drift {
  from {
    transform: translateX(-15%);
  }

  to {
    transform: translateX(15%);
  }
}

@keyframes page-hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Featured tee product (Shop page only) ---------- */
.page-shop .tee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-shop .tee-photo {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 248, 232, 0.9) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255, 253, 248, 0.95), rgba(238, 223, 194, 0.7));
  border: 1px solid rgba(26, 34, 19, 0.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.page-shop .tee-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 220ms var(--ease-smooth), transform 520ms var(--ease-smooth);
}

.page-shop .tee-photo:hover img {
  transform: scale(1.015);
}

/* Featured tee: front + back side by side */
.page-shop .tee-photo.tee-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.6rem, 2vw, 1.3rem);
  align-items: center;
}

.page-shop .tee-view {
  margin: 0;
}

.page-shop .tee-view figcaption {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-500);
}

/* ---------- More merch grid (Shop page only) ---------- */
.page-shop .merch-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-shop .merch-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 34, 19, 0.14);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(243, 230, 206, 0.74));
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  text-align: center;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.page-shop .merch-card:hover,
.page-shop .merch-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.page-shop .merch-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.page-shop .merch-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.page-shop .merch-back {
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.page-shop .merch-card:hover .merch-back,
.page-shop .merch-card:focus-within .merch-back {
  opacity: 1;
}

.page-shop .merch-card:hover .merch-front,
.page-shop .merch-card:focus-within .merch-front {
  opacity: 0;
}

.page-shop .merch-card h3 {
  margin-top: 0.95rem;
  margin-bottom: 0.15rem;
}

.page-shop .merch-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-500);
}

/* ============================================================
   SHOP — premium collection redesign (Shop page only)
   ============================================================ */

/* Shared eyebrow */
.page-shop .section-eyebrow,
.page-home .section-eyebrow,
.page-benefits .section-eyebrow,
.page-contact .section-eyebrow,
.page-experiences .section-eyebrow,
.page-club .section-eyebrow {
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

/* Shop hero + collection quick-nav */
.page-shop .shop-hero .shop-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  max-width: 60ch;
}

.page-shop .collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.page-shop .collection-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.42rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 34, 20, 0.2);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  transition: transform 0.24s var(--ease-smooth), border-color 0.24s var(--ease-smooth),
    background-color 0.24s var(--ease-smooth), color 0.24s var(--ease-smooth);
}

.page-shop .collection-nav a:hover,
.page-shop .collection-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(148, 101, 28, 0.5);
  background: rgba(255, 255, 255, 0.8);
}

.page-shop .collection-nav a.is-current {
  color: #f5eddd;
  border-color: transparent;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-700));
}

/* Collection sections + headers */
.page-shop .collection {
  padding-top: clamp(3.4rem, 5.5vw, 5.6rem);
}

.page-shop .collection-head {
  margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem);
}

.page-shop .collection-head h2 {
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  margin-bottom: 0.7rem;
}

.page-shop .collection-head p {
  font-size: 1.03rem;
  max-width: 60ch;
}

.page-shop .collection-head--center {
  text-align: center;
  margin-inline: auto;
}

.page-shop .collection-head--center p {
  margin-inline: auto;
}

/* Apparel — hero product cards */
.page-shop .feature-products {
  margin-top: clamp(2.2rem, 4vw, 3.4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.9rem);
}

.page-shop .feature-products .merch-card {
  padding: 1.4rem;
}

.page-shop .merch-copy {
  margin-top: 1.1rem;
}

.page-shop .merch-collection {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.page-shop .feature-products .merch-card h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

/* Refined card hover — gold ring + gentle image drift */
.page-shop .merch-card {
  position: relative;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth);
}

.page-shop .merch-card:hover,
.page-shop .merch-card:focus-within {
  border-color: rgba(179, 132, 54, 0.55);
}

.page-shop .merch-media img {
  transition: opacity 0.45s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.page-shop .merch-card:hover .merch-front {
  transform: scale(1.04);
}

/* Placeholder media system (lifestyle + future drops) */
.page-shop .placeholder-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(28, 36, 19, 0.26);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 248, 232, 0.95) 0%, transparent 58%),
    linear-gradient(150deg, rgba(255, 253, 248, 0.96), rgba(236, 223, 191, 0.72));
}

.page-shop .placeholder-media--dark {
  border-color: rgba(210, 177, 113, 0.3);
  background:
    radial-gradient(circle at 78% -8%, rgba(211, 175, 108, 0.32) 0%, transparent 46%),
    linear-gradient(150deg, #1f2814 0%, #141a0d 60%, #0d1108 100%);
}

.page-shop .ph-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.page-shop .ph-eyebrow--light {
  color: var(--gold-300);
}

.page-shop .ph-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  color: var(--ink-700);
  line-height: 1.1;
}

.page-shop .ph-note {
  font-size: 0.82rem;
  color: var(--ink-500);
  max-width: 34ch;
}

.page-shop .ph-mark {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: rgba(148, 101, 28, 0.35);
}

/* Chopsticks teaser silhouette */
.page-shop .chopsticks {
  position: relative;
  width: 46%;
  height: 46%;
  display: block;
}

.page-shop .chopsticks i {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 4px;
  height: 88%;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(240, 218, 170, 0.9), rgba(200, 160, 96, 0.5));
  transform-origin: bottom center;
}

.page-shop .chopsticks i:first-child { transform: translateX(-50%) rotate(-9deg); }
.page-shop .chopsticks i:last-child { transform: translateX(-50%) rotate(6deg); }

/* Lifestyle band */
.page-shop .lifestyle .container {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}

.page-shop .lifestyle-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-shop .lifestyle-frame .placeholder-media--wide {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: 0;
}

.page-shop .lifestyle-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 0.9rem;
}

/* Future Drops */
.page-shop .future-drops {
  position: relative;
}

.page-shop .drop-grid {
  margin-top: clamp(2rem, 3.6vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.9rem);
  max-width: 760px;
  margin-inline: auto;
}

.page-shop .drop-card {
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 34, 19, 0.14);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(243, 230, 206, 0.7));
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.4rem 1.7rem;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth);
}

.page-shop .drop-card:hover,
.page-shop .drop-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(179, 132, 54, 0.5);
}

.page-shop .drop-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 252, 245, 0.96), rgba(237, 224, 196, 0.7));
}

.page-shop .drop-media .placeholder-media {
  border-radius: 0;
  border: 0;
}

/* real product photography inside the drop cards */
.page-shop .drop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-smooth);
}

.page-shop .drop-card:hover .drop-media img,
.page-shop .drop-card:focus-within .drop-media img {
  transform: scale(1.04);
}

/* self-contained editorial posters (soap, wax) — show whole poster, never crop */
.page-shop .drop-media--poster img {
  object-fit: contain;
  padding: 0.4rem;
}

.page-shop .drop-card:hover .drop-media--poster img,
.page-shop .drop-card:focus-within .drop-media--poster img {
  transform: scale(1.02);
}

.page-shop .drop-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #52360f;
  border: 1px solid rgba(148, 101, 28, 0.42);
  background: linear-gradient(170deg, rgba(240, 218, 170, 0.92), rgba(215, 175, 104, 0.6));
  box-shadow: 0 6px 14px rgba(19, 23, 14, 0.14);
}

/* second badge for the collectible chopsticks */
.page-shop .drop-tag--edition {
  left: auto;
  right: 0.85rem;
  color: #f4ead7;
  border-color: rgba(240, 230, 212, 0.3);
  background: linear-gradient(150deg, rgba(31, 40, 20, 0.92), rgba(13, 17, 8, 0.88));
}

.page-shop .drop-collection {
  margin: 1.1rem 0 0.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.page-shop .drop-card h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.3rem, 2vw, 1.62rem);
}

.page-shop .drop-desc {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 0.92rem;
  color: var(--ink-500);
}

/* Crafted With Purpose — ending collage */
.page-shop .crafted {
  padding-top: clamp(4rem, 6vw, 6.6rem);
}

.page-shop .crafted-head {
  text-align: center;
  max-width: min(760px, 92%);
  margin: 0 auto clamp(2rem, 3.6vw, 3rem);
}

.page-shop .crafted-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.page-shop .crafted-lede {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-500);
}

.page-shop .crafted-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(118px, 15vw, 188px);
  gap: clamp(0.8rem, 1.6vw, 1.1rem);
}

.page-shop .crafted-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

/* collage tiles are quiet links (portals) — whole tile clickable */
.page-shop .crafted-tile a {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 3;
}

.page-shop .crafted-tile:hover,
.page-shop .crafted-tile:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.page-shop .crafted-tile img,
.page-shop .crafted-tile .placeholder-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 0;
}

.page-shop .crafted-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem 1rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f6ecdb;
  background: linear-gradient(180deg, transparent, rgba(12, 16, 9, 0.72));
}

.page-shop .tile-a { grid-column: span 2; grid-row: span 2; }
.page-shop .tile-b { grid-column: span 4; grid-row: span 2; }
.page-shop .tile-c { grid-column: span 2; }
.page-shop .tile-d { grid-column: span 2; }
.page-shop .tile-e { grid-column: span 2; }

.page-shop .crafted-cta {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
}

/* product-card image slot awaiting real photography (e.g. Ginger Shots) */
.page-shop .product-card .pc-placeholder {
  min-height: 210px;
  height: 100%;
  border-radius: 12px;
  align-self: stretch;
}

/* ---------- The Pho Pop-Up — cinematic editorial gallery (Shop page only) ---------- */
.page-shop .pho-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 3.6vw, 3rem);
}

.page-shop .pho-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.page-shop .pho-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--ink-500);
  max-width: 58ch;
}

.page-shop .pho-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(120px, 12vw, 178px);
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
  grid-template-areas:
    "a a b b d d"
    "a a c c d d"
    "e e e f f f";
}

.page-shop .pho-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease-smooth);
}

.page-shop .pho-tile--a { grid-area: a; }
.page-shop .pho-tile--b { grid-area: b; }
.page-shop .pho-tile--c { grid-area: c; }
.page-shop .pho-tile--d { grid-area: d; }
.page-shop .pho-tile--e { grid-area: e; }
.page-shop .pho-tile--f { grid-area: f; }

.page-shop .pho-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s var(--ease-smooth);
}

.page-shop .pho-tile:hover {
  box-shadow: var(--shadow-lg);
}

.page-shop .pho-tile:hover img {
  transform: scale(1.05);
}

.page-shop .pho-foot {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--ink-500);
}

/* Subtle teaser bridging the Pho Experience to the chopsticks drop */
.page-shop .pho-teaser {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  padding-top: clamp(1.7rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.page-shop .pho-teaser__tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.page-shop .pho-teaser__title {
  margin: 0 0 0.35rem;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  color: var(--ink-700);
}

.page-shop .pho-teaser__copy {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--ink-500);
}

.page-shop .pho-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-700);
  border-bottom: 1px solid rgba(179, 132, 54, 0.5);
  padding-bottom: 3px;
  transition: color 0.24s var(--ease-smooth), border-color 0.24s var(--ease-smooth), gap 0.24s var(--ease-smooth);
}

.page-shop .pho-teaser__link::after {
  content: '\2192';
}

.page-shop .pho-teaser__link:hover,
.page-shop .pho-teaser__link:focus-visible {
  color: var(--gold-500);
  border-color: var(--gold-500);
  gap: 0.65rem;
}

/* ---------- From the Archive — editorial artifact (Shop page only) ---------- */
.page-shop .archive {
  padding-top: clamp(3.8rem, 6.5vw, 6.4rem);
  padding-bottom: clamp(3.8rem, 6.5vw, 6.4rem);
}

.page-shop .archive-head {
  text-align: center;
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
}

.page-shop .archive-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.page-shop .archive-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--forest-700);
  margin: 0;
}

.page-shop .archive-figure {
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-shop .archive-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-shop .archive-copy {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}

.page-shop .archive-copy > p {
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.75;
  color: var(--ink-500);
  margin: 0 auto;
}

.page-shop .archive-line {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem) !important;
  line-height: 1.32 !important;
  color: var(--forest-700) !important;
  max-width: 24ch;
  margin: clamp(1.8rem, 3.4vw, 2.6rem) auto clamp(1.5rem, 2.8vw, 2.1rem) !important;
}

.page-shop .archive-note {
  font-size: 0.76rem !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-500) !important;
}

/* ---------- Premium size selector (Honey product card) ---------- */
.size-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.35rem 0 0.9rem;
}

.size-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-height: 44px;
  padding: 0.66rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(28, 34, 20, 0.2);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: left;
  transition: transform 0.24s var(--ease-smooth), border-color 0.24s var(--ease-smooth),
    background-color 0.24s var(--ease-smooth), box-shadow 0.24s var(--ease-smooth);
}

.size-option:hover,
.size-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(148, 101, 28, 0.5);
  background: rgba(255, 255, 255, 0.82);
}

.size-option.is-selected {
  border-color: transparent;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-700));
  box-shadow: 0 12px 24px rgba(19, 23, 14, 0.2);
}

.size-name {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--ink-700);
}

.size-price {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.06rem;
  line-height: 1;
  color: var(--gold-500);
}

.size-option.is-selected .size-name {
  color: #f6ecdb;
}

.size-option.is-selected .size-price {
  color: var(--gold-300);
}

/* Add-to-cart confirmation state */
.btn.is-added {
  color: #2c2007;
  background: linear-gradient(140deg, #e6c583, #cfa155);
}

/* ---------- Quick View modal (Shop honey card) ---------- */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  place-items: center;
  padding: 1.2rem;
  background: rgba(10, 14, 7, 0.8);
  backdrop-filter: blur(5px);
}

.qv-modal.open {
  display: grid;
}

.qv-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 2.4rem);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(138deg, var(--surface-light), var(--surface-heavy));
  box-shadow: var(--shadow-lg);
  animation: qv-rise 0.32s var(--ease-smooth);
}

@keyframes qv-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.qv-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-700);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease-smooth);
}

.qv-close:hover,
.qv-close:focus-visible {
  transform: scale(1.06);
}

.qv-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 252, 245, 0.96), rgba(237, 224, 196, 0.65));
}

.qv-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.5rem;
}

.qv-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.qv-info h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.3rem;
}

.qv-desc {
  margin: 0 0 0.7rem;
  max-width: 34ch;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink-500);
}

.qv-price {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  color: var(--forest-700);
  margin-bottom: 1.1rem;
}

.qv-choose {
  margin: 0 0 0.55rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}

.qv-info .btn-primary {
  width: 100%;
  margin-top: 0.3rem;
}

@media (max-width: 640px) {
  .qv-dialog {
    grid-template-columns: 1fr;
  }

  .qv-media img {
    aspect-ratio: 4 / 3;
    max-height: 40vh;
  }
}

/* ---------- Community signup modal ---------- */
.signup-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 2.4rem);
  overflow: auto;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(138deg, var(--surface-light), var(--surface-heavy));
  box-shadow: var(--shadow-lg);
  animation: qv-rise 0.32s var(--ease-smooth);
}

.signup-card h3 {
  font-size: clamp(1.55rem, 3.4vw, 2.1rem);
  margin-bottom: 0.7rem;
  max-width: 18ch;
}

.signup-intro {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-500);
}

.signup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.34rem;
}

.signup-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.94rem;
  color: var(--ink-500);
}

.signup-list li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-300), var(--gold-500));
}

.signup-form {
  display: grid;
  gap: 0.85rem;
}

.signup-field {
  display: grid;
  gap: 0.4rem;
}

.signup-field > span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-700);
}

.signup-form input[type='text'],
.signup-form input[type='email'] {
  width: 100%;
  border: 1px solid rgba(27, 34, 17, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-900);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.signup-form input[type='text']:focus,
.signup-form input[type='email']:focus {
  outline: 0;
  border-color: rgba(165, 121, 49, 0.55);
  box-shadow: 0 0 0 4px rgba(170, 126, 54, 0.14);
  background: rgba(255, 255, 255, 0.97);
}

/* custom checkbox */
.signup-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
  margin: 0.2rem 0 0.3rem;
  cursor: pointer;
}

.signup-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.signup-check__box {
  margin-top: 0.12rem;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(28, 34, 20, 0.35);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  transition: background-color 0.2s var(--ease-smooth), border-color 0.2s var(--ease-smooth);
}

.signup-check__box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #f6ecdb;
  border-bottom: 2px solid #f6ecdb;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  margin-top: -2px;
  transition: transform 0.2s var(--ease-smooth);
}

.signup-check input:checked + .signup-check__box {
  border-color: transparent;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-700));
}

.signup-check input:checked + .signup-check__box::after {
  transform: rotate(-45deg) scale(1);
}

.signup-check input:focus-visible + .signup-check__box {
  box-shadow: 0 0 0 4px rgba(170, 126, 54, 0.2);
}

.signup-check__label {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-500);
}

.signup-error {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #9a3412;
}

#signup-submit {
  width: 100%;
  margin-top: 0.3rem;
  position: relative;
}

#signup-submit.is-loading {
  color: transparent;
  pointer-events: none;
}

.signup-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(245, 237, 221, 0.4);
  border-top-color: #f5eddd;
  animation: signup-spin 0.7s linear infinite;
}

#signup-submit.is-loading .signup-spinner {
  display: block;
}

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

.signup-success {
  text-align: center;
  padding: 0.6rem 0.4rem;
}

.signup-success__mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #f6ecdb;
  background: linear-gradient(140deg, var(--forest-800), var(--forest-700));
  box-shadow: 0 12px 24px rgba(19, 23, 14, 0.2);
}

.signup-success h3 {
  max-width: none;
  margin-bottom: 0.6rem;
}

.signup-success p {
  margin: 0 auto 0.5rem;
  max-width: 42ch;
  color: var(--ink-500);
}

.signup-success__lead {
  color: var(--ink-700);
  font-weight: 700;
}

.signup-success p:last-of-type {
  margin-bottom: 1.3rem;
}

@media (prefers-reduced-motion: reduce) {
  .signup-card { animation: none; }
  .signup-spinner { animation-duration: 1.4s; }
}

.page-shop .tee-price {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem;
  color: var(--forest-700);
  font-weight: 700;
  margin-top: 0.3rem;
}

.page-shop .swatches {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.page-shop .swatch {
  --swatch-color: #171512;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--swatch-color);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(19, 23, 14, 0.25);
  cursor: pointer;
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth);
}

.page-shop .swatch:hover,
.page-shop .swatch:focus-visible {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 20px rgba(19, 23, 14, 0.3);
}

.page-shop .swatch.is-selected {
  box-shadow: 0 0 0 2px var(--cream-50), 0 0 0 4px var(--gold-500), 0 10px 20px rgba(19, 23, 14, 0.3);
}

.page-shop .swatch-label {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-500);
}

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

/* ---------- Editorial photo storytelling (Shop page only) ---------- */
.page-shop .editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.page-shop .editorial-row:last-child {
  margin-bottom: 0;
}

.page-shop .editorial-row--reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.page-shop .editorial-row--reverse .editorial-photo {
  order: 2;
}

.page-shop .editorial-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.page-shop .editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-smooth);
}

.page-shop .editorial-photo:hover img {
  transform: scale(1.045);
}

.page-shop .editorial-eyebrow {
  color: var(--gold-500);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

/* ---------- Community photo gallery (Shop page only) ---------- */
.page-shop .photo-gallery {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-shop .photo-gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease-smooth);
}

.page-shop .photo-gallery__item:hover,
.page-shop .photo-gallery__item:focus-within {
  box-shadow: var(--shadow-lg);
}

.page-shop .photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.page-shop .photo-gallery__item:hover img {
  transform: scale(1.08);
}

/* ---------- The Juice Pop-Up at Phase Surf — featured experience (Shop page only) ---------- */
.page-shop .juice-popup .popup-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.8rem, 4.4vw, 4rem);
  align-items: center;
  padding: clamp(1.7rem, 3.4vw, 3.2rem);
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(210, 177, 113, 0.3);
  background:
    radial-gradient(circle at 86% -12%, rgba(211, 175, 108, 0.32) 0%, transparent 46%),
    radial-gradient(circle at 8% 118%, rgba(40, 49, 26, 0.6) 0%, transparent 40%),
    linear-gradient(150deg, #1f2814 0%, #141a0d 58%, #0d1108 100%);
  box-shadow: var(--shadow-lg);
}

.page-shop .juice-popup .popup-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 244, 220, 0.09) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.page-shop .popup-media {
  position: relative;
}

.page-shop .popup-media__main {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.page-shop .popup-media__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.page-shop .popup-panel:hover .popup-media__main img {
  transform: scale(1.045);
}

.page-shop .popup-media__detail {
  position: absolute;
  left: -5%;
  bottom: -8%;
  width: 44%;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 5px solid #141a0d;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease-smooth);
}

.page-shop .popup-media__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-shop .popup-panel:hover .popup-media__detail {
  transform: translateY(-6px);
}

.page-shop .popup-copy {
  position: relative;
  z-index: 1;
}

.page-shop .popup-eyebrow {
  color: var(--gold-300);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.55rem;
}

.page-shop .popup-copy h2 {
  color: #f7edda;
  margin-bottom: 0.9rem;
}

.page-shop .popup-lede {
  color: rgba(245, 236, 219, 0.9);
  font-size: 1.08rem;
  max-width: 46ch;
}

.page-shop .popup-facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.6rem;
  display: grid;
  gap: 0.85rem;
}

.page-shop .popup-facts li {
  display: grid;
  grid-template-columns: minmax(96px, 128px) 1fr;
  gap: 1.1rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(210, 177, 113, 0.2);
}

.page-shop .popup-facts li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-shop .popup-facts .k {
  color: var(--gold-300);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.73rem;
}

.page-shop .popup-facts .v {
  color: rgba(244, 236, 220, 0.82);
}

.page-shop .popup-note {
  color: rgba(240, 231, 214, 0.68);
  max-width: 48ch;
}

.page-shop .popup-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-shop .popup-actions .btn-secondary {
  margin-top: 0;
}

.page-shop .popup-ghost {
  color: #f3ead9;
  border: 1px solid rgba(240, 230, 212, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.page-shop .popup-ghost:hover,
.page-shop .popup-ghost:focus-visible {
  border-color: rgba(240, 230, 212, 0.72);
  background: rgba(255, 255, 255, 0.11);
}

@media (max-width: 1100px) {
  .container {
    width: min(940px, calc(100% - 2rem));
  }

  .page-shop .juice-popup .popup-panel {
    grid-template-columns: 1fr;
    gap: clamp(2.6rem, 6vw, 3.4rem);
  }

  .page-shop .popup-media__detail {
    left: auto;
    right: 4%;
    bottom: 4%;
    width: 30%;
  }

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

  .shop-layout .shop-grid {
    grid-template-columns: 1fr;
  }

  .page-shop .tee-layout {
    grid-template-columns: 1fr;
  }

  .page-shop .editorial-row,
  .page-shop .editorial-row--reverse {
    grid-template-columns: 1fr;
  }

  .page-shop .editorial-row--reverse .editorial-photo {
    order: 0;
  }

  .page-shop .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-shop .lifestyle .container {
    grid-template-columns: 1fr;
  }

  .filters,
  .page-shop .product-card > a:first-child,
  .page-honey .product-card > a:first-child {
    grid-template-columns: 1fr;
  }

  .products,
  .benefits-list,
  .split {
    grid-template-columns: 1fr;
  }

  .promo-content {
    grid-template-columns: 1fr;
    max-width: 570px;
  }

  .promo-content img {
    max-height: 240px;
  }
}

/* Nav collapses to the mobile menu once the eight items no longer fit the header
   row (measured: they need ~1058px). Same menu, same type, same spacing —
   only the width it engages at. */
@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-nav.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    top: calc(var(--header-height) - 7px);
    border: 1px solid rgba(29, 36, 19, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(16, 20, 12, 0.18);
    background: rgba(246, 236, 217, 0.98);
    padding: 1rem;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(700px, calc(100% - 1.3rem));
  }


  .page-shop .popup-media__detail {
    display: none;
  }

  .page-shop .feature-products,
  .page-shop .drop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-shop .crafted-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(130px, 30vw, 190px);
  }

  .page-shop .tile-a,
  .page-shop .tile-b,
  .page-shop .tile-c,
  .page-shop .tile-d,
  .page-shop .tile-e {
    grid-column: auto;
    grid-row: auto;
  }

  .page-shop .tile-b {
    grid-column: span 2;
  }

  .page-shop .pho-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-auto-rows: clamp(150px, 40vw, 210px);
    grid-auto-flow: row dense;
  }

  .page-shop .pho-tile--a,
  .page-shop .pho-tile--b,
  .page-shop .pho-tile--c,
  .page-shop .pho-tile--d,
  .page-shop .pho-tile--e,
  .page-shop .pho-tile--f {
    grid-area: auto;
  }

  .page-shop .pho-tile--a,
  .page-shop .pho-tile--d {
    grid-row: span 2;
  }

  .hero {
    min-height: 72vh;
    padding-bottom: 3.9rem;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .section {
    padding: 3.7rem 0;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 1rem);
  }

  .feature-grid,
  .products,
  .page-shop .photo-gallery,
  .page-shop .merch-grid,
  .page-shop .feature-products,
  .page-shop .drop-grid,
  .page-shop .pho-gallery {
    grid-template-columns: 1fr;
  }

  .page-shop .pho-gallery {
    grid-auto-rows: clamp(210px, 66vw, 320px);
  }

  .page-shop .pho-tile--a,
  .page-shop .pho-tile--d {
    grid-row: auto;
  }

  .btn {
    width: 100%;
  }

  .site-nav.nav-open {
    left: 0.45rem;
    right: 0.45rem;
  }

  .promo-copy {
    padding: 1.2rem 1rem 1.4rem;
  }
}

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

  body {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body::after {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .btn,
  .feature-card,
  .product-card,
  .site-header,
  .login-link {
    transition: none;
  }

  .hero::before {
    transform: none;
  }

  .page-home .hero .container,
  .page-shop .section.narrow .container,
  .page-honey .section.narrow .container,
  .page-benefits .section.narrow .container,
  .page-about .story-hero .split,
  .page-contact .contact-page .split {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   EXPERIENCES — editorial travel journal (.page-experiences)
   ============================================================ */
.page-experiences main { overflow: clip; }

/* Hero */
.exp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-50);
  isolation: isolate;
}
.exp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.06);
  animation: expHeroZoom 12s var(--ease-smooth) forwards;
}
@keyframes expHeroZoom { to { transform: scale(1); } }
.exp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,32,24,0.28) 0%, rgba(20,32,24,0.05) 38%, rgba(18,28,21,0.72) 100%);
}
.exp-hero__inner {
  /* no width override — .container governs, so the hero text lines up with the header */
  padding-bottom: clamp(3rem, 8vw, 6.5rem);
  opacity: 0;
  transform: translateY(26px);
  animation: expHeroIn 1.6s var(--ease-smooth) 0.35s forwards;
}
@keyframes expHeroIn { to { opacity: 1; transform: none; } }
.exp-hero__eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: rgba(248,239,227,0.82);
}
.exp-hero h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
  color: var(--cream-50);
}
.exp-hero__lead {
  max-width: 30rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(248,239,227,0.9);
  margin: 0;
}

/* Introduction */
.exp-intro { text-align: center; }
.exp-intro .container { max-width: 860px; }
.exp-intro p {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.1vw, 2.35rem);
  line-height: 1.42;
  color: var(--forest-800);
  margin: 0;
}
.exp-intro p .soft { color: var(--gold-500); font-style: italic; }

/* Chapter */
.exp-chapter__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2.4rem, 5vw, 5.5rem);
  align-items: center;
}
.exp-chapter--reverse .exp-chapter__media { order: 2; }
.exp-chapter__num {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-500);
  margin: 0 0 0.9rem;
}
.exp-chapter__text h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--forest-800);
  margin: 0 0 1.4rem;
}
.exp-chapter__text p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.8;
  color: var(--ink-700);
  margin: 0 0 1.15rem;
  max-width: 34rem;
}
.exp-chapter__text .btn { margin-top: 0.9rem; }

/* Media cluster — a main frame with an offset companion */
.exp-cluster { position: relative; }
.exp-cluster img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.exp-cluster__main { aspect-ratio: 4 / 5; }
/* Qualified with img so it outranks `.exp-cluster img { width: 100% }` above,
   which would otherwise stretch the inset to full width. */
.exp-cluster img.exp-cluster__inset {
  position: absolute;
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream-100);
  right: -6%;
  bottom: -9%;
  box-shadow: var(--shadow-lg);
}
.exp-chapter--reverse .exp-cluster__inset { right: auto; left: -6%; }

/* Honey harvest — large gallery band */
.exp-harvest__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.4rem, 4vw, 3.4rem); }
.exp-harvest__head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  color: var(--forest-800);
  margin: 0.9rem 0 1.2rem;
}
.exp-harvest__head p { font-size: 1.06rem; line-height: 1.8; color: var(--ink-700); margin: 0 auto; max-width: 40rem; }
.exp-harvest__grid,
.exp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}
.exp-harvest__grid figure,
.exp-gallery__grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.exp-harvest__grid img,
.exp-gallery__grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease-smooth); }
.exp-harvest__grid figure:hover img,
.exp-gallery__grid figure:hover img { transform: scale(1.05); }
.hv-a, .g-a { grid-column: span 7; grid-row: span 2; }
.hv-b, .g-b { grid-column: span 5; }
.hv-c, .g-c { grid-column: span 5; }
.hv-d, .g-d { grid-column: span 4; }
.hv-e, .g-e { grid-column: span 4; }
.hv-f, .g-f { grid-column: span 4; }
.exp-harvest__cta { text-align: center; margin-top: clamp(2.2rem, 4vw, 3.2rem); }

/* Chapter Four — collaborations timeline */
.exp-timeline__head { max-width: 640px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.exp-timeline__head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--forest-800);
  margin: 0.8rem 0 1.1rem;
}
.exp-timeline__head p { font-size: 1.06rem; line-height: 1.8; color: var(--ink-700); margin: 0; }
.exp-timeline { position: relative; padding-left: clamp(1.6rem, 4vw, 3rem); }
.exp-timeline::before {
  content: "";
  position: absolute;
  left: clamp(0.35rem, 1vw, 0.6rem);
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-300), var(--line-soft));
}
.exp-tl-item { position: relative; padding: 0 0 clamp(2rem, 4vw, 2.9rem) clamp(1.4rem, 3vw, 2.4rem); }
.exp-tl-item:last-child { padding-bottom: 0; }
.exp-tl-item::before {
  content: "";
  position: absolute;
  left: calc(clamp(0.35rem, 1vw, 0.6rem) - clamp(1.4rem, 3vw, 2.4rem) - 4px);
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 2px solid var(--gold-500);
}
.exp-tl-item--live::before { background: var(--forest-700); border-color: var(--forest-700); box-shadow: 0 0 0 5px rgba(64,110,80,0.14); }
.exp-tl-status {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--gold-500);
  margin: 0 0 0.5rem;
}
.exp-tl-item--live .exp-tl-status { color: var(--forest-700); }
.exp-tl-item h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--forest-800);
  margin: 0 0 0.45rem;
}
.exp-tl-item p { font-size: 1rem; line-height: 1.75; color: var(--ink-700); margin: 0; max-width: 38rem; }
.exp-tl-item--future h3 { color: var(--ink-500); }

/* From the archive (reuses shop .archive styling look) */
.exp-road__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.exp-road__text h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--forest-800);
  margin: 0.8rem 0 1.3rem;
}
.exp-road__text p { font-size: 1.06rem; line-height: 1.85; color: var(--ink-700); margin: 0 0 1.1rem; max-width: 33rem; }
.exp-road__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.7rem, 1.4vw, 1.1rem); }
.exp-road__media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.exp-road__media figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.exp-road__media .rm-tall { grid-row: span 2; }

/* Ending */
.exp-finale { text-align: center; background: var(--forest-800); color: var(--cream-50); }
.exp-finale .container { max-width: 780px; }
.exp-finale h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 0 0 1.6rem;
  color: var(--cream-50);
}
.exp-finale p { font-size: 1.1rem; line-height: 1.8; color: rgba(248,239,227,0.82); margin: 0 auto 2.2rem; max-width: 34rem; }
.exp-finale .btn-primary { background: var(--gold-500); color: var(--forest-800); border-color: var(--gold-500); }
.exp-finale .btn-primary:hover { background: var(--cream-50); border-color: var(--cream-50); }

/* Responsive */
@media (max-width: 860px) {
  .exp-chapter__grid,
  .exp-road__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .exp-chapter--reverse .exp-chapter__media { order: 0; }
  .exp-cluster__main { aspect-ratio: 4 / 3; }
  .exp-cluster img.exp-cluster__inset { width: 40%; right: 4%; bottom: -8%; }
  .exp-chapter--reverse .exp-cluster__inset { left: auto; right: 4%; }
  .exp-cluster { margin-bottom: 2.2rem; }
  .exp-harvest__grid,
  .exp-gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .hv-a, .g-a { grid-column: span 6; grid-row: span 1; }
  .hv-b, .hv-c, .g-b, .g-c { grid-column: span 3; }
  .hv-d, .hv-e, .hv-f, .g-d, .g-e, .g-f { grid-column: span 2; }
  .exp-road__media .rm-tall { grid-row: span 1; }
}

/* ---- Editorial feature components (Chapter Two treatment) ---- */

/* Full-bleed photograph — breaks the container, edge to edge */
.exp-fullbleed {
  margin: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 6rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.exp-fullbleed img {
  display: block;
  width: 100%;
  height: clamp(320px, 62vh, 720px);
  object-fit: cover;
}

/* Opener — chapter label, headline, generous lede */
.exp-feature__opener .container { max-width: 780px; }
.exp-feature__opener h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  color: var(--forest-800);
  margin: 0 0 1.6rem;
}
.exp-lede {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0;
}

/* Pull quote — the quiet beat */
.exp-quote { text-align: center; }
.exp-quote .container { max-width: 720px; }
.exp-quote blockquote {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.36;
  color: var(--forest-700);
}
.exp-quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-500);
}

/* Plain framed photograph for two-column beats */
.exp-frame {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Large centred figure with caption — the payoff */
.exp-figure-lg { margin: 0 auto; max-width: 900px; }
.exp-figure-lg img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.exp-figure-lg figcaption,
.exp-caption {
  margin-top: 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--ink-500);
  font-style: italic;
}

/* Closing note + CTA */
.exp-feature__close {
  max-width: 620px;
  margin: clamp(2.8rem, 6vw, 4.5rem) auto 0;
  text-align: center;
}
.exp-feature__close p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0 0 1.8rem;
}

@media (max-width: 860px) {
  .exp-fullbleed img { height: clamp(260px, 46vh, 420px); }
}

/* Archive on the Experiences page — portrait crop, sized to breathe */
.page-experiences .archive {
  padding-top: clamp(3.8rem, 6.5vw, 6.4rem);
  padding-bottom: clamp(3.8rem, 6.5vw, 6.4rem);
}
.page-experiences .archive-head {
  text-align: center;
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
}
.page-experiences .archive-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-500);
}
.page-experiences .archive-title {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--forest-700);
  margin: 0;
}
.page-experiences .archive-figure {
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-experiences .archive-figure img { display: block; width: 100%; height: auto; }
.page-experiences .archive-copy { max-width: 56ch; margin: 0 auto; text-align: center; }
.page-experiences .archive-copy > p {
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.75;
  color: var(--ink-500);
  margin: 0 auto;
}
.page-experiences .archive-line {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  line-height: 1.32;
  color: var(--forest-700);
  max-width: 24ch;
  margin: clamp(1.8rem, 3.4vw, 2.6rem) auto 0;
}

/* Phase Surf gallery — anchor target for the Chapter One button.
   Reuses the harvest grid rules above; only the heading and anchor offset are new. */
.exp-gallery { scroll-margin-top: calc(var(--header-height) + 12px); }
.exp-gallery__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); }
.exp-gallery__head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  color: var(--forest-800);
  margin: 0.9rem 0 1.1rem;
}
.exp-gallery__head p { font-size: 1.04rem; line-height: 1.8; color: var(--ink-700); margin: 0; }

/* Deterministic row heights for the gallery: the smooth-scroll destination is computed
   before the lazy images decode, so rows must not depend on image load or the landing drifts. */
.exp-gallery__grid { grid-auto-rows: clamp(150px, 22vw, 285px); }
@media (max-width: 860px) {
  .exp-gallery__grid { grid-auto-rows: clamp(105px, 26vw, 175px); }
  .g-a { grid-row: span 2; }
}

/* Our Training — a compact strip, so the certificates read as a footnote not a headline */
.exp-training__head {
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.exp-training__head h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.14;
  color: var(--forest-800);
  margin: 0.7rem 0 1rem;
}
.exp-training__head p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-500);
  margin: 0;
}
.exp-training__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.4vw, 1.15rem);
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.exp-training__grid li { margin: 0; text-align: center; }
.exp-training__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--cream-100);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  box-shadow: var(--shadow-sm);
}
.exp-training__grid span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .exp-training__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- Home: turning the page from the story into the shop ---- */
.page-home .home-turn { text-align: center; padding-bottom: clamp(0.8rem, 1.6vw, 1.4rem); }
.page-home .home-turn .container { max-width: 720px; }
.page-home .home-turn__line {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.42;
  color: var(--forest-800);
  margin: 0.6rem 0 0;
}
.page-home .home-shop { padding-top: clamp(1.2rem, 2.6vw, 2rem); }
.page-home .home-shop__cta { margin-top: clamp(1.8rem, 3vw, 2.6rem); text-align: center; }

/* ---- Home: supporting note under the editorial turn ---- */
.page-home .home-turn__note {
  max-width: 58ch;
  margin: 1.2rem auto 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink-500);
}

/* ---- Home teasers — image + text, pointing into Honey and Experiences ---- */
.page-home .home-teaser__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 3.2vw, 3rem);
  align-items: center;
  text-align: left;
}
.page-home .home-teaser--reverse .home-teaser__media { order: 2; }
.page-home .home-teaser__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.page-home .home-teaser__text p { margin-bottom: 1.4rem; }

@media (max-width: 780px) {
  .page-home .home-teaser__grid { grid-template-columns: 1fr; text-align: center; }
  .page-home .home-teaser--reverse .home-teaser__media { order: 0; }
}

/* ---- Home: arriving at the source — the Dominican Republic illustration ----
   Full width, never cropped (height:auto). Masked to transparent at both edges so
   it dissolves into the page's cream gradient instead of ending on a hard line. */
.page-home .home-source {
  margin: 0 0 clamp(-5rem, -5vw, -2rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.page-home .home-source img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 66%, transparent 99%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 66%, transparent 99%);
}

/* ---- Home: the four principles ----
   Scoped to .craft so the shared .feature-card border, background, shadow and
   hover lift are inherited untouched. Only the mark, a gold hairline, and the
   supporting line are added. */
.page-home .craft .feature-mark {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0.2rem auto 1.05rem;
  color: var(--gold-500);
  opacity: 0.72;
}
.page-home .craft .feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.page-home .craft .feature-rule {
  display: block;
  width: 24px;
  height: 1px;
  margin: 0.8rem auto;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}
.page-home .craft .feature-card p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 24ch;
  margin-inline: auto;
}

/* ---- About: Learning Never Stops ----
   Quiet editorial beat. The cooking photograph carries the section; the
   certificate sits beside it smaller, framed like an artifact rather than a
   credential. Generous air on every side. */
.page-about .learning {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.page-about .learning__head {
  max-width: 54ch;
  margin: 0 auto clamp(2.6rem, 5vw, 4.2rem);
  text-align: center;
}
.page-about .learning__head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  color: var(--forest-800);
  margin: 0 0 1.2rem;
}
.page-about .learning__head p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--ink-700);
  margin: 0;
}
.page-about .learning__media {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.page-about .learning__photo,
.page-about .learning__cert { margin: 0; }
.page-about .learning__photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.page-about .learning__cert img {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  background: var(--cream-50);
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.page-about .learning__cert figcaption {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
  line-height: 1.6;
}
.page-about .learning__cta {
  /* clear the global p{max-width:74ch} so the link centres on the full container */
  max-width: none;
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
  text-align: center;
}

@media (max-width: 780px) {
  .page-about .learning__media { grid-template-columns: 1fr; gap: 2rem; }
  .page-about .learning__cert { max-width: 300px; margin: 0 auto; text-align: center; }
}

/* ---- About: documentary opening frame ----
   One full-width photograph, gently parallaxed, masked into the cream at the
   foot so the page emerges from it rather than sitting under a banner. */
.page-about .story-hero { padding-top: 0; padding-bottom: 0; }
.page-about .story-hero__media {
  position: relative;
  margin: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(360px, 64vh, 660px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
}
.page-about .story-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.06);
  will-change: transform;
}
.page-about .story-hero__intro {
  position: relative;
  z-index: 1;
  margin-top: clamp(-8rem, -9vw, -4.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.6rem);
}
.page-about .story-hero__intro h1 { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .page-about .story-hero__img { transform: none; }
}

/* ============================================================
   INFO (.page-benefits) + CONTACT (.page-contact)
   ============================================================ */

/* The Info page is editorial, not a stack of cards — drop the panel treatment */
.page-benefits .section::before { content: none; }
.page-benefits .section .container { padding-left: 0; padding-right: 0; }

.page-benefits .info-hero { padding-bottom: clamp(1rem, 2vw, 2rem); }
.page-benefits .info-hero h1 { margin: 0 0 1.1rem; }
.info-lede {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.85;
  color: var(--ink-700);
  max-width: 46ch;
}

.info-block__head { max-width: 52ch; margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem); }
.info-block__head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  color: var(--forest-800);
  margin: 0 0 0.9rem;
}
.info-block__head p { font-size: 1.02rem; line-height: 1.85; color: var(--ink-700); margin: 0; }

/* Key / value points */
.info-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.info-points li {
  display: grid;
  grid-template-columns: minmax(0, 12rem) 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.info-points li:last-child { border-bottom: 1px solid var(--line-soft); }
.info-points__k {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-500);
}
.info-points__v { color: var(--ink-700); line-height: 1.75; }

/* Ingredients ledger */
.info-ledger { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); }
.info-ledger__col h3 {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--forest-700); margin: 0 0 1.1rem;
}
.info-ledger__col--never h3 { color: var(--ink-500); }
.info-ledger ul { list-style: none; margin: 0; padding: 0; }
.info-ledger li {
  padding: 0.85rem 0; border-top: 1px solid var(--line-soft);
  color: var(--ink-700); font-size: 1.02rem;
}
.info-ledger li:last-child { border-bottom: 1px solid var(--line-soft); }
.info-ledger__col--never li { color: var(--ink-500); }

/* Storage steps */
.info-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(2, minmax(0,1fr)); }
.info-steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.info-steps__n {
  font-family: "Bodoni Moda", serif; font-size: 1.05rem; color: var(--gold-500);
  line-height: 1.6; min-width: 1.8rem;
}
.info-steps p { margin: 0; color: var(--ink-700); line-height: 1.75; max-width: 34ch; }

/* Delivery areas — shared by Info and Contact */
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(0.9rem, 2vw, 1.4rem); }
.area-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,254,251,0.92), rgba(243,230,206,0.6));
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-card__mark {
  display: block; width: 22px; height: 1px; margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--gold-300), transparent);
}
.area-card h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.35rem; color: var(--forest-800); margin: 0 0 0.5rem; }
.area-card p { margin: 0; font-size: 0.92rem; line-height: 1.7; color: var(--ink-500); }
.area-note {
  margin: clamp(1.4rem, 2.6vw, 2rem) 0 0;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-500);
}

/* FAQ accordion — native <details>, works without JS */
.faq { border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative; font-size: 1.06rem; color: var(--forest-800);
  font-weight: 600; transition: color 0.3s var(--ease-smooth);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-500); }
.faq__item summary::after {
  content: ""; position: absolute; right: 0.35rem; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 1.5px solid var(--gold-500); border-bottom: 1.5px solid var(--gold-500);
  transform: rotate(45deg); transition: transform 0.35s var(--ease-smooth);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.faq__body { padding: 0 2.5rem 1.5rem 0; }
.faq__body p { margin: 0; color: var(--ink-500); line-height: 1.85; max-width: 62ch; }
.faq__more { margin-top: clamp(1.6rem, 3vw, 2.4rem); color: var(--ink-500); }

/* Info closing */
.page-benefits .info-close { text-align: center; }
.page-benefits .info-close blockquote {
  margin: 0 auto 2rem; max-width: 22ch;
  font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.32; color: var(--forest-700);
}

/* ---- Contact ---- */
.contact-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(420px, 66vh, 640px); color: var(--cream-50); isolation: isolate;
}
.contact-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.contact-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,28,21,0.62) 0%, rgba(18,28,21,0.18) 46%, transparent 72%),
    linear-gradient(180deg, rgba(20,32,24,0.30) 0%, rgba(20,32,24,0.10) 38%, rgba(18,28,21,0.78) 100%);
}
.contact-hero__inner { padding-bottom: clamp(2.6rem, 6vw, 5rem); }
.contact-hero h1 {
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 5.4rem); line-height: 1.02;
  margin: 0 0 1.1rem; color: var(--cream-50);
}
.contact-hero p {
  max-width: 44ch; margin: 0; font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.8; color: rgba(248,239,227,0.92);
}

.reach-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(0.9rem, 2vw, 1.4rem); }
.reach-card {
  position: relative; display: block; text-decoration: none;
  border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,254,251,0.92), rgba(243,230,206,0.6));
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.reach-card:hover, .reach-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.reach-card h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.4rem; color: var(--forest-800); margin: 0 0 0.55rem; }
.reach-card p { margin: 0; font-size: 0.95rem; line-height: 1.7; color: var(--ink-500); max-width: 30ch; }
.reach-card__go {
  position: absolute; right: clamp(1.3rem, 3vw, 2rem); bottom: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold-500); transition: transform 0.35s var(--ease-smooth);
}
.reach-card:hover .reach-card__go { transform: translateX(5px); }

.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.visit__media img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.visit__text h2 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.14; color: var(--forest-800); margin: 0 0 1.1rem; }
.visit__text p { color: var(--ink-700); line-height: 1.85; margin: 0 0 1.1rem; }

/* Contact form */
.form-shell { max-width: 780px; }
.cc-form { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.2vw, 1.5rem); }
.cc-field { display: grid; gap: 0.5rem; }
.cc-field--wide { grid-column: 1 / -1; }
.cc-field > span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--ink-500); }
.cc-field input, .cc-field textarea {
  width: 100%; font: inherit; color: var(--ink-900);
  background: rgba(255,254,251,0.7);
  border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 0.85rem 1rem; transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.cc-field textarea { resize: vertical; min-height: 8rem; }
.cc-field input:focus, .cc-field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(179,132,54,0.16);
}
.cc-error { grid-column: 1 / -1; margin: 0; color: #8c3a2b; font-size: 0.92rem; }
.cc-actions { grid-column: 1 / -1; margin-top: 0.4rem; }
.cc-success { text-align: center; padding: clamp(2rem, 4vw, 3rem) 0; }
.cc-success__mark {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest-700); color: var(--cream-50); font-size: 1.1rem; margin-bottom: 1.1rem;
}
.cc-success h3 { font-family: "Bodoni Moda", serif; font-weight: 500; color: var(--forest-800); margin: 0 0 0.7rem; }
.cc-success p { margin: 0 auto; color: var(--ink-500); max-width: 40ch; }

/* Social row */
.social-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(0.9rem, 2vw, 1.4rem); }
.social-link {
  display: grid; gap: 0.4rem; text-align: left; text-decoration: none; cursor: pointer;
  border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,254,251,0.92), rgba(243,230,206,0.6));
  padding: clamp(1.2rem, 2.4vw, 1.7rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
  font: inherit;
}
.social-link:hover, .social-link:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.social-link__k { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--gold-500); }
.social-link__v { color: var(--forest-800); font-size: 1.02rem; }

/* Contact closing */
.page-contact .contact-close { text-align: center; }
.page-contact .contact-close p {
  margin: 0 auto; max-width: 46ch;
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.55; color: var(--forest-700);
}

@media (max-width: 780px) {
  .info-points li { grid-template-columns: 1fr; gap: 0.35rem; }
  .info-ledger,
  .info-steps,
  .reach-grid,
  .visit__grid,
  .cc-form { grid-template-columns: 1fr; }
  .area-grid, .social-row { grid-template-columns: 1fr; }
}

/* ============================================================
   THE CANE CLUB (.page-club)
   ============================================================ */
.page-club .section::before { content: none; }
.page-club .section .container { padding-left: 0; padding-right: 0; }

/* Hero — the complete poster. Never cropped, never distorted: width:100% + height:auto
   means the whole artwork is always shown, at its true aspect ratio.
   Two treatments, swap the modifier class on .club-hero:
     .club-hero--full   edge-to-edge banner
     .club-hero--framed centred art print with breathing room */
.club-hero {
  padding-top: clamp(1.6rem, 3vw, 2.6rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}
.club-hero__poster { margin: 0 auto; }
.club-hero__poster img {
  display: block;
  width: 100%;
  height: auto;        /* full composition, no crop, no stretch */
}

/* A — edge to edge */
.club-hero--full .club-hero__poster {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.club-hero--full .club-hero__text { margin-top: clamp(2rem, 4vw, 3.2rem); }

/* B — framed art print */
.club-hero--framed .club-hero__poster {
  max-width: min(1060px, 100%);
  padding: clamp(0.7rem, 1.5vw, 1.15rem);
  background: var(--cream-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: club-float 9s var(--ease-smooth) infinite;
}
.club-hero--framed .club-hero__poster img { border-radius: 4px; }
.club-hero--framed .club-hero__text {
  margin-top: clamp(2.2rem, 4.5vw, 3.4rem);
  text-align: center;
}
.club-hero--framed .club-hero__body { margin-left: auto; margin-right: auto; }

.club-hero__text h1 {
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02;
  color: var(--forest-800); margin: 0 0 1rem;
}
.club-hero__lead {
  font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem); line-height: 1.4;
  color: var(--gold-500); margin: 0 0 1.2rem;
}
.club-hero__body {
  font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.85;
  color: var(--ink-700); max-width: 46ch; margin: 0 0 2rem;
}

/* Subtle, elegant — a slow breath, nothing more */
@keyframes club-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -9px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .club-hero--framed .club-hero__poster { animation: none; }
}

/* Live status strip */
.page-club .club-status { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.club-status__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: clamp(1.3rem, 2.6vw, 1.9rem) 0;
}
.club-status__k {
  margin: 0 0 0.45rem; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: var(--gold-500);
}
.club-status__v {
  margin: 0; font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--forest-800);
}
.club-status__v.is-locked { color: var(--ink-500); }

/* Timeline */
.club-timeline { list-style: none; margin: 0; padding: 0 0 0 clamp(1.4rem, 3vw, 2.4rem); position: relative; }
.club-timeline::before {
  content: ""; position: absolute; left: 4px; top: 0.6rem; bottom: 0.6rem; width: 2px;
  background: linear-gradient(180deg, var(--gold-300), var(--line-soft));
}
.club-tl { position: relative; padding: 0 0 clamp(1.8rem, 3.4vw, 2.6rem) clamp(1.2rem, 2.6vw, 2rem); }
.club-tl:last-child { padding-bottom: 0; }
.club-tl::before {
  content: ""; position: absolute;
  left: calc(-1 * clamp(1.2rem, 2.6vw, 2rem) - 0px); top: 0.35rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--cream-50); border: 2px solid var(--gold-500);
  margin-left: -0.5px;
}
.club-tl--accent::before { background: var(--forest-700); border-color: var(--forest-700); box-shadow: 0 0 0 5px rgba(64,110,80,0.14); }
.club-tl__when {
  margin: 0 0 0.4rem; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700; color: var(--gold-500);
}
.club-tl--accent .club-tl__when { color: var(--forest-700); }
.club-tl h3 {
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--forest-800); margin: 0 0 0.4rem;
}
.club-tl p { margin: 0; color: var(--ink-700); line-height: 1.75; max-width: 42ch; }

/* Plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(0.9rem, 2vw, 1.4rem); border: 0; padding: 0; margin: 0; }
.plan-card { position: relative; display: block; cursor: pointer; }
.plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-card__body {
  display: grid; gap: 0.5rem;
  border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,254,251,0.92), rgba(243,230,206,0.6));
  padding: clamp(1.4rem, 2.8vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}
.plan-card:hover .plan-card__body { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card input:checked + .plan-card__body {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--gold-300);
}
.plan-card input:focus-visible + .plan-card__body { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.plan-card__k { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.35rem; color: var(--forest-800); }
.plan-card__v { font-size: 0.94rem; line-height: 1.7; color: var(--ink-500); }

/* Box builder */
.box-builder { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(1.6rem, 3.4vw, 3rem); align-items: start; }
.flavor-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.flavor {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.1rem, 2.2vw, 1.5rem) 0; border-bottom: 1px solid var(--line-soft);
  transition: opacity 0.35s var(--ease-smooth);
}
.flavor__text h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.3rem; color: var(--forest-800); margin: 0 0 0.25rem; }
.flavor__text p { margin: 0; font-size: 0.92rem; color: var(--ink-500); }
.flavor.is-active .flavor__text h3 { color: var(--gold-500); }

.stepper { display: flex; align-items: center; gap: 0.5rem; }
.stepper__btn {
  width: 2.2rem; height: 2.2rem; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-soft); background: rgba(255,254,251,0.8);
  color: var(--forest-800); font-size: 1rem; line-height: 1;
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
}
.stepper__btn:hover:not(:disabled) { border-color: var(--gold-500); transform: scale(1.08); }
.stepper__btn:disabled { opacity: 0.35; cursor: default; }
.stepper__btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.stepper__n {
  min-width: 2ch; text-align: center; font-family: "Bodoni Moda", serif;
  font-size: 1.2rem; color: var(--forest-800);
}

.box-summary {
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,254,251,0.94), rgba(243,230,206,0.66));
  padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--header-height, 76px) + 1.2rem);
}
.box-summary__count {
  margin: 0.3rem 0 1.2rem; font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; color: var(--forest-800);
}
.box-summary__unit { font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); font-family: "Manrope", sans-serif; }
.box-summary__rows { margin: 0 0 1.4rem; display: grid; gap: 0; }
.box-summary__rows > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-top: 1px solid var(--line-soft); }
.box-summary__rows dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.box-summary__rows dd { margin: 0; color: var(--forest-800); text-align: right; }
.box-summary .btn { width: 100%; }
.box-summary .btn:disabled { opacity: 0.45; cursor: default; }
.box-summary__note { margin: 1rem 0 0; font-size: 0.82rem; line-height: 1.65; color: var(--ink-500); }

/* Member controls */
.control-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.control-grid li { padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.control__mark { display: block; width: 20px; height: 1px; margin-bottom: 0.9rem; background: linear-gradient(90deg, var(--gold-300), transparent); }
.control-grid h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.2rem; color: var(--forest-800); margin: 0 0 0.35rem; }
.control-grid p { margin: 0; font-size: 0.92rem; line-height: 1.7; color: var(--ink-500); }

/* Philosophy */
.page-club .club-philosophy { text-align: center; }
.page-club .club-philosophy blockquote {
  margin: 0.8rem auto 1.6rem; max-width: 24ch;
  font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.28; color: var(--forest-700);
}
.page-club .club-philosophy p { margin: 0 auto; max-width: 58ch; color: var(--ink-700); line-height: 1.9; }

/* Benefits */
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 clamp(1.6rem, 4vw, 3.4rem); }
.benefit-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; padding: 1.1rem 0; border-top: 1px solid var(--line-soft); }
.benefit-list span { font-family: "Bodoni Moda", serif; color: var(--gold-500); font-size: 0.95rem; }
.benefit-list p { margin: 0; color: var(--ink-700); line-height: 1.75; }

/* Close */
.page-club .club-close { text-align: center; }
.page-club .club-close h2 {
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08; color: var(--forest-800); margin: 0 0 1rem;
}
.page-club .club-close p { margin: 0 auto 2rem; max-width: 42ch; color: var(--ink-700); line-height: 1.8; }

@media (max-width: 900px) {
  .box-builder { grid-template-columns: 1fr; }
  .box-summary { position: static; }
  .control-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 780px) {
  .club-status__grid,
  .plan-grid,
  .control-grid,
  .benefit-list { grid-template-columns: 1fr; }
}

/* Cane Club — four-step route */
.route-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(1rem, 2.4vw, 1.8rem); }
.route-step { padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }
.route-step__n { display: block; font-family: "Bodoni Moda", serif; font-size: 1rem; color: var(--gold-500); margin-bottom: 0.8rem; }
.route-step h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 1.22rem; line-height: 1.2; color: var(--forest-800); margin: 0 0 0.45rem; }
.route-step p { margin: 0; font-size: 0.93rem; line-height: 1.7; color: var(--ink-500); }

/* Cane Club — final cinematic band */
.page-club .club-final {
  text-align: center;
  background: var(--forest-800);
  padding-top: clamp(4rem, 9vw, 7.5rem);
  padding-bottom: clamp(4rem, 9vw, 7.5rem);
}
.page-club .club-final h2 {
  font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.02;
  color: var(--cream-50); margin: 0 0 1.2rem;
}
.page-club .club-final p { margin: 0 auto 2.2rem; max-width: 42ch; color: rgba(248,239,227,0.82); line-height: 1.8; }
.page-club .club-final .btn-primary { background: var(--gold-500); color: var(--forest-800); border-color: var(--gold-500); }
.page-club .club-final .btn-primary:hover { background: var(--cream-50); border-color: var(--cream-50); }

@media (max-width: 900px) { .route-steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 780px) {
  .club-hero__grid { grid-template-columns: 1fr; }
  .club-hero__figure { max-width: 340px; margin: 0 auto; }
  .route-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   CANE CLUB — press schedule + membership join
   Reuses the Contact page form language (.cc-*) so the two forms on the
   site read as one system.
   ============================================================ */

/* --- the weekly schedule --- */
.press-schedule {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.press-schedule__step {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}
.press-schedule__step.is-press { border-top-color: var(--gold-500); }
.press-schedule__day {
  margin: 0; font-family: "Bodoni Moda", serif; font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--forest-800); line-height: 1.1;
}
.press-schedule__time {
  margin: 0.3rem 0 0.7rem; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 800; color: var(--gold-500);
}
.press-schedule__what { margin: 0; color: var(--ink-700); line-height: 1.7; font-size: 0.95rem; }

/* --- join form --- */
.club-form { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); max-width: 46rem; }
.club-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.2vw, 1.5rem); }
.club-form .cc-field > span em { font-style: normal; text-transform: none; letter-spacing: 0; opacity: 0.7; }
/* .cc-field styles inputs and textareas; the club form adds a select */
.cc-field select {
  width: 100%; font: inherit; color: var(--ink-900);
  background: rgba(255,254,251,0.7);
  border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 0.85rem 1rem; transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.cc-field select:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(179,132,54,0.16);
}
.cc-hint { font-style: normal; font-size: 0.82rem; color: var(--ink-500); line-height: 1.6; }

.cc-fieldset { border: 0; margin: 0; padding: 0; }
.cc-fieldset legend {
  padding: 0; margin-bottom: 0.7rem; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-500);
}
.cc-choices { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cc-choice { position: relative; }
.cc-choice input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.cc-choice span {
  display: block; padding: 0.6rem 1.2rem; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(255,254,251,0.7);
  font-size: 0.92rem; color: var(--ink-700);
  transition: all 0.3s var(--ease-smooth);
}
.cc-choice input:checked + span {
  background: var(--forest-800); border-color: var(--forest-800); color: var(--cream-50);
}
.cc-choice input:focus-visible + span {
  outline: 2px solid var(--gold-500); outline-offset: 2px;
}
.cc-choice:hover input:not(:checked) + span { border-color: var(--gold-500); }

.cc-consent {
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start;
  color: var(--ink-700); font-size: 0.92rem; line-height: 1.65; cursor: pointer;
}
.cc-consent input { margin-top: 0.25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--forest-700); }

/* --- confirmation --- */
.club-welcome {
  text-align: center; max-width: 44rem; margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,254,251,0.9), rgba(236,227,211,0.4));
}
.club-welcome:focus { outline: none; }
.club-welcome__mark {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest-700); color: var(--cream-50); font-size: 1.25rem; margin-bottom: 1.2rem;
}
.club-welcome h2 { margin: 0 0 0.8rem; }
.club-welcome__lead {
  margin: 0 0 0.9rem; font-family: "Bodoni Moda", serif; font-size: 1.2rem; color: var(--forest-700);
}
.club-welcome__body { margin: 0 auto 1.8rem; max-width: 42ch; color: var(--ink-700); line-height: 1.8; }
.club-welcome__rows {
  display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem);
  margin: 0 0 1.9rem; padding: 1.2rem 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.club-welcome__rows dt {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 800; color: var(--gold-500);
}
.club-welcome__rows dd {
  margin: 0.4rem 0 0; font-family: "Bodoni Moda", serif; font-size: 1.05rem; color: var(--forest-800);
}

@media (max-width: 760px) {
  .press-schedule { grid-template-columns: 1fr; gap: 1.4rem; }
  .club-form__row { grid-template-columns: 1fr; }
}
