/* Holiniq — Merely-derived corporate system */
:root {
  --plum-900: #1E1222;
  --plum-800: #2D1F2E;
  --plum-700: #3D2B3A;  /* Deep Plum — primary */
  --plum-600: #4A3347;
  --plum-500: #6B5070;
  --plum-400: #8D7491;
  --plum-300: #A798AB;

  --lav-700: #574B72;
  --lav-500: #9690B0;
  --lav-400: #B5A8C9;   /* Bottle Lavender — signature */
  --lav-300: #C9BFDA;
  --lav-200: #DDD7EA;
  --lav-100: #EDE8F4;   /* Haze */
  --lav-50:  #F5F2F8;

  --orchid: #B87FCC;
  --apricot: #F0A875;
  --white: #FFFFFF;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--plum-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.serif-i { font-style: italic; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum-500);
}

.eyebrow.on-dark { color: var(--lav-400); }

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

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(80px, 10vw, 140px) 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--lav-200);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--plum-700);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-brand .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--orchid);
  border-radius: 50%;
  transform: translateY(-3px);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-links a {
  color: var(--plum-600);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--plum-700); }
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orchid);
}
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 22px;
  background: var(--plum-700);
  color: var(--white);
  border: 1px solid var(--plum-700);
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--plum-800); }

/* mobile nav scaffolding — toggle lives at body level so it can escape the nav stacking context */
.nav-toggle { display: none; }
.nav-burger { display: none; }
.nav-mobile { display: none; }

@media (max-width: 760px) {
  .nav-inner { padding: 14px var(--gutter); }
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 110;
    position: relative;
  }
  .nav-burger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--plum-700);
    transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
    transform-origin: center;
  }
  body:has(.nav-toggle:checked) .nav {
    background: #2D1F2E;
    backdrop-filter: none;
    border-bottom-color: rgba(255,255,255,0.05);
  }
  body:has(.nav-toggle:checked) .nav-brand {
    color: var(--white);
  }
  body:has(.nav-toggle:checked) .nav-burger span {
    background: var(--white);
  }
  body:has(.nav-toggle:checked) .nav-burger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  body:has(.nav-toggle:checked) .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  body:has(.nav-toggle:checked) .nav-burger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    inset: 60px 0 0 0;
    background:
      radial-gradient(ellipse 70% 60% at 70% 20%, rgba(184,127,204,0.2), transparent 60%),
      linear-gradient(160deg, #2D1F2E 0%, #3D2B3A 60%, #6B5070 100%);
    color: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 40px var(--gutter);
    overflow-y: auto;
    visibility: hidden;
  }
  .nav-toggle:checked ~ .nav-mobile {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
  }
  .nav-mobile a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 34px;
    line-height: 1.2;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-mobile-foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 32px;
  }
  .nav-mobile-foot a {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lav-300);
    font-weight: 500;
  }
  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(184,127,204,0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(181,168,201,0.35), transparent 65%),
    linear-gradient(160deg, #2D1F2E 0%, #3D2B3A 40%, #6B5070 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 120px;
}

/* signature line motif */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
}
.hero-lines span {
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,0.55);
  left: 0; right: 0;
}
.hero-lines span:nth-child(1) { top: 18%; right: 38%; left: 0; }
.hero-lines span:nth-child(2) { top: 27%; left: 42%; right: 0; }
.hero-lines span:nth-child(3) { top: 56%; left: 0; right: 60%; }
.hero-lines span:nth-child(4) { top: 78%; left: 25%; right: 5%; }
.hero-lines span:nth-child(5) { top: 88%; left: 0; right: 70%; opacity: 0.4; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-top: 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #FFFFFF 0%, #B87FCC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-meta {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--lav-300);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-meta strong {
  font-weight: 500;
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px;
}
.hero-lede {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--lav-200);
  text-wrap: pretty;
}
.hero-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--white);
  color: var(--plum-700);
  border-color: var(--white);
}
.btn-primary:hover { background: var(--lav-100); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-dark {
  background: var(--plum-700);
  color: var(--white);
  border-color: var(--plum-700);
}
.btn-dark:hover { background: var(--plum-800); }
.btn-outline {
  background: transparent;
  color: var(--plum-700);
  border-color: var(--plum-700);
}
.btn-outline:hover { background: var(--plum-700); color: var(--white); }

.btn .arrow { display: inline-block; transition: transform 0.22s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Bookend / What we do ---------- */
.what {
  background: var(--white);
  position: relative;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
@media (max-width: 900px) {
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
}
.what h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.what-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--plum-600);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.what-body p strong {
  font-weight: 500;
  color: var(--plum-700);
}
.what-body .pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.35;
  color: var(--plum-700);
  border-left: 2px solid var(--orchid);
  padding-left: 24px;
  margin: 8px 0;
}

.section-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--plum-400);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Numbers ---------- */
.numbers {
  background: var(--lav-100);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent calc(100% - 1px), rgba(61,43,58,0.06) 100%) 0 0 / 100% 80px;
  pointer-events: none;
}
.numbers-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.numbers h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  max-width: 720px;
  text-wrap: balance;
}
.numbers-head .meta {
  font-size: 13px;
  color: var(--plum-500);
  max-width: 280px;
  text-align: right;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.4;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lav-200);
  border: 1px solid var(--lav-200);
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  background: var(--lav-100);
  padding: 40px 28px;
  position: relative;
}
.stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--plum-700);
  letter-spacing: -0.02em;
}
.stat .lbl {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--plum-600);
  padding-top: 16px;
  border-top: 1px solid var(--lav-300);
  max-width: 220px;
}

/* ---------- Brand feature blocks ---------- */
.brand-feature {
  position: relative;
  overflow: hidden;
}
.brand-feature.dark {
  background: var(--plum-700);
  color: var(--white);
}
.brand-feature.light {
  background: var(--white);
}
.brand-feature.lavender {
  background: linear-gradient(160deg, var(--lav-100) 0%, var(--lav-50) 100%);
}

.bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.bf-grid.reverse { direction: rtl; }
.bf-grid.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .bf-grid, .bf-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
}

.bf-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.bf-eyebrow .swatch {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.bf-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  margin-bottom: 28px;
}

.bf-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 20px;
}
.bf-headline em { font-style: italic; }

.bf-headline .accent {
  background: linear-gradient(135deg, var(--plum-700) 0%, var(--orchid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dark .bf-headline .accent {
  background: linear-gradient(135deg, var(--white) 0%, var(--orchid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bf-copy {
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--plum-600);
}
.dark .bf-copy { color: var(--lav-300); }

.bf-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid var(--lav-300);
  border-bottom: 1px solid var(--lav-300);
}
.dark .bf-meta {
  border-top-color: rgba(255,255,255,0.18);
  border-bottom-color: rgba(255,255,255,0.18);
}
.bf-meta-item .k {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum-400);
  margin-bottom: 6px;
}
.dark .bf-meta-item .k { color: var(--lav-400); }
.bf-meta-item .v {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
}

/* Visual blocks (placeholders) */
.bf-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--lav-200);
  overflow: hidden;
}
.bf-visual.tall { aspect-ratio: 3/4.5; }

/* image-based brand visual */
.bf-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bf-image::before {
  content: '';
  position: absolute;
  left: 0; right: 60%;
  top: 14%;
  height: 1px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
  pointer-events: none;
}
.bf-image::after {
  content: '';
  position: absolute;
  left: 55%; right: 0;
  top: 22%;
  height: 1px;
  background: rgba(255,255,255,0.7);
  z-index: 2;
  pointer-events: none;
}
.bf-image-light::before { background: rgba(61,43,58,0.18); }
.bf-image-light::after { background: rgba(61,43,58,0.22); }
.bf-image-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

/* striped placeholder */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(61,43,58,0.04) 0 2px,
      transparent 2px 14px),
    linear-gradient(160deg, var(--lav-200) 0%, var(--lav-100) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.placeholder.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.04) 0 2px,
      transparent 2px 14px),
    linear-gradient(160deg, var(--plum-800) 0%, var(--plum-600) 100%);
  color: var(--lav-300);
}
.placeholder .ph-tag {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--plum-500);
  text-transform: uppercase;
}
.placeholder.dark .ph-tag { color: var(--lav-400); }
.placeholder .ph-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.placeholder .ph-lines span {
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,0.7);
  left: 0; right: 0;
}
.placeholder:not(.dark) .ph-lines span {
  background: rgba(61,43,58,0.18);
}
.placeholder .ph-lines span:nth-child(1) { top: 22%; right: 50%; }
.placeholder .ph-lines span:nth-child(2) { top: 33%; left: 30%; right: 0; }
.placeholder .ph-lines span:nth-child(3) { top: 64%; left: 0; right: 35%; }
.placeholder .ph-lines span:nth-child(4) { top: 78%; left: 50%; right: 8%; }

/* Product card mock — for merely */
.merely-stage {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.merely-stage > div {
  position: relative;
  overflow: hidden;
}
.merely-stage .big {
  grid-row: 1 / span 2;
}
.tube {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 20%;
}
.tube::before {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 30%;
  right: 30%;
  top: 28%;
  border-radius: 0 0 40% 40% / 0 0 8% 8%;
}
.tube::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 36%;
  right: 36%;
  height: 10%;
  background: rgba(0,0,0,0.18);
}
.tube .num {
  position: absolute;
  top: 38%;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.08em;
}
.tube .nm {
  position: absolute;
  top: 48%;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  font-weight: 500;
}

/* ---------- Brands directory ---------- */
.directory {
  background: var(--white);
  border-top: 1px solid var(--lav-200);
  border-bottom: 1px solid var(--lav-200);
}
.directory-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .directory-head { grid-template-columns: 1fr; }
}
.directory h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  text-wrap: balance;
}
.directory-head p {
  color: var(--plum-500);
  max-width: 420px;
  font-size: 16px;
}

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--lav-200);
}
@media (max-width: 900px) {
  .dir-grid { grid-template-columns: 1fr; border-left: none; border-top: 1px solid var(--lav-200); }
}
.dir-card {
  padding: 36px 32px;
  border-right: 1px solid var(--lav-200);
  border-bottom: 1px solid var(--lav-200);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: background 0.25s;
}
.dir-card:hover { background: var(--lav-50); }
.dir-card .role {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum-400);
}
.dir-card .nm {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
}
.dir-card .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--plum-500);
  flex-grow: 1;
}
.dir-card .more {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Founder ---------- */
.founder {
  background: var(--lav-100);
  position: relative;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--plum-700);
  text-wrap: balance;
}
.founder-quote span {
  background: linear-gradient(135deg, var(--plum-700), var(--orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.founder-cite {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-500);
  font-weight: 500;
}
.founder-cite strong {
  color: var(--plum-700);
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  text-transform: none;
}

/* ---------- Press / proof ---------- */
.press {
  background: var(--white);
  border-top: 1px solid var(--lav-200);
  padding: 56px 0;
}
.press-row {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.press-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum-400);
}
.press-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--plum-600);
  letter-spacing: 0.02em;
}

/* ---------- Buyers / Trade ---------- */
.trade {
  background: var(--plum-700);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.trade::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(184,127,204,0.25), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(181,168,201,0.18), transparent 60%);
  pointer-events: none;
}
.trade-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.trade-lines span {
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.trade-lines span:nth-child(1) { top: 30%; left: 0; right: 60%; }
.trade-lines span:nth-child(2) { top: 30%; left: 65%; right: 5%; opacity: 0.4; }
.trade-lines span:nth-child(3) { top: 70%; left: 20%; right: 0; }

.trade-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .trade-grid { grid-template-columns: 1fr; } }
.trade h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  text-wrap: balance;
}
.trade h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--white), var(--orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trade-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 36px;
}
.trade-card .label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lav-400);
  margin-bottom: 18px;
  font-weight: 500;
}
.trade-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.trade-card .info {
  font-size: 13px;
  line-height: 1.7;
  color: var(--lav-300);
  margin-bottom: 28px;
}
.trade-card a.btn { width: 100%; justify-content: center; }

/* ---------- Enquiry Form (editorial) ---------- */
.enquiry-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 44px 40px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.enquiry-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orchid) 30%, var(--orchid) 70%, transparent);
  opacity: 0.55;
}

.ef-head { margin-bottom: 32px; }
.ef-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lav-300);
  margin-bottom: 18px;
}
.ef-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orchid);
  box-shadow: 0 0 10px rgba(212, 165, 211, 0.6);
}
.ef-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}
.ef-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--white) 0%, var(--orchid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Type selector — segmented chips */
.ef-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ef-types input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ef-types label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lav-300);
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
  background: transparent;
}
.ef-types label:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.ef-types input[type="radio"]:checked + label {
  background: var(--white);
  color: var(--plum-700);
  border-color: var(--white);
}
.ef-types input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--orchid);
  outline-offset: 2px;
}

/* Grid */
.ef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  margin-bottom: 36px;
}
.ef-full { grid-column: 1 / -1; }

/* Floating-label fields with underline only */
.ef-field {
  position: relative;
  padding-top: 22px;
}
.ef-field input,
.ef-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 8px 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  border-radius: 0;
  letter-spacing: 0.005em;
}
.ef-field textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.ef-field input::placeholder,
.ef-field textarea::placeholder {
  color: transparent;
}
.ef-field label {
  position: absolute;
  left: 0;
  top: 22px;
  font-size: 15px;
  font-weight: 400;
  color: var(--lav-300);
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.005em;
}
.ef-field label em {
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--lav-400);
  margin-left: 4px;
  opacity: 0.7;
}
.ef-field input:focus + label,
.ef-field input:not(:placeholder-shown) + label,
.ef-field textarea:focus + label,
.ef-field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lav-400);
}
.ef-field input:focus + label em,
.ef-field input:not(:placeholder-shown) + label em,
.ef-field textarea:focus + label em,
.ef-field textarea:not(:placeholder-shown) + label em {
  display: none;
}

.ef-line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.ef-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orchid), var(--lav-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.ef-field input:focus ~ .ef-line::after,
.ef-field textarea:focus ~ .ef-line::after {
  transform: scaleX(1);
}

/* Tame Chrome autofill on dark glass */
.ef-field input:-webkit-autofill,
.ef-field input:-webkit-autofill:hover,
.ef-field input:-webkit-autofill:focus,
.ef-field textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: var(--white);
}

/* Footer / submit */
.ef-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ef-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  background: var(--white);
  color: var(--plum-700);
  border: 1px solid var(--white);
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 0;
}
.ef-submit svg { transition: transform 0.22s ease; }
.ef-submit:hover {
  background: var(--orchid);
  border-color: var(--orchid);
  color: var(--plum-700);
}
.ef-submit:hover svg { transform: translateX(6px); }
.ef-submit:focus-visible {
  outline: 2px solid var(--orchid);
  outline-offset: 3px;
}

.ef-note {
  font-size: 11px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--lav-400);
  margin: 0;
  text-align: right;
  line-height: 1.4;
  max-width: 200px;
}

/* Responsive */
@media (max-width: 700px) {
  .enquiry-form { padding: 32px 24px 28px; }
  .ef-grid { grid-template-columns: 1fr; gap: 4px; }
  .ef-foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .ef-submit { justify-content: center; width: 100%; }
  .ef-note { text-align: center; max-width: none; }
  .ef-types { gap: 4px; }
  .ef-types label { padding: 8px 11px; font-size: 9px; letter-spacing: 0.18em; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--plum-800);
  color: var(--lav-300);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--white);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-brand .dot {
  width: 5px; height: 5px;
  background: var(--orchid);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-2px);
}
.footer-blurb {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--lav-200);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--lav-400);
  letter-spacing: 0.04em;
}
.footer-bottom .signoff {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--lav-300);
}

/* ---------- divider line ---------- */
.divline {
  height: 1px;
  background: var(--lav-300);
  margin: 0 auto;
  max-width: var(--max);
}

/* ---------- Strikethrough thesis ---------- */
.thesis {
  background: var(--white);
  position: relative;
}
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .thesis-grid { grid-template-columns: 1fr; } }
.ingredients {
  background: var(--lav-100);
  padding: 56px 48px;
  position: relative;
}
.ingredients ul {
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 2;
  color: var(--plum-400);
}
.ingredients li.strike {
  position: relative;
  color: var(--plum-300);
}
.ingredients li.strike::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 50%;
  height: 1px;
  background: var(--plum-700);
}
.ingredients li.keep {
  color: var(--plum-700);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid var(--lav-300);
}

.thesis h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
  text-wrap: balance;
}
.thesis h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--plum-700), var(--orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thesis p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--plum-600);
  margin-bottom: 16px;
  max-width: 520px;
}

/* ---------- utility ---------- */
.lines-divider {
  position: relative;
  height: 80px;
}
.lines-divider span {
  position: absolute;
  height: 1px;
  background: var(--lav-300);
  left: 0; right: 0;
}
.lines-divider span:nth-child(1) { top: 30%; right: 60%; }
.lines-divider span:nth-child(2) { top: 50%; left: 35%; right: 10%; }
.lines-divider span:nth-child(3) { top: 70%; left: 5%; right: 70%; opacity: 0.5; }
