/* =========================================================================
   THE BEEKEEPERS — Design System
   Cultural-luxury · editorial · taste-driven
   Palette & type per brand spec (Annaleda Fier, 10/06/2026)
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --honey:      #C08A3E; /* Miele Profondo — primary accent, CTA, links     */
  --honey-dark: #A97835; /* Hover / active (honey darkened ~8%)             */
  --ivory:      #F5F1EA; /* Avorio Calcareo — primary background            */
  --smoke:      #121212; /* Nero Fumo — primary text                        */
  --graphite:   #4A4A4A; /* Grigio Grafite — secondary text, metadata       */
  --sage:       #6F8068; /* Salvia Sottobosco — badges, tags, system        */
  --terracotta: #D8A497; /* Rosa Terracotta — editorial accent, quotes      */

  /* Derived */
  --hairline:   rgba(18, 18, 18, 0.12); /* Nero Fumo @ 12% — separators     */
  --hairline-soft: rgba(18, 18, 18, 0.08);
  --terra-line: rgba(216, 164, 151, 0.4); /* editorial separator           */
  --ivory-deep: #ECE6DB; /* slightly deeper ivory for panels                */
  --honey-tint: rgba(192, 138, 62, 0.10);

  /* Type */
  --display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: clamp(4rem, 10vw, 9rem);

  --container: 1240px;
  --measure: 62ch; /* readable line length */

  --radius: 2px;
  --transition: 240ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--smoke);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;          /* ampie interlinee */
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--honey); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--honey-dark); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;   /* kerning stretto */
  margin: 0 0 0.4em;
  color: var(--smoke);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.2em; max-width: var(--measure); }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin: 0 0 1.4rem;
  display: block;
}
.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: var(--graphite);
  font-weight: 400;
}
.serif-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}
.section { padding-block: var(--space-xl); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--panel { background: var(--ivory-deep); }
.divider { height: 1px; background: var(--hairline); border: 0; margin: 0; }

.stack > * + * { margin-top: 1.2rem; }
.center { text-align: center; }
.measure-wide { max-width: 760px; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--honey); color: var(--ivory); }
.btn--primary:hover { background: var(--honey-dark); color: var(--ivory); }
.btn--ghost { background: transparent; color: var(--smoke); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--smoke); color: var(--smoke); }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

.text-link {
  font-weight: 500;
  border-bottom: 1px solid var(--terra-line);
  padding-bottom: 1px;
}
.text-link:hover { border-color: var(--honey-dark); }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: var(--sage);
  color: var(--ivory);
}
.pill--outline {
  background: transparent;
  color: var(--graphite);
  border: 1px solid var(--hairline);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 76px;
}
.wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--smoke);
  white-space: nowrap;
}
.wordmark:hover { color: var(--smoke); }
.wordmark .the { font-style: italic; font-weight: 400; font-size: 0.78em; margin-right: 0.18em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}
.nav-links a:not(.btn) {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--smoke);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--honey);
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--honey-dark); }

.nav-utility { display: flex; align-items: center; gap: 1.2rem; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 0.4rem 0.7rem;
  color: var(--graphite);
  transition: background var(--transition), color var(--transition);
}
.lang-toggle button.is-active { background: var(--smoke); color: var(--ivory); }

/* Mobile menu button */
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--smoke); transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 11vw, 9rem);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 18ch; }
.hero h1 { margin-bottom: 0.5em; }
.hero .lede { max-width: 46ch; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__aura {
  position: absolute;
  z-index: 1;
  inset: auto -10% -40% auto;
  width: min(620px, 70vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, var(--terracotta), transparent 62%);
  opacity: 0.5;
  filter: blur(8px);
  pointer-events: none;
}
.hero__aura--2 {
  inset: -20% -6% auto auto;
  width: min(420px, 50vw);
  background: radial-gradient(circle at 50% 50%, rgba(192,138,62,0.55), transparent 64%);
  opacity: 0.4;
}

/* ---------- Image placeholders ---------- */
/* Swap any .ph for a real <img>; keep the aspect class for layout. */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(192,138,62,0.22), rgba(216,164,151,0.30) 48%, rgba(111,128,104,0.22)),
    var(--ivory-deep);
  display: grid;
  place-items: center;
  color: var(--graphite);
}
.ph::after {
  content: attr(data-label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.35);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  pointer-events: none;
}
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-16-9 { aspect-ratio: 16 / 9; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* ---------- Cards ---------- */
.card {
  background: var(--ivory);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { border-color: var(--terra-line); transform: translateY(-3px); }
.card .index {
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--honey-dark);
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--graphite); font-size: 0.98rem; }
.card .card-link { margin-top: auto; padding-top: 1.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* Hive tiles */
.tile { display: flex; flex-direction: column; gap: 1rem; }
.tile .meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.tile h4 { font-family: var(--display); font-weight: 500; }
.tile .tile-city { color: var(--graphite); font-size: 0.85rem; }
.tile.is-soon .ph { filter: grayscale(0.15); }

/* ---------- Quote block ---------- */
.quote {
  border-left: 2px solid var(--terracotta);
  padding-left: clamp(1.4rem, 3vw, 2.6rem);
  max-width: 26ch;
}
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  color: var(--smoke);
  letter-spacing: -0.01em;
  max-width: none;
}
.quote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* ---------- Cities strip ---------- */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  align-items: center;
}
.cities li {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--graphite);
  position: relative;
}
.cities li[data-primary] { color: var(--smoke); }
.cities li[data-primary]::after {
  content: "•";
  color: var(--honey);
  margin-left: 0.5rem;
  font-size: 0.6em;
  vertical-align: middle;
}

/* ---------- Steps / numbered list ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: baseline;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--honey-dark);
}
.steps h4 { margin-bottom: 0.3rem; }
.steps p { color: var(--graphite); margin: 0; }

/* ---------- Membership tiers ---------- */
.tier {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tier.is-featured { border-color: var(--honey); background: var(--honey-tint); }
.tier .tier-name { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.2rem; }
.tier .tier-note { color: var(--graphite); font-size: 0.9rem; margin-bottom: 1.5rem; }
.tier ul.feat { display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.tier ul.feat li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--smoke);
}
.tier ul.feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 7px; height: 7px;
  background: var(--sage);
  border-radius: 50%;
}
.tier .btn { margin-top: auto; }

/* ---------- Forms ---------- */
.form { max-width: 680px; }
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--smoke);
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px var(--honey-tint);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.check { display: flex; align-items: flex-start; gap: 0.7rem; }
.check input { width: auto; margin-top: 0.35rem; }
.check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.9rem; color: var(--graphite); margin: 0; }
.form-note { font-size: 0.85rem; color: var(--graphite); }
.form-success {
  display: none;
  background: var(--honey-tint);
  border: 1px solid var(--honey);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  color: var(--smoke);
}
.form-success.is-visible { display: block; }

/* ---------- Newsletter inline ---------- */
.newsletter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  max-width: 480px;
}
.newsletter input {
  flex: 1 1 220px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.newsletter input:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px var(--honey-tint); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--smoke);
  color: var(--ivory);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.site-footer a { color: var(--ivory); }
.site-footer a:hover { color: var(--honey); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer-wordmark { font-family: var(--display); font-size: 1.6rem; font-weight: 600; color: var(--ivory); margin-bottom: 1rem; }
.footer-wordmark .the { font-style: italic; font-weight: 400; font-size: 0.78em; }
.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1.2rem;
}
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245,241,234,0.16);
  font-size: 0.8rem;
  color: rgba(245,241,234,0.6);
}
.site-footer .newsletter input { background: transparent; border-color: rgba(245,241,234,0.25); color: var(--ivory); }
.site-footer .newsletter input::placeholder { color: rgba(245,241,234,0.5); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2rem, 4vw, 3.5rem); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { max-width: 52ch; margin-top: 1.4rem; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[hidden] { display: none !important; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
    padding: 1rem clamp(1.25rem, 5vw, 3.5rem) 2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 0.9rem 0; width: 100%; border-bottom: 1px solid var(--hairline-soft); font-size: 1rem; }
  .nav-links .btn { margin-top: 1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__inner { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   HOMEPAGE / SHARED HEADER — wireframe layout
   MENU (left) · wordmark (center) · member actions (right) + off-canvas drawer
   ========================================================================= */

/* 3-column header */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
}
.nav-left { justify-self: start; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 1.2rem; }

.wordmark {
  justify-self: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--smoke);
  white-space: nowrap;
}
.wordmark .the { font-style: italic; font-weight: 400; font-size: 0.82em; margin-right: 0.14em; }
.wordmark .dot { color: var(--honey); }

/* MENU trigger */
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.menu-trigger__bars { display: inline-flex; flex-direction: column; gap: 4px; }
.menu-trigger__bars span { display: block; width: 22px; height: 1.5px; background: var(--smoke); transition: var(--transition); }
.menu-trigger[aria-expanded="true"] .menu-trigger__bars span:first-child { transform: translateY(2.75px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] .menu-trigger__bars span:last-child { transform: translateY(-2.75px) rotate(-45deg); }

.nav-login {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
}
.btn--sm { padding: 0.7rem 1.25rem; font-size: 0.7rem; }

/* Off-canvas drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.42);
  backdrop-filter: blur(2px);
  z-index: 60;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.is-open { opacity: 1; }
.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 70;
  width: min(440px, 88vw);
  background: var(--ivory);
  border-right: 1px solid var(--hairline);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-brand { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; font-size: 1.3rem; color: var(--smoke); }
.drawer-brand .the { font-style: italic; font-weight: 400; font-size: 0.82em; margin-right: 0.14em; }
.drawer-brand .dot { color: var(--honey); }
.drawer-close { background: transparent; border: 0; font-size: 1.9rem; line-height: 1; color: var(--smoke); padding: 0 0.2rem; }
.drawer-close:hover { color: var(--honey-dark); }
.drawer-links { display: flex; flex-direction: column; margin-top: 2.4rem; }
.drawer-links a {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 500;
  color: var(--smoke);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  transition: color var(--transition), padding-left var(--transition);
}
.drawer-links a:hover { color: var(--honey-dark); padding-left: 0.5rem; }
.drawer-links a.is-active { color: var(--honey-dark); }
.drawer-foot { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.drawer-foot .btn { align-self: flex-start; }
.drawer-foot a.text-link { color: var(--graphite); }
body.drawer-open { overflow: hidden; }

/* ---------- Hero video — welcome text overlaid on the video ---------- */
.hero-video {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 82vh, 840px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  /* Placeholder backdrop until a real video is dropped in */
  background: linear-gradient(150deg, #9c855f 0%, #7d6f55 35%, #6f8068 70%, #3f4a39 100%);
}
.hero-video__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18,18,18,0.30), rgba(18,18,18,0.16) 42%, rgba(18,18,18,0.44));
}
.hero-video__content { position: relative; z-index: 2; color: #fff; padding: 2rem 1.5rem; }
.hero-video__eyebrow {
  margin: 0 0 0.05em;
  font-family: var(--sans);
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  flex-wrap: wrap;
}
.hero-video__eyebrow .cursive {
  font-family: "Pinyon Script", cursive;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 2.2em;
  line-height: 0.7;
  color: var(--terracotta); /* Rosa Terracotta — the pink "the" */
}
.hero-video__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.hero-video__label {
  position: absolute;
  bottom: 1rem;
  right: 1.3rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-banner {
  position: relative;
  height: clamp(360px, 60vh, 620px);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(192,138,62,0.34), rgba(216,164,151,0.34) 52%, rgba(111,128,104,0.30)),
    var(--ivory-deep);
}
/* To use a real video, drop a <video> with class .hero-banner__media inside. */
.hero-banner__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner__inner { position: relative; z-index: 2; padding: 1.5rem; }
.hero-banner__play {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(18,18,18,0.4);
  background: rgba(245,241,234,0.55);
  display: grid; place-items: center;
  margin: 0 auto 1.6rem;
  transition: transform var(--transition), background var(--transition);
}
.hero-banner:hover .hero-banner__play { transform: scale(1.05); background: rgba(245,241,234,0.8); }
.hero-banner__play svg { width: 22px; height: 22px; margin-left: 3px; fill: var(--smoke); }
.hero-banner__inner p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--smoke);
  margin: 0 auto;
  max-width: 24ch;
}
.hero-banner__label {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.4);
}

/* ---------- Service cards ---------- */
.services-grid { margin-top: 3rem; }
.service {
  background: var(--honey);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(18,18,18,0.12); }
.service--featured { background: var(--honey-dark); }
.service__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.78);
  margin-bottom: 0.9rem;
}
.service h3 { color: var(--ivory); margin-bottom: 0.7rem; }
.service p { color: rgba(245,241,234,0.92); font-size: 0.98rem; max-width: none; }
.service__link {
  margin-top: auto;
  padding-top: 1.6rem;
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
  border-bottom: 1px solid rgba(245,241,234,0.45);
}
.service__link:hover { color: var(--ivory); border-color: var(--ivory); }

/* ---------- Coffee CTA ---------- */
.coffee { text-align: center; }

/* ---------- Newsletter band ---------- */
.news-band {
  position: relative;
  color: var(--ivory);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  /* Replace the sage gradient with a real photo:
     background: linear-gradient(rgba(18,18,18,0.5), rgba(18,18,18,0.55)),
                 url('assets/img/newsletter.jpg') center/cover no-repeat; */
  background:
    linear-gradient(rgba(18,18,18,0.42), rgba(18,18,18,0.52)),
    linear-gradient(135deg, var(--sage), #58684f);
}
.news-band h2, .news-band p, .news-band .news-eyebrow { color: var(--ivory); }
.news-band .news-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.news-band p { color: rgba(245,241,234,0.85); }
.newsletter--line { gap: 0; align-items: flex-end; max-width: 520px; margin-top: 1.8rem; }
.newsletter--line input {
  flex: 1 1 240px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,241,234,0.5);
  border-radius: 0;
  color: var(--ivory);
  padding: 0.7rem 0.2rem;
}
.newsletter--line input::placeholder { color: rgba(245,241,234,0.6); }
.newsletter--line input:focus { outline: none; border-bottom-color: var(--honey); box-shadow: none; }
.newsletter--line button {
  background: transparent;
  border: 1px solid rgba(245,241,234,0.6);
  color: var(--ivory);
  margin-left: 1rem;
}
.newsletter--line button:hover { background: var(--ivory); color: var(--smoke); }
.news-band .form-success { background: rgba(245,241,234,0.12); border-color: rgba(245,241,234,0.4); color: var(--ivory); flex-basis: 100%; margin-top: 1rem; }

/* ---------- Our Hive carousel ---------- */
.hive { padding-top: clamp(2rem, 4vw, 3.5rem); overflow: hidden; }
.hive__head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; padding-block: clamp(14px, 1.8vw, 28px); }
.carousel__track {
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  transition: transform 880ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 auto;
  width: min(1060px, 76vw);
  margin: 0;
}
.carousel__slide .ph {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  opacity: 0.5;
  transform: scale(1);          /* side slides stay as they are */
  transform-origin: center center;
  transition: transform 880ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 760ms ease;
}
.carousel__slide.is-active .ph {
  opacity: 1;
  transform: scale(1.06);        /* active slide zooms in a touch */
}
.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.carousel__place,
.carousel__country {
  flex: 1 1 0;
  font-size: 0.98rem;
  color: var(--graphite);
  letter-spacing: 0.01em;
}
.carousel__country { text-align: right; }
.carousel__nav { display: flex; gap: 0.8rem; flex: 0 0 auto; }
.carousel__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--smoke);
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.carousel__btn:hover { background: var(--smoke); color: var(--ivory); border-color: var(--smoke); }

/* ---------- Responsive (homepage / header) ---------- */
@media (max-width: 760px) {
  .nav { grid-template-columns: auto 1fr; }
  .wordmark { justify-self: end; }
  .nav-right { display: none; }
  .service { min-height: 0; }
  .carousel__slide { width: 84vw; }
  .carousel__btn { width: 48px; height: 48px; }
  .carousel__place, .carousel__country { font-size: 0.85rem; }
}
