/* main.css — SOSO'S. Layered in one file, banner-commented:
   1 reset · 2 base · 3 utilities · 4 header/nav · 5 hero + page-head ·
   6 sections + editorial · 7 buttons · 8 cards + photo slots · 9 CTA band ·
   10 forms · 11 contact block · 12 footer · 13 timeline · 14 motion ·
   15 responsive details.
   Mobile-first; min-width breakpoints at 40rem / 56rem / 75rem. */

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.6;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}
p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

/* ---------- 2. Base ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}
h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-1);
}
a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 0.2em;
  transition: text-decoration-color var(--dur) var(--ease);
}
a:hover {
  text-decoration-color: var(--accent);
}
::selection {
  background: var(--amber);
  color: var(--aubergine);
}
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 3. Utilities ---------- */
.container {
  width: min(100% - 2.5rem, 71rem);
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 2.5rem, 46rem);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-s);
  z-index: 100;
  padding: 0.6em 1em;
  background: var(--cream);
  color: var(--aubergine);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: var(--space-s);
}
/* Tracked-caps eyebrow — short lines only (PSARA · SINCE 1982 etc.) */
.kicker {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--accent-text, var(--accent));
}
.lede {
  font-size: var(--step-1);
  font-family: var(--font-display);
  line-height: 1.4;
  max-width: 34ch;
  color: var(--ink);
}
.prose {
  max-width: var(--measure);
}
.prose p + p {
  margin-top: 1em;
}
.prose a {
  text-decoration-line: underline;
}
.prose h2 {
  font-size: var(--step-1);
  margin-top: var(--space-l);
  margin-bottom: 0.5em;
}
.prose h2:first-child {
  margin-top: 0;
}
/* Standalone thyme illustration as a feature panel (honey page). */
.thyme-feature .thyme-illustration {
  width: min(100%, 30rem);
  margin-inline: auto;
}
/* Honey-drop list markers — path duplicated from partials/svg/drop.njk (canon). */
.drop-list {
  list-style: none;
  padding: 0;
}
.drop-list li {
  position: relative;
  padding-left: 1.5em;
  margin-block: 0.55em;
}
.drop-list li::before {
  content: "";
  position: absolute;
  left: 0.15em;
  top: 0.32em;
  width: 0.55em;
  height: 0.98em;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 25'%3E%3Cpath d='M7 0C7 6 0 11.5 0 17.6C0 21.9 3.1 25 7 25C10.9 25 14 21.9 14 17.6C14 11.5 7 6 7 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 25'%3E%3Cpath d='M7 0C7 6 0 11.5 0 17.6C0 21.9 3.1 25 7 25C10.9 25 14 21.9 14 17.6C14 11.5 7 6 7 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* Small centered drop as a section divider. */
.drop-divider {
  display: flex;
  justify-content: center;
  padding-block: var(--space-m);
}
.drop-divider .drop {
  width: 0.8rem;
  height: auto;
  opacity: 0.85;
}

/* ---------- 4. Header + nav ---------- */
.site-header {
  background: var(--aubergine);
  color: var(--cream);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding-block: 1.1rem;
}
.site-header__brand {
  display: inline-flex;
  text-decoration: none;
}
.site-header__brand .wordmark {
  height: 1.9rem;
  width: auto;
}
.wordmark__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 76px;
  fill: currentColor;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: inherit;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
.nav-toggle__label {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-toggle__bars {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.nav-toggle__bars::before {
  top: -6px;
}
.nav-toggle__bars::after {
  top: 6px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__link {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(250, 248, 242, 0.85);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-nav__link:hover {
  color: var(--cream);
  border-bottom-color: var(--amber-soft);
}
.site-nav__link[aria-current="page"] {
  color: var(--cream);
  border-bottom-color: var(--amber);
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
}
.lang-link {
  text-decoration: none;
  color: rgba(250, 248, 242, 0.6);
  font-weight: 500;
}
.lang-link.active {
  color: var(--cream);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
}
.lang-separator {
  color: rgba(250, 248, 242, 0.35);
}

/* Mobile nav: panel under the header, driven by [aria-expanded]/.nav-open. */
@media (max-width: 55.99rem) {
  .js .nav-toggle {
    display: inline-flex;
  }
  .site-header {
    position: relative;
  }
  .js .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--aubergine);
    border-top: 1px solid var(--rule);
    box-shadow: 0 18px 30px rgba(37, 15, 46, 0.35);
  }
  .js .nav-open .site-nav {
    display: block;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-s) var(--space-m) var(--space-m);
  }
  .site-nav__list > li {
    width: 100%;
  }
  .site-nav__link {
    display: block;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav__lang {
    padding-top: var(--space-s);
  }
}

/* ---------- 5. Hero + interior page head ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--aubergine-bright) -20%, var(--aubergine) 45%, var(--aubergine-deep) 110%);
  color: var(--cream);
  text-align: center;
}
.hero .container {
  position: relative;
  padding-block: var(--space-2xl);
}
.hero__bee {
  width: 2.6rem;
  height: auto;
  margin-inline: auto;
  margin-bottom: var(--space-m);
  color: var(--amber-soft);
}
.hero .wordmark {
  width: min(76vw, 26rem);
  height: auto;
  margin-inline: auto;
}
.hero__product {
  margin-top: var(--space-m);
  font-size: clamp(0.95rem, 0.8rem + 0.9vw, 1.35rem);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--cream);
}
.hero__heritage {
  margin-top: var(--space-xs);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--amber-soft);
}
.hero__support {
  margin-top: var(--space-m);
  margin-inline: auto;
  max-width: 44ch;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: rgba(250, 248, 242, 0.9);
}
.hero__actions {
  margin-top: var(--space-l);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-s);
}
.hero__actions--start {
  justify-content: flex-start;
}

/* Interior pages: compact aubergine head band. */
.page-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--aubergine-bright) -30%, var(--aubergine) 55%, var(--aubergine-deep) 120%);
  color: var(--cream);
}
.page-head .container {
  position: relative;
  padding-block: var(--space-xl);
}
.page-head .kicker {
  color: var(--amber-soft);
}
.page-head h1 {
  margin-top: var(--space-xs);
  max-width: 18ch;
}
.page-head__lede {
  margin-top: var(--space-m);
  max-width: 52ch;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: rgba(250, 248, 242, 0.88);
}

/* ---------- 6. Sections + editorial ---------- */
.section {
  position: relative; /* hex whisper layers against this */
  background: var(--bg);
  color: var(--ink);
  padding-block: var(--space-xl);
}
.section > .container {
  position: relative;
}
.section--tight {
  padding-block: var(--space-l);
}
.section__head {
  max-width: var(--measure);
  margin-bottom: var(--space-l);
}
.section__head .kicker {
  display: block;
  margin-bottom: var(--space-xs);
}
.section__head h2 {
  max-width: 22ch;
}
.section__head .section__lede {
  margin-top: var(--space-s);
  font-size: var(--step-1);
  font-family: var(--font-display);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 48ch;
}
.split {
  display: grid;
  gap: var(--space-l);
  align-items: center;
}
@media (min-width: 56rem) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-text {
    grid-template-columns: 3fr 2fr;
  }
  .split > .split__media--first {
    order: -1;
  }
}
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin-block: var(--space-l);
}
.section__cta {
  margin-top: var(--space-l);
}
/* Melokourkouta stays a discreet aside: small, ruled off, never a hero. */
.melokourkouta {
  margin-top: var(--space-xl);
  padding-top: var(--space-m);
  border-top: 1px solid var(--rule);
  max-width: var(--measure);
}
.melokourkouta__name {
  font-size: var(--step-1);
}
.melokourkouta__text {
  margin-top: 0.4rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ---------- 7. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: var(--amber);
  color: var(--aubergine);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover {
  background: #b97a1a;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
  transform: translateY(-1px);
}
.btn--dark {
  background: var(--aubergine);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--aubergine-deep);
}

/* ---------- 8. Cards + photo slots ---------- */
.card-grid {
  display: grid;
  gap: var(--space-m);
}
.card-grid--center {
  max-width: 44rem;
}
@media (min-width: 40rem) {
  .card-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-shade);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--space-m);
  text-align: center;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}
.product-card .jar {
  width: clamp(4.5rem, 9vw, 6rem);
  height: auto;
  margin-inline: auto;
  margin-bottom: var(--space-s);
  color: var(--aubergine);
}
.product-card__size {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
}
.product-card__label {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}
.product-card__note {
  margin-top: var(--space-s);
  font-size: var(--step--1);
  color: var(--ink-soft);
  max-width: 26ch;
  margin-inline: auto;
}

/* Photo slots: fixed-aspect graphic panels standing in for future real
   photography — swapping in an <img> later reflows nothing. */
.photo-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--cream-shade), #e5ddcb);
}
.photo-slot--tall {
  aspect-ratio: 3 / 4;
}
.photo-slot--wide {
  aspect-ratio: 21 / 9;
}
.photo-slot--honey {
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(250, 248, 242, 0.55), transparent 55%),
    linear-gradient(160deg, #e5b264 0%, var(--amber) 55%, #8a5a0e 130%);
}
.photo-slot--island {
  background:
    radial-gradient(140% 100% at 80% 0%, rgba(250, 248, 242, 0.5), transparent 60%),
    linear-gradient(165deg, #a9b0b5 0%, #7e858d 60%, #5d6167 120%);
}
.photo-slot--thyme {
  background:
    radial-gradient(120% 100% at 20% 10%, rgba(250, 248, 242, 0.4), transparent 55%),
    linear-gradient(160deg, #b98cc4 0%, var(--thyme) 55%, #5d3268 130%);
}
.photo-slot--dusk {
  background: linear-gradient(165deg, var(--aubergine-bright) 0%, var(--aubergine) 70%, var(--aubergine-deep) 130%);
}
.photo-slot .thyme-illustration {
  position: absolute;
  inset-inline: 5%;
  bottom: -6%;
  width: 90%;
  height: auto;
  opacity: 0.95;
}
/* On dark/purple slots the thyme flips to silhouette tones for contrast. */
.photo-slot--dusk .thyme-wood path,
.photo-slot--thyme .thyme-wood path {
  stroke: #6d7f63;
}
.photo-slot--dusk .thyme-leaves use,
.photo-slot--thyme .thyme-leaves use {
  fill: #6d7f63;
}
.photo-slot--dusk .thyme-bloom use,
.photo-slot--thyme .thyme-bloom use {
  fill: #d9b3e2;
}
.photo-slot__label {
  position: absolute;
  left: var(--space-s);
  bottom: var(--space-s);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.85);
}

/* ---------- 9. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band .container {
  position: relative;
  max-width: 46rem;
}
.cta-band h2 {
  max-width: 24ch;
  margin-inline: auto;
}
.cta-band__text {
  margin-top: var(--space-s);
  margin-inline: auto;
  max-width: 50ch;
  color: var(--ink-soft);
}
.cta-band__actions {
  margin-top: var(--space-m);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-s);
}

/* ---------- 10. Forms ---------- */
.form {
  display: grid;
  gap: var(--space-m);
  max-width: 40rem;
}
.form__row {
  display: grid;
  gap: 0.45rem;
}
.form__label {
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
}
.form__label .form__optional {
  color: var(--ink-soft);
  font-weight: 400;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.8em 1em;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--amber);
}
.form__textarea {
  min-height: 9rem;
  resize: vertical;
}
.form__check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--step--1);
  max-width: 55ch;
}
.form__check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--amber-deep);
  flex-shrink: 0;
}
.form__note {
  font-size: var(--step--1);
  color: var(--ink-soft);
}
input,
select,
textarea {
  accent-color: var(--amber-deep);
}

/* ---------- 11. Contact block ---------- */
.contact-block {
  font-style: normal;
}
.contact-block__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.contact-block__line {
  margin-top: 0.4rem;
  color: var(--ink-soft);
}
.contact-block__phone {
  font-weight: 600;
  color: var(--ink);
  text-decoration-color: var(--accent);
}
.contact-block__reg {
  margin-top: var(--space-s);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ---------- 12. Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--aubergine) 0%, var(--aubergine-deep) 100%);
  color: var(--cream);
  padding-block: var(--space-xl) var(--space-l);
  --ink: var(--cream);
  --ink-soft: rgba(250, 248, 242, 0.72);
  --accent: var(--amber-soft);
  --focus-ring: var(--amber-soft);
  --rule: rgba(250, 248, 242, 0.18);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 56rem) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer__bee {
  width: 2.1rem;
  height: auto;
  color: var(--amber-soft);
  margin-bottom: var(--space-s);
}
.site-footer__brand .wordmark {
  height: 2.1rem;
  width: auto;
}
.site-footer__lines {
  margin-top: var(--space-s);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2;
}
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.site-footer__nav a {
  text-decoration: none;
  color: var(--ink-soft);
}
.site-footer__nav a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--amber-soft);
}
.site-footer__copy {
  margin-top: var(--space-l);
  padding-top: var(--space-s);
  border-top: 1px solid var(--rule);
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* ---------- 13. Timeline ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: var(--space-l);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--rule);
}
.timeline li {
  position: relative;
  padding-left: 2rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.75rem;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 25'%3E%3Cpath d='M7 0C7 6 0 11.5 0 17.6C0 21.9 3.1 25 7 25C10.9 25 14 21.9 14 17.6C14 11.5 7 6 7 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 25'%3E%3Cpath d='M7 0C7 6 0 11.5 0 17.6C0 21.9 3.1 25 7 25C10.9 25 14 21.9 14 17.6C14 11.5 7 6 7 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.timeline__year {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.1;
}
.timeline__text {
  margin-top: 0.35rem;
  max-width: 52ch;
  color: var(--ink-soft);
}

/* ---------- 14. Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Hex whisper backgrounds (partials/svg/hex-pattern.njk) */
.hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: currentColor;
}
@media (max-width: 39.99rem) {
  .hex-bg {
    display: none;
  }
}

/* ---------- 15. Responsive details ---------- */
@media (max-width: 39.99rem) {
  .hero .container {
    padding-block: var(--space-xl);
  }
  .btn {
    width: 100%;
  }
  .hero__actions .btn,
  .cta-band__actions .btn {
    width: min(100%, 22rem);
  }
}

/* ---------- 16. Coming soon (holding page) ---------- */
/* Chrome-free launch page (layouts/holding.njk). Composition mirrors the jar
   label: bee, logo, tracked bilingual lines with the thyme botanical as
   the centrepiece — flat ground, no hex. The ground color is #372849, the
   exact background baked into assets/img/thyme.png, so the raster botanical
   blends seamlessly. */
.holding {
  background: #372849;
}
.holding-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-xl);
  text-align: center;
  color: var(--cream);
  background: #372849;
}
.holding__inner {
  width: min(100% - 3rem, 34rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Painted bee and logo artwork (ground flattened to #372849, like the
   thyme) replace the interim line-art SVGs on this page. */
.holding__bee {
  width: 6.4rem;
  height: auto;
  margin-bottom: var(--space-s);
}
/* The approved logo artwork (transparent PNG) replaces the interim live-text
   SVG wordmark on this page. */
.holding__logo {
  width: min(86vw, 30rem);
  height: auto;
}
.holding__line {
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--cream);
}
.holding__line--lead {
  margin-top: var(--space-s);
  font-size: clamp(0.85rem, 0.72rem + 0.5vw, 1.05rem);
}
.holding__line--el {
  margin-top: var(--space-xs);
  font-size: clamp(0.8rem, 0.7rem + 0.45vw, 1rem);
}
.holding__line--sub {
  margin-top: 0.3rem;
  font-size: var(--step--2);
  /* color: var(--amber-soft); */
}
/* The painted thyme (assets/img/thyme.png) ships with generous baked-in
   margins; the fixed aspect + object-fit crop trims them so the bush — not
   its empty ground — sets the composition's rhythm. Its ground is flattened
   to exactly #372849 (see the section note), so the crop needs no masking
   to blend. */
.holding__thyme {
  width: min(94%, 27rem);
  height: auto; /* release the height attribute so aspect-ratio wins */
  aspect-ratio: 2.7 / 1;
  object-fit: cover;
  object-position: center 58%;
  margin-block: var(--space-m);
}
.holding__status {
  margin-top: var(--space-l);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  line-height: 1.1;
  color: var(--cream);
}
.holding__support {
  margin-top: var(--space-s);
  max-width: 34ch;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: rgba(250, 248, 242, 0.82);
}
.holding__contact {
  margin-top: var(--space-l);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: rgba(250, 248, 242, 0.75);
}
.holding__phone {
  font-weight: 600;
  color: var(--cream);
  text-decoration-color: var(--amber-soft);
  white-space: nowrap;
}
.holding__lang {
  margin-top: var(--space-l);
}
