/* =========================================================
   Clementina Mill - External CMO & Marketing Strategist
   Design tokens
   ========================================================= */
:root {
  --plum: #37132D;
  --red: #B41912;
  --lavender: #ECD2F8;
  --text: #37132D;
  --text-soft: #4a3242;
  --text-muted: #7a6473;
  --white: #FFFFFF;
  --black: #000000;
  --stripe-a: #efe7ec;
  --stripe-b: #e9dee6;
  --stripe-dark-a: #4a2740;
  --stripe-dark-b: #43213a;

  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 5vw, 72px);
  /* Vertical rhythm between sections - single source of truth so the spacing
     stays consistent. Tightened from the old ~140px so sections don't read
     too far apart on desktop. */
  --sec-y: clamp(40px, 6vw, 96px);
  --maxw: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Keep anchored section titles clear of the sticky nav */
section[id], header[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
::selection { background: var(--lavender); color: var(--plum); }
/* The Vision/Values section is itself lavender, so the default lavender
   highlight would be invisible there - give that section a dark highlight. */
.vision ::selection { background: var(--plum); color: var(--lavender); }
img {
  max-width: 100%;
  display: block;
  /* Deter casual image saving (drag, long-press). Not real protection:
     any displayed image can still be captured via devtools or a screenshot. */
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 30px;
}
.eyebrow--lav { color: var(--lavender); }

/* Slightly larger section labels on desktop only (mobile stays 12px) */
@media (min-width: 861px) {
  .eyebrow { font-size: 14px; }
}

.body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 560px;
}
.body.center { margin-left: auto; margin-right: auto; text-align: center; }
.muted { color: rgba(255, 255, 255, 0.6); }

h1, h2, h3 { margin: 0; }

.media-label {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #9a8896;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: .88; }
.btn--red { background: var(--red); color: var(--white); }
.btn--plum { background: var(--plum); color: var(--white); }
/* Solid buttons: darken-fill sweeps in from the left on hover */
.btn--red, .btn--plum {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn--red::after, .btn--plum::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.btn--red:hover, .btn--plum:hover { opacity: 1; }
.btn--red:hover::after, .btn--plum:hover::after { transform: scaleX(1); }
/* Outline button: matches the solid button's box; plum fill sweeps in on hover */
.btn--outline {
  color: var(--plum);
  border: 1.5px solid var(--plum);
  /* trim padding by the border so height matches the solid buttons exactly */
  padding: 15.5px 32.5px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color .35s ease, transform .2s ease;
}
.btn--outline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.btn--outline:hover { opacity: 1; color: var(--white); }
.btn--outline:hover::after { transform: scaleX(1); }
.btn--lg { padding: 19px 44px; font-size: 12px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px var(--pad-x);
  /* Pure white frosted glass (no color tint; no saturate boost, which
     read warm/orange over the beige photo) */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(55, 19, 45, 0.08);
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--plum);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.brand__mark { height: 56px; width: auto; display: block; }
.brand__logo { height: 64px; width: auto; display: block; }
.brand__logo--footer { height: 76px; margin-bottom: 16px; }
.dot { color: var(--red); }
.navlinks { display: flex; gap: clamp(18px, 2.6vw, 44px); align-items: center; }
.navlinks a:not(.btn) {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  text-decoration: none;
  position: relative;
}
.navlinks a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.navlinks a:not(.btn):hover::after { transform: scaleX(1); }
.navlinks .btn--red { padding: 13px 22px; font-size: 10.5px; letter-spacing: 0.18em; }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
  margin: -12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (centered, full-width text) ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 74vh;
  padding: clamp(48px, 7vw, 110px) var(--pad-x);
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 34px; font-size: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 7.4vw, 120px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 34px;
}
.hero .lead {
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 640px;
  color: var(--text-soft);
  margin: 0 0 42px;
}
.hero-actions { display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; }

@keyframes kenburns { to { transform: scale(1.06); } }
.hero-stat {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1;
  padding: 22px 28px;
  text-align: center;
  /* Neutral frosted glass (no red tint) */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 34px rgba(55, 19, 45, 0.22);
}
.hero-stat__num { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--plum); }
.hero-stat__label { color: var(--plum); }
.hero-stat__label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Statement ---------- */
.statement {
  background: var(--plum);
  color: var(--white);
  padding: var(--sec-y) var(--pad-x);
  text-align: center;
}
.statement__text {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}
/* Lighter warm coral: the brand red (#B41912) only hits 2.4:1 on plum; this
   tint clears WCAG AA (~6.5:1) while keeping the red-accent feel. */
.statement__text em { font-style: italic; color: #EC8A80; }

/* ---------- About ---------- */
.about {
  padding: var(--sec-y) var(--pad-x);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 22px, var(--stripe-b) 22px, var(--stripe-b) 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenburns 18s ease-out forwards;
}
/* Light veil over the portrait */
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(180, 25, 18, 0.08) 0%, rgba(180, 25, 18, 0) 42%, rgba(55, 19, 45, 0.12) 100%);
  pointer-events: none;
  z-index: 0;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 34px;
}
.about-text .body { margin: 0 0 22px; }
.about-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  max-width: 560px;
}
.about-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--red);
}
.about-feb {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 34px;
  padding: 14px 18px;
  border: 1px solid rgba(55, 19, 45, 0.16);
  text-decoration: none;
  transition: background .2s ease;
}
.about-feb:hover { background: rgba(55, 19, 45, 0.04); }
.about-feb__logo { height: 40px; width: auto; object-fit: contain; }
.about-feb__text {
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 340px;
}
.about-feb__text strong { font-weight: 600; color: var(--plum); }

.quote { margin: 18px 0 0; border-left: 2px solid var(--red); padding-left: 26px; }
.quote p {
  font-weight: 300;
  font-style: italic;
  font-size: 16px; /* matches the About body paragraphs */
  line-height: 1.8;
  color: var(--plum);
  margin: 0 0 16px;
}
.quote__author {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Vision + Values ---------- */
.vision { background: var(--lavender); padding: var(--sec-y) var(--pad-x); }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.vision__lead {
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--plum);
  margin: 0 0 26px;
  /* Match the body paragraph width below so the heading wraps at the same
     right edge instead of stretching wider than the text under it. */
  max-width: 560px;
}
.vision-grid > :first-child { align-self: center; }
.values { display: flex; flex-direction: column; }
.value {
  padding: clamp(16px, 1.8vw, 22px) 0;
  border-top: 1px solid rgba(55, 19, 45, 0.16);
}
.value:last-child { border-bottom: 1px solid rgba(55, 19, 45, 0.16); }
.value__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 7px;
}
.value__desc { font-size: 14px; font-weight: 300; line-height: 1.65; color: #513a49; }

/* ---------- Services ---------- */
.services { padding: var(--sec-y) var(--pad-x); }
.section-head { text-align: center; margin-bottom: clamp(48px, 6vw, 84px); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 900px;
}
.section-head .body { margin: 26px auto 0; max-width: 620px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(55, 19, 45, 0.12);
  border-left: 1px solid rgba(55, 19, 45, 0.12);
  max-width: var(--maxw);
  margin: 0 auto;
}
.service {
  background: var(--white);
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid rgba(55, 19, 45, 0.12);
  border-bottom: 1px solid rgba(55, 19, 45, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  position: relative; /* anchor for the pop-out detail panel */
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(55, 19, 45, 0.12);
  z-index: 1;
}
/* Open card lifts and floats above its neighbours instead of stretching them */
.service.is-open {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px -12px rgba(55, 19, 45, 0.22);
  z-index: 5;
}
.service__title { transition: color .3s ease; }
.service:hover .service__title { color: var(--red); }
.service__num { font-family: var(--font-display); font-size: clamp(20px, 1.9vw, 26px); line-height: 1; color: var(--red); letter-spacing: 0.1em; margin-bottom: 20px; }
.service__title { font-weight: 600; font-size: 17px; line-height: 1.3; margin: 0 0 14px; }
.service__desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-soft); margin: 0; }
/* Detail panel: pops out below the card, floating above the neighbours */
.service__more {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0 clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px);
  box-shadow: 0 26px 55px -12px rgba(55, 19, 45, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  pointer-events: none;
}
.service.is-open .service__more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.service__more p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(55, 19, 45, 0.1);
}
.service__toggle {
  background: none;
  border: 0;
  margin-top: auto;
  padding: 14px 0 0;
  text-align: left;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
}
.service__toggle:hover { text-decoration: underline; }
.services-footnote {
  max-width: 720px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  text-align: center;
  font-size: 13.5px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---------- Portfolio (staged page) ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.portfolio-item {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 22px, var(--stripe-b) 22px, var(--stripe-b) 44px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Clients ---------- */
.clients { background: var(--plum); color: var(--white); padding: var(--sec-y) var(--pad-x); }
.clients-inner { max-width: var(--maxw); margin: 0 auto; }
.clients-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.clients-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}
.clients-head .body { color: rgba(255, 255, 255, 0.72); margin: 24px 0 0; max-width: 560px; }

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.highlight {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(236, 210, 248, 0.14);
  border-radius: 16px;
  padding: 16px 16px 24px;
  transition: transform .4s ease, border-color .3s ease, background .3s ease;
}
.highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 210, 248, 0.34);
  background: rgba(255, 255, 255, 0.06);
}
.highlight__img {
  aspect-ratio: 3/2;
  background: repeating-linear-gradient(135deg, var(--stripe-dark-a), var(--stripe-dark-a) 20px, var(--stripe-dark-b) 20px, var(--stripe-dark-b) 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: transform .5s ease;
}
.highlight:hover .highlight__img { transform: scale(1.025); }
/* Real client logo: clean solid panel + normalized to white for consistency on the dark box */
.highlight__img--logo { background: rgba(255, 255, 255, 0.045); padding: 13%; }
.highlight__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity .3s ease;
}
.highlight:hover .highlight__logo { opacity: 1; }
.highlight__tag,
.highlight__name,
.highlight__role,
.highlight__desc { padding-left: 6px; padding-right: 6px; }
.highlight__img span {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(236, 210, 248, 0.6);
  text-transform: uppercase;
}
.highlight__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--lavender);
  /* Reserve 2 lines and bottom-align so names sit on the same level across cards */
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.highlight__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.highlight__name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-size .35s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.highlight__name a:hover { color: var(--lavender); }
.highlight:hover .highlight__name a { background-size: 100% 1.5px; }
.highlight__role {
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(236, 210, 248, 0.85);
  margin-bottom: 12px;
}
.highlight__desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, 0.68); margin: 0; }

.small-gap { margin-bottom: 26px; }
/* Auto-scrolling marquee strip (pauses on hover) */
.logos {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.logos:hover .logos-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo {
  display: inline-block;
  padding: 26px clamp(24px, 3.5vw, 48px);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color .2s ease;
}
a.logo:hover { color: #FFFFFF; }
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; width: auto; flex-wrap: wrap; }
  .logo--dup { display: none; }
}

/* ---------- Results (metric-led: full-width hero + 2x2) ---------- */
.results { padding: var(--sec-y) var(--pad-x); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
  max-width: 960px;
  margin: 0 auto;
}
.result {
  background: rgba(236, 210, 248, 0.32);
  border-radius: 14px;
  padding: clamp(20px, 2.2vw, 28px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.result:hover {
  transform: translateY(-4px);
  background: rgba(236, 210, 248, 0.5);
  box-shadow: 0 16px 34px rgba(55, 19, 45, 0.10);
}
.result__metric {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--red);
}
.result--word .result__metric {
  font-size: clamp(19px, 2.2vw, 25px);
  color: var(--plum);
}
.result:not(.result--hero) .result__body { margin-top: 8px; }
.result__sub { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: #7a3a6a; }
.result__ctx { font-size: 13px; font-weight: 300; line-height: 1.55; color: #5a4453; margin-top: 5px; }

/* Hero: full-width dark band, metric beside the text */
.result--hero {
  grid-column: 1 / -1;
  background: var(--plum);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 42px);
}
.result--hero:hover { background: var(--plum); }
.result--hero .result__metric { color: var(--lavender); font-size: clamp(44px, 6vw, 68px); }
.result--hero .result__sub { color: #FFFFFF; font-size: 15px; }
.result--hero .result__ctx { color: rgba(255, 255, 255, 0.7); }

/* Wide closer: full-width light card, metric beside the text (like the hero) */
.result--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
.result--wide.result--word .result__metric { font-size: clamp(24px, 3vw, 34px); }
.result--wide .result__sub { font-size: 14px; }

@media (max-width: 760px) {
  .results-grid { grid-template-columns: 1fr; }
  .result--hero,
  .result--wide { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---------- Events photo strip ---------- */
.events { padding: var(--sec-y) 0; }
.events .section-head { padding: 0 var(--pad-x); }
/* Auto-rotating carousel (continuous marquee, no controls; pauses on hover) */
.events-strip { overflow: hidden; padding: 4px 0; }
.events-track {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  width: max-content;
  animation: marquee 70s linear infinite;
  will-change: transform;
}
.events-strip:hover .events-track { animation-play-state: paused; }
.event-shot {
  flex: 0 0 auto;
  width: clamp(230px, 27vw, 340px);
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-shot:hover { transform: scale(1.02); }
@media (max-width: 860px) {
  .event-shot { width: clamp(210px, 62vw, 280px); }
  .events-track { animation-duration: 48s; }
}
@media (prefers-reduced-motion: reduce) {
  .events-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .event-shot--dup { display: none; }
}

/* ---------- Lavender page background (Shop) ---------- */
.bg-lav { background: var(--lavender); }

/* ---------- Blog index ---------- */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
}
.post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(55, 19, 45, 0.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(55, 19, 45, 0.12); }
.post-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.post-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 14px;
  transition: color .3s ease;
}
.post-card:hover .post-card__title { color: var(--red); }
.post-card__excerpt { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-soft); margin: 0 0 22px; }
.post-card__date { margin-top: auto; font-size: 12px; letter-spacing: 0.08em; color: var(--text-muted); }
@media (max-width: 760px) { .blog-list { grid-template-columns: 1fr; } }

/* ---------- Article (single post) ---------- */
.article-head {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 88px) var(--pad-x) 0;
  text-align: center;
}
.article-head .eyebrow { margin-bottom: 22px; }
.article-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 20px;
}
.article-meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.article-cover {
  max-width: 520px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: 0 var(--pad-x);
}
/* Force greyscale on the site regardless of the source file's colours */
.article-cover img { width: 100%; height: auto; display: block; filter: grayscale(100%); }
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) var(--pad-x) clamp(48px, 8vw, 120px);
}
.article p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text-soft); margin: 0 0 24px; }
.article > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.8;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--red);
}
.article h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--plum);
  margin: 44px 0 18px;
}
.article h3 { font-weight: 600; font-size: 19px; color: var(--plum); margin: 32px 0 12px; }
.article blockquote {
  border-left: 2px solid var(--red);
  padding-left: 26px;
  margin: 34px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--plum);
}
.article ul { margin: 0 0 24px; padding-left: 20px; }
.article li { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--text-soft); margin-bottom: 8px; }
.article a { color: var(--red); text-decoration: underline; }
.article-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.article-back:hover { text-decoration: underline; }

/* In-article call to action */
.article-cta {
  margin: 56px 0 8px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(55, 19, 45, 0.14);
  background: rgba(55, 19, 45, 0.03);
  text-align: center;
}
.article-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 14px;
}
.article-cta p { max-width: 470px; margin: 0 auto 26px; }
.article-cta .btn { text-decoration: none; }
.article-cta .btn--red { color: var(--white); }

/* More from Insights - related posts under the CTA */
.more-insights {
  border-top: 1px solid rgba(55, 19, 45, 0.1);
  background: rgba(55, 19, 45, 0.02);
  padding: clamp(44px, 7vw, 96px) var(--pad-x);
}
.more-insights__eyebrow {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 44px);
}
.more-insights__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
}
.more-insights__grid .post-card { flex: 1 1 260px; max-width: 320px; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(60px, 9vw, 120px);
}
.legal p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-soft); margin: 0 0 18px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 40px 0 14px;
}
.legal ul { margin: 0 0 18px; padding-left: 20px; }
.legal li { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--text-soft); margin-bottom: 7px; }
.legal a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.legal address { font-style: normal; font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-soft); }
.legal__lang-divider {
  margin: clamp(48px, 7vw, 80px) 0 8px;
  border: 0;
  border-top: 1px solid rgba(55, 19, 45, 0.16);
}
.legal__lang-label {
  display: block;
  margin-bottom: 30px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.legal .btn { cursor: pointer; }

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid rgba(55, 19, 45, 0.12);
  box-shadow: 0 -12px 40px rgba(55, 19, 45, 0.12);
  padding: clamp(16px, 2.4vw, 22px) var(--pad-x);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-in { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 640px;
}
.cookie-banner__text a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie-btn { cursor: pointer; border: none; font-size: 10.5px; padding: 13px 22px; }
.btn--outline.cookie-btn { border: 1.5px solid var(--plum); padding: 11.5px 20.5px; }
.cookie-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 4px;
}
.cookie-link:hover { color: var(--plum); }

/* Preferences modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-x);
  background: rgba(37, 19, 33, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.cookie-modal.is-in { opacity: 1; visibility: visible; }
.cookie-modal__box {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 80px rgba(37, 19, 33, 0.35);
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal__box h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 12px;
}
.cookie-modal__box p { font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--text-soft); margin: 0 0 20px; }
.cookie-opt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(55, 19, 45, 0.12);
}
.cookie-opt:last-of-type { border-bottom: 1px solid rgba(55, 19, 45, 0.12); margin-bottom: 22px; }
.cookie-opt__title { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--plum); }
.cookie-opt__desc { font-size: 12.5px; font-weight: 300; line-height: 1.55; color: var(--text-muted); margin-top: 4px; }
.cookie-opt input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.cookie-opt input:disabled { opacity: .5; }
.cookie-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-modal__actions .btn { cursor: pointer; border: none; font-size: 10.5px; flex: 1; text-align: center; min-width: 140px; }
.cookie-modal__actions .btn--outline { border: 1.5px solid var(--plum); }

@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-btn, .btn--outline.cookie-btn { flex: 1; text-align: center; }
}

/* ---------- Contact ---------- */
.contact { padding: var(--sec-y) var(--pad-x); text-align: center; }
.contact h1,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto 34px;
  max-width: 900px;
}
/* Dedicated contact page: a little breathing room under the sticky nav */
.contact-page { padding-top: clamp(40px, 6vw, 96px); }
.contact .body { margin: 0 auto 28px; }
.contact__email { margin-top: 34px; font-size: 13px; letter-spacing: 0.1em; color: var(--text-muted); }
.contact__email a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Contact form ---------- */
.contact-intro {
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
}
.contact-form .req { color: var(--red); }
.contact-form .opt {
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(55, 19, 45, 0.22);
  border-radius: 2px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 25, 18, 0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b3a3ae; }
.contact-form__actions { margin-top: 6px; text-align: center; }
.contact-form__actions .btn {
  border: none;
  cursor: pointer;
  line-height: 1;
}
.contact-form__actions .btn[disabled] { opacity: .6; cursor: default; }
.contact-form__status { margin: 18px 0 0; font-size: 14px; min-height: 1.2em; }
.contact-form__status.is-error { color: var(--red); }
.contact-form__status.is-ok { color: var(--plum); font-weight: 600; }

/* ---------- Thank you page ---------- */
.thankyou__next { color: var(--text-muted); }
.thankyou__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--white); padding: clamp(48px, 6vw, 80px) var(--pad-x) 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 44px;
}
.brand--footer { font-size: 22px; letter-spacing: 0.16em; margin-bottom: 18px; display: block; }
.footer .body { max-width: 320px; margin: 0; }
.footer__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer a { font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer a:hover { color: var(--white); }
.socials { display: flex; gap: 14px; margin-top: 20px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .25s ease;
}
.socials a:hover {
  color: var(--plum);
  background: var(--lavender);
  border-color: var(--lavender);
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}
.legal-links a {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.legal-links a:hover { color: var(--white); text-decoration: underline; }
.legal-links a + a { margin-left: 6px; }
.legal-links a + a::before {
  content: "·";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 1; }
body.armed .reveal { opacity: 0; }
body.armed .reveal.in {
  opacity: 1;
  animation: reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  body.armed .reveal { opacity: 1 !important; }
  .about-media__img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Nav becomes hamburger + dropdown panel */
  .nav-toggle { display: block; }
  .brand__mark { height: 44px; }
  .navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--pad-x) 22px;
    background: #FFFFFF; /* solid - content must not bleed through the panel */
    border-bottom: 1px solid rgba(180, 25, 18, 0.14);
    box-shadow: 0 18px 34px rgba(55, 19, 45, 0.12);
  }
  .nav.open .navlinks { display: flex; }
  .navlinks a:not(.btn) { padding: 15px 0; border-bottom: 1px solid rgba(55, 19, 45, 0.06); }
  .navlinks .btn--red { margin-top: 14px; text-align: center; }

  .hero { min-height: 62vh; }
  .hero-stat { padding: 16px 20px; }
  .hero-stat__num { font-size: 28px; }
  .statement__text { font-size: 18px; }
  .about, .vision-grid, .services-grid, .highlights, .footer-grid { grid-template-columns: 1fr; }

  /* Single column: hide the placeholder image so cards stay compact and text-first */
  .highlight__img { display: none; }

  /* Single column: expand the detail in-flow so it never covers the next card */
  .service__more {
    position: static;
    padding: 0;
    box-shadow: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease;
  }
  .service.is-open { box-shadow: 0 18px 40px rgba(55, 19, 45, 0.12); }
  .service.is-open .service__more { max-height: 600px; }

  /* Comfortable tap targets */
  .footer__links a, .footer a[href^="mailto"] { padding: 5px 0; display: inline-block; }
  .legal-links a { padding: 8px 0; display: inline-block; }

  /* Footer bottom stacks vertically */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1101px) and (max-width: 1300px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
}
