/* MJ Luxe Enterprises — hybrid homepage
   Recreated from the Claude Design hybrid.jsx prototype.
   Brand colors:
     gold  #997c31 — primary brand accent (announcement bar, headings, links)
     purple #513d8c — LUXE wordmark / primary accent
     ink/black #14110a — dark sections
*/

:root {
  --hy-ink: #14110a;
  --hy-ink-2: #1f1b12;
  --hy-paper: #fbf9f3;
  --hy-paper-2: #f2eee2;
  --hy-paper-3: #ebe5d2;
  --hy-card: #ffffff;
  --hy-rule: rgba(20, 17, 10, 0.12);
  --hy-rule-soft: rgba(20, 17, 10, 0.06);
  --hy-mute: rgba(20, 17, 10, 0.6);
  --hy-accent: #6b5320;
  --hy-accent-soft: #997c31;
  --hy-purple: #513d8c;
  --hy-brass: #997c31;
  --hy-pad: 104px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--hy-paper); }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #1a1815;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.hy-root {
  background: var(--hy-paper);
  color: #1a1815;
  min-height: 100%;
  width: 100%;
  overflow-x: clip;
}

/* ── Typography primitives ───────────────────────────────── */
.hy-display {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
}
.hy-italic { font-style: italic; }
.hy-accent { color: var(--hy-accent); }
.hy-brass { color: var(--hy-brass); }
.hy-mute { color: var(--hy-mute); }

/* Gold highlight text: scripts.js splits each phrase into character spans and
   recolors the ones nearest the cursor toward the logo purple — a spotlight
   that follows the pointer and works across line wraps. Without JS the text
   stays solid gold (the base .hy-accent / .hy-brass colors above). */
.hy-spot__ch { transition: color 0.16s ease; }
@media (prefers-reduced-motion: reduce) {
  .hy-spot__ch { transition: none; }
}

.hy-eyebrow {
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hy-mute);
  font-weight: 500;
}
.hy-eyebrow--brass { color: var(--hy-brass); }

.hy-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Buttons ─────────────────────────────────────────────── */
.hy-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--hy-ink);
  font-family: "Inter Tight", inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hy-ink);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s ease;
}
/* Outline buttons: purple accent on hover (border + text + faint tint) */
.hy-btn:hover {
  background: color-mix(in srgb, var(--hy-purple) 8%, transparent);
  color: var(--hy-purple);
  border-color: var(--hy-purple);
}
/* Filled buttons: black, turning the logo purple on hover */
.hy-btn--solid { background: var(--hy-ink); color: var(--hy-paper); border-color: var(--hy-ink); }
.hy-btn--solid:hover { background: var(--hy-purple); border-color: var(--hy-purple); color: var(--hy-paper); }
.hy-btn--accent { background: var(--hy-ink); color: var(--hy-paper); border-color: var(--hy-ink); }
.hy-btn--accent:hover { background: var(--hy-purple); border-color: var(--hy-purple); color: var(--hy-paper); }
.hy-btn--ghost { border-color: var(--hy-rule); color: var(--hy-mute); }
.hy-btn--ghost:hover { background: color-mix(in srgb, var(--hy-purple) 8%, transparent); color: var(--hy-purple); border-color: var(--hy-purple); }
.hy-btn--sm { padding: 12px 22px; }

.hy-arrow { transition: transform 0.25s ease; }
.hy-btn:hover .hy-arrow,
.hy-link:hover .hy-arrow { transform: translateX(4px); }

.hy-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--hy-ink);
}

/* ── Pill ────────────────────────────────────────────────── */
.hy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 7px;
  border-radius: 999px;
  background: var(--hy-card);
  border: 1px solid var(--hy-rule);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hy-ink);
}
.hy-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hy-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hy-accent) 25%, transparent);
}
.hy-pill--dark {
  background: rgba(245, 241, 232, 0.06);
  border-color: rgba(245, 241, 232, 0.12);
  color: rgba(245, 241, 232, 0.85);
}

.hy-mark {
  display: block;
  object-fit: contain;
}

/* Full vertical lockup used as the nav + footer logo */
.hy-nav__logo {
  display: block;
  height: 84px;
  width: auto;
  transition: height 0.25s ease;
}

/* ── Nav ─────────────────────────────────────────────────── */
.hy-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
  background: color-mix(in srgb, var(--hy-paper) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: padding 0.25s ease, margin 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hy-nav--floating {
  top: 14px;
  margin: 0 16px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid var(--hy-rule);
  background: color-mix(in srgb, var(--hy-card) 96%, transparent);
  box-shadow: 0 16px 40px -16px rgba(20, 17, 10, 0.22), 0 2px 6px -2px rgba(20, 17, 10, 0.08);
}
.hy-nav--floating .hy-nav__name { font-size: 18px; }
.hy-nav--floating .hy-mark { width: 36px; height: 36px; }
.hy-nav--floating .hy-nav__logo { height: 56px; }
.hy-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hy-nav__wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
}
.hy-nav__name {
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-bottom: 4px;
}
.hy-nav__eyebrow {
  font-size: 9px;
  margin-top: 8px;
}
.hy-nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.hy-nav__links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.hy-nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.hy-nav__login {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hamburger toggle — hidden on desktop, revealed at the mobile breakpoint */
.hy-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid var(--hy-rule);
  border-radius: 10px;
  color: var(--hy-ink);
  cursor: pointer;
}
.hy-nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hy-nav--menu-open .hy-nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hy-nav--menu-open .hy-nav__toggle-bar:nth-child(2) { opacity: 0; }
.hy-nav--menu-open .hy-nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Customer Login link inside the mobile dropdown — hidden on desktop */
.hy-nav__links-login { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hy-hero {
  position: relative;
  padding: 120px var(--hy-pad) 56px;
  border-bottom: 1px solid var(--hy-rule);
  overflow: hidden;
}
.hy-hero__accent {
  position: absolute;
  right: calc(var(--hy-pad) * -0.15);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  width: 900px;
  max-width: 60%;
}
.hy-hero__accent img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.1;
  filter: saturate(0.9);
}
.hy-hero__col {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hy-hero__h1 {
  font-size: 96px;
  margin: 40px 0 0;
  line-height: 1.06;
}
.hy-hero__lede {
  margin-top: 56px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--hy-mute);
  max-width: 600px;
}
.hy-hero__ctas {
  margin-top: 52px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hy-hero__brands {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--hy-mute);
}
.hy-brand-inline {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  color: var(--hy-ink);
}
.hy-hero__marquee {
  position: relative;
  /* full-bleed across the hero, breaking out of the section padding */
  width: calc(100% + var(--hy-pad) * 2);
  margin-left: calc(var(--hy-pad) * -1);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.hy-hero__track {
  display: flex;
  width: max-content;
  animation: hy-marquee 48s linear infinite;
}
.hy-hero__marquee:hover .hy-hero__track { animation-play-state: paused; }
.hy-hero__track.is-static {
  animation: none;
  flex-wrap: wrap;
  width: 100%;
}
.hy-hero__group {
  display: flex;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
  flex: 0 0 auto;
}
.hy-hero__track.is-static .hy-hero__group { flex-wrap: wrap; row-gap: 24px; }
.hy-hero__logo {
  flex: 0 0 auto;
  max-height: 92px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transition: transform 0.25s ease;
}
.hy-hero__logo:hover { transform: scale(1.06); }
@keyframes hy-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hy-hero__brandlink {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.hy-hero__brandlink:hover { border-color: var(--hy-brass); color: var(--hy-brass); }
@media (prefers-reduced-motion: reduce) {
  .hy-hero__track { animation: none; flex-wrap: wrap; width: 100%; }
}
@media (max-width: 600px) {
  .hy-hero__marquee { max-width: 100%; }
  .hy-hero__group { gap: 44px; padding-right: 44px; }
  .hy-hero__logo { max-height: 64px; max-width: 190px; }
}

/* ── Trust bar ───────────────────────────────────────────── */
.hy-trust {
  background: var(--hy-paper-2);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-trust__grid {
  padding: 56px var(--hy-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hy-trust__cell {
  padding: 8px 32px;
  border-left: 1px solid var(--hy-rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.hy-trust__cell:first-child { border-left: none; }
/* Uniform media zone so every logo/stat shares one centerline */
.hy-trust__media {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hy-trust__stat {
  font-size: 88px;
  color: var(--hy-ink);
  line-height: 0.9;
}
.hy-trust__mark {
  display: block;
  max-height: 96px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.hy-trust__mark--asi {
  max-height: 60px;
  max-width: 140px;
}
.hy-trust__label {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hy-trust__sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--hy-mute);
}
.hy-trust__strip {
  padding: 20px var(--hy-pad);
  border-top: 1px solid var(--hy-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hy-trust__badges {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hy-trust__badges span {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: var(--hy-mute);
}

/* ── Audiences ──────────────────────────────────────────── */
.hy-audiences {
  padding: 120px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-audiences__head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 72px;
}
.hy-audiences__h2 {
  font-size: 76px;
  margin: 24px 0 0;
}
.hy-audiences__lede {
  max-width: 660px;
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hy-mute);
}
.hy-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hy-rule);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-audience {
  padding: 56px 40px;
  border-left: 1px solid var(--hy-rule);
  display: flex;
  flex-direction: column;
}
.hy-audience:first-child {
  border-left: none;
  background: var(--hy-paper-2);
}
.hy-audience--lead .hy-audience__eye { color: var(--hy-accent); font-weight: 600; }
.hy-audience__eye { color: var(--hy-brass); font-weight: 600; }
.hy-audience__h3 {
  font-size: 44px;
  margin: 20px 0 24px;
  line-height: 1.05;
}
.hy-audience__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hy-mute);
  margin: 0 0 32px;
  flex: 1;
}
.hy-audience__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hy-audience__foot .hy-btn {
  align-self: flex-start;
}
.hy-audience__sub {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hy-mute);
}

/* ── Brand wall ──────────────────────────────────────────── */
.hy-brands {
  padding: 140px var(--hy-pad);
  background: var(--hy-paper-2);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-brands__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 80px;
}
.hy-brands__h2 {
  font-size: 84px;
  margin: 24px 0 0;
}
.hy-brands__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hy-mute);
  max-width: 480px;
}
.hy-brands__fine {
  margin-top: 16px;
  font-size: 13px;
  font-style: italic;
  color: var(--hy-mute);
}
.hy-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--hy-rule-soft);
  gap: 1px;
  border: 1px solid var(--hy-rule);
}
.hy-brand-cell {
  background: var(--hy-card);
  min-height: 200px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
.hy-brand-cell__name {
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: left;
  word-break: break-word;
}
.hy-brand-cell__logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  min-height: 0;
}
.hy-brand-cell__logo {
  display: block;
  max-height: 77px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.hy-brand-cell:hover .hy-brand-cell__logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}
.hy-brands__foot {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Channel model ───────────────────────────────────────── */
.hy-channel {
  padding: 140px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-channel__head {
  max-width: 720px;
  margin-bottom: 80px;
}
.hy-channel__h2 {
  font-size: 68px;
  margin: 24px 0 28px;
}
.hy-channel__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hy-mute);
  max-width: 600px;
}
.hy-channel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border: 1px solid var(--hy-rule);
}
.hy-channel__cell {
  padding: 40px 32px 48px;
  border-left: 1px solid var(--hy-rule);
  background: var(--hy-card);
  color: var(--hy-ink);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hy-channel__cell:first-child { border-left: none; }
.hy-channel__cell--mj {
  background: var(--hy-ink);
  color: var(--hy-paper);
}
.hy-channel__cell--mj .hy-channel__body { color: rgba(245, 241, 232, 0.7); }
.hy-channel__role {
  font-size: 36px;
  margin: 28px 0 16px;
}
.hy-channel__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hy-mute);
  margin: 0;
}
.hy-channel__mark {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hy-channel__arrow {
  position: absolute;
  right: -10px;
  top: 40px;
  width: 20px;
  height: 20px;
  background: var(--hy-paper);
  border: 1px solid var(--hy-rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hy-ink);
  z-index: 2;
}

/* ── How we protect ──────────────────────────────────────── */
.hy-protect {
  padding: 140px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
  background: var(--hy-paper-2);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: start;
}
.hy-protect__col {
  position: sticky;
  top: 100px;
}
.hy-protect__h2 {
  font-size: 72px;
  margin: 24px 0 32px;
}
.hy-protect__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hy-mute);
  max-width: 380px;
  margin: 0 0 32px;
}
.hy-protect__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 36px 0;
  gap: 40px;
  align-items: baseline;
  border-top: 1px solid var(--hy-rule);
}
.hy-protect__row:last-child {
  border-bottom: 1px solid var(--hy-rule);
}
.hy-protect__step {
  font-size: 56px;
  color: var(--hy-accent);
}
.hy-protect__title {
  font-size: 32px;
  margin: 0 0 12px;
}
.hy-protect__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hy-mute);
  margin: 0;
  max-width: 580px;
}

/* ── Quotes (dark editorial) ─────────────────────────────── */
.hy-quotes {
  background: var(--hy-ink);
  color: var(--hy-paper);
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}
.hy-quotes__lead {
  padding: 160px var(--hy-pad) 80px;
}
.hy-quotes__rule {
  color: var(--hy-brass);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.28em;
}
.hy-quotes__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(245, 241, 232, 0.2);
}
.hy-quotes__big {
  margin: 0;
  font-size: 96px;
  line-height: 1.04;
  font-style: italic;
  max-width: 1280px;
}
.hy-quotes__attrib {
  margin-top: 56px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.hy-quotes__dash {
  width: 56px;
  height: 1px;
  background: var(--hy-brass);
}
.hy-quotes__author {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hy-quotes__org {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.6);
  margin-top: 4px;
}

.hy-quotes__sage {
  padding: 40px var(--hy-pad);
  background: rgba(245, 241, 232, 0.04);
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.hy-sage-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--hy-brass);
}
.hy-sage-badge__a {
  font-size: 28px;
  color: var(--hy-brass);
}
.hy-sage-badge__a span {
  vertical-align: super;
  font-size: 16px;
}
.hy-sage-badge .hy-mono {
  color: var(--hy-brass);
  font-size: 11px;
}
.hy-quotes__sage-q {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.45;
  color: rgba(245, 241, 232, 0.9);
  max-width: 980px;
}
.hy-quotes__sage-author {
  margin-top: 16px;
  color: var(--hy-brass);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hy-quotes__grid {
  padding: 88px var(--hy-pad) 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hy-quote {
  padding: 36px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(245, 241, 232, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hy-quote .hy-mono { font-size: 10px; }
.hy-quote__body {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.hy-quote__attrib {
  padding-top: 20px;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
}
.hy-quote__author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hy-quote__org {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.55);
  margin-top: 4px;
}
.hy-quotes__foot {
  padding: 24px var(--hy-pad) 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
}
.hy-quotes__cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hy-paper);
  border-bottom: 1px solid var(--hy-brass);
  padding-bottom: 4px;
}

/* ── Pillars (Why MJ Luxe) ───────────────────────────────── */
.hy-pillars {
  padding: 140px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-pillars__h2 {
  font-size: 80px;
  margin: 24px 0 80px;
  max-width: 1180px;
}
.hy-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hy-pillar {
  border-top: 1px solid var(--hy-ink);
  padding-top: 32px;
}
.hy-pillar__title {
  font-size: 34px;
  margin: 20px 0 24px;
  line-height: 1.1;
}
.hy-pillar__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hy-mute);
  margin: 0;
}

/* ── Programs / use cases ────────────────────────────────── */
.hy-programs {
  padding: 140px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
  background: var(--hy-paper-2);
}
.hy-programs__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.hy-programs__h2 {
  font-size: 64px;
  margin: 16px 0 0;
}
.hy-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  row-gap: 56px;
}
.hy-program {
  border-top: 1px solid var(--hy-rule);
  padding-top: 24px;
}
.hy-program__name {
  font-size: 34px;
  margin: 0 0 12px;
}
.hy-program__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hy-mute);
  margin: 0;
}
.hy-programs__more {
  margin: 48px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--hy-mute);
}

/* ── End-user notice ─────────────────────────────────────── */
.hy-notice {
  padding: 72px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
  background: var(--hy-paper-3);
}
.hy-notice__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.hy-notice__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--hy-accent);
  color: var(--hy-accent);
  white-space: nowrap;
}
.hy-notice__pill .hy-mono {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--hy-accent);
}
.hy-notice__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hy-accent);
}
.hy-notice__body {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 26px;
  margin: 0;
  line-height: 1.5;
  color: var(--hy-ink);
}

/* ── Contact ─────────────────────────────────────────────── */
.hy-contact {
  padding: 140px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.hy-contact__h2 {
  font-size: 76px;
  margin: 24px 0 32px;
}
.hy-contact__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hy-mute);
  max-width: 400px;
  margin: 0 0 40px;
}
.hy-contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hy-contact__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 32px 0;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--hy-rule);
}
.hy-contact__row:last-child { border-bottom: 1px solid var(--hy-rule); }
.hy-contact__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hy-paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
}
.hy-contact__inquiry {
  font-size: 28px;
}
.hy-contact__owner { margin-top: 6px; }
.hy-contact__email {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: var(--hy-accent);
}
.hy-contact__phone {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  color: var(--hy-ink);
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.hy-contact__phone:hover {
  color: var(--hy-brass);
  border-color: var(--hy-brass);
}
.hy-contact__phone--alt {
  font-size: 14px;
  font-style: normal;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hy-brass);
}
.hy-contact__phone--tbd {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hy-mute);
  border-bottom: none;
  white-space: normal;
  text-align: right;
  max-width: 160px;
}
.hy-contact__role-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--hy-mute);
}
.hy-contact__row--note { background: var(--hy-paper-2); }
.hy-contact__row--note .hy-contact__avatar {
  background: var(--hy-brass);
  color: var(--hy-paper);
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
}

/* ── Image break (placeholder) ───────────────────────────── */
.hy-image-break {
  padding: 0 var(--hy-pad) 0;
  background: var(--hy-paper);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-image-break--alt { background: var(--hy-paper-2); }
.hy-image-break__figure {
  position: relative;
  margin: -1px 0 0;
  aspect-ratio: 16 / 6;
  background:
    repeating-linear-gradient(135deg, rgba(20, 17, 10, 0.05) 0 1px, transparent 1px 18px),
    var(--hy-paper-3);
  border: 1px dashed var(--hy-brass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hy-image-break__figure--tall { aspect-ratio: 16 / 5; }
.hy-image-break__figure--filled {
  background: none;
  border: none;
  overflow: hidden;
}
.hy-image-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hy-image-break__inner {
  max-width: 540px;
  text-align: center;
  padding: 24px 32px;
}
.hy-image-break__inner .hy-mono {
  display: block;
  margin-bottom: 10px;
}
.hy-image-break__hint {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--hy-mute);
}
@media (max-width: 768px) {
  .hy-image-break { padding: 0 var(--hy-pad); }
  .hy-image-break__figure { aspect-ratio: 4 / 3; }
  .hy-image-break__hint { font-size: 14px; }
}

/* ── Modal ───────────────────────────────────────────────── */
.hy-no-scroll { overflow: hidden; }
.hy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 17, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.hy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hy-modal[hidden] { display: none; }
.hy-modal__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--hy-card);
  border-radius: 4px;
  padding: 48px 48px 40px;
  box-shadow: 0 32px 80px -20px rgba(20, 17, 10, 0.5);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.hy-modal.is-open .hy-modal__panel { transform: translateY(0) scale(1); }
.hy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--hy-rule);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hy-ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hy-modal__close:hover { background: var(--hy-paper-2); border-color: var(--hy-ink); }
.hy-modal__head { margin-bottom: 28px; }
.hy-modal__head h3 {
  font-size: 36px;
  margin: 16px 0 12px;
  line-height: 1.1;
}
.hy-modal__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hy-mute);
}
.hy-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hy-field { display: flex; flex-direction: column; gap: 6px; }
.hy-field__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hy-mute);
  font-weight: 500;
}
.hy-field__opt {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-style: italic;
  color: var(--hy-mute);
}
.hy-field input,
.hy-field textarea,
.hy-field select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--hy-rule);
  background: var(--hy-paper);
  color: var(--hy-ink);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.hy-field input::placeholder,
.hy-field textarea::placeholder { color: rgba(20, 17, 10, 0.35); }
.hy-field input:focus,
.hy-field textarea:focus,
.hy-field select:focus {
  border-color: var(--hy-brass);
  background: var(--hy-card);
}
.hy-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hy-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hy-modal__fine {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--hy-mute);
  font-style: italic;
}
/* Spam honeypot — visually hidden, kept out of the tab order and a11y tree */
.hy-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hy-modal__error {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #b23b4b;
}
.hy-modal__success { text-align: left; }
.hy-modal__success h3 {
  font-size: 36px;
  margin: 12px 0 16px;
  line-height: 1.1;
}
.hy-modal__success p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--hy-ink);
}
@media (max-width: 600px) {
  .hy-modal__panel { padding: 32px 24px 28px; }
  .hy-modal__head h3 { font-size: 28px; }
  .hy-field-row { grid-template-columns: 1fr; }
}

/* ── Breast Cancer Research Foundation giving band ───────── */
.hy-bcrf {
  background: #fbeef3;
  border-top: 1px solid rgba(204, 51, 102, 0.18);
  border-bottom: 1px solid rgba(204, 51, 102, 0.18);
}
.hy-bcrf__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px var(--hy-pad);
}
.hy-bcrf__logo {
  flex: 0 0 auto;
  height: 64px;
  width: auto;
  display: block;
}
.hy-bcrf__copy { max-width: 560px; }
.hy-bcrf__eyebrow {
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: #cc3366;
  margin-bottom: 6px;
}
.hy-bcrf__statement {
  margin: 0;
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--hy-ink);
}
@media (max-width: 720px) {
  .hy-bcrf__inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 26px var(--hy-pad);
  }
  .hy-bcrf__logo { height: 54px; }
  .hy-bcrf__statement { font-size: 20px; }
}

/* ── Hero-bottom BCRF giving strip ───────────────────────── */
.hy-hero__bcrf {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(204, 51, 102, 0.22);
  border-radius: 999px;
  background: #fbeef3;
  color: var(--hy-ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hy-hero__bcrf:hover {
  border-color: rgba(204, 51, 102, 0.45);
  background: #f8e3ec;
}
.hy-hero__bcrf-ribbon {
  display: flex;
  flex: 0 0 auto;
  color: #cc3366;
}
.hy-hero__bcrf-text {
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--hy-mute);
}
.hy-hero__bcrf-text strong {
  font-weight: 600;
  color: #cc3366;
}
@media (max-width: 600px) {
  .hy-hero__bcrf { padding: 11px 16px; }
  .hy-hero__bcrf-text { font-size: 12px; }
}

/* ── Footer ──────────────────────────────────────────────── */
.hy-footer {
  padding: 88px var(--hy-pad) 48px;
  background: var(--hy-ink);
  color: var(--hy-paper);
}
.hy-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.hy-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hy-footer__wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hy-footer__logo {
  display: block;
  height: 132px;
  width: auto;
}
.hy-footer__name {
  font-size: 36px;
  line-height: 1;
}
.hy-footer__name .hy-italic { color: rgba(245, 241, 232, 0.6); }
.hy-footer__eyebrow {
  margin-top: 8px;
  font-size: 10px;
  color: var(--hy-brass);
}
.hy-footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.6);
  max-width: 360px;
  margin: 0 0 16px;
}
.hy-footer__cred {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--hy-brass);
  max-width: 360px;
  margin: 0 0 24px;
}
.hy-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hy-footer__col .hy-eyebrow,
.hy-footer__col .hy-eyebrow--brass {
  margin-bottom: 8px;
}
.hy-footer__col a,
.hy-footer__col span {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
}
.hy-footer__rule {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(245, 241, 232, 0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Nav active state ────────────────────────────────────── */
.hy-nav__active {
  color: var(--hy-brass);
  position: relative;
}
.hy-nav__active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--hy-brass);
}

/* ── Trust cells - clickable variant ─────────────────────── */
.hy-trust__cell--link {
  cursor: pointer;
  transition: background 0.2s ease;
}
.hy-trust__cell--link:hover {
  background: rgba(20, 17, 10, 0.03);
}
.hy-trust__cta {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hy-brass);
  font-weight: 500;
}
.hy-trust__placeholder {
  font-style: italic;
  color: var(--hy-brass);
  opacity: 0.7;
}

/* ── Audience deeper-page link ───────────────────────────── */
.hy-audience__deep {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hy-brass);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.hy-audience__deep:hover { border-color: var(--hy-brass); }

/* ── Channel protection note ─────────────────────────────── */
.hy-channel__note {
  margin-top: 40px;
  padding: 32px;
  background: var(--hy-paper-2);
  border-left: 3px solid var(--hy-brass);
}
.hy-channel__note .hy-mono {
  display: block;
  margin-bottom: 12px;
}
.hy-channel__note p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--hy-ink);
}

/* ── Quotes header (new) ─────────────────────────────────── */
.hy-quotes__head {
  font-size: 84px;
  margin: 0 0 24px;
  line-height: 1.04;
}
.hy-quotes__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.7);
  max-width: 720px;
  margin: 0 0 56px;
}
.hy-quotes__sage-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hy-quotes__sage-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hy-quotes__sage-meta .hy-mono {
  color: rgba(245, 241, 232, 0.6);
}
.hy-quotes__sage-meta .hy-link {
  color: var(--hy-brass);
}

/* ── Contact executive availability ──────────────────────── */
.hy-contact__hours {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--hy-paper-3);
  border-left: 3px solid var(--hy-brass);
  font-size: 14px;
  line-height: 1.65;
  color: var(--hy-ink);
}
.hy-contact__hours .hy-mono {
  display: block;
  margin-bottom: 8px;
}

/* ── Inner page hero variant ─────────────────────────────── */
.hy-hero--page { padding: 96px var(--hy-pad) 112px; }
.hy-hero--page .hy-hero__h1 { font-size: 82px; }

/* Scroll cue — a brass double-chevron in a soft ring, bottom-centre of the
   page heroes. A clear "more below" affordance that gently bobs; fades out
   once the user scrolls. */
.hy-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--hy-brass) 55%, transparent);
  background: color-mix(in srgb, var(--hy-paper) 60%, transparent);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--hy-ink) 45%, transparent);
  color: var(--hy-brass);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
  z-index: 3;
  animation: hy-scrollcue-bob 1.7s ease-in-out infinite;
}
.hy-scrollcue.is-hidden { opacity: 0; }
.hy-scrollcue__chev {
  display: block;
  width: 24px;
  height: auto;
}
@keyframes hy-scrollcue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@media (prefers-reduced-motion: reduce) {
  .hy-scrollcue { animation: none; }
}

/* ── Generic section (inner pages) ───────────────────────── */
.hy-section {
  padding: 112px var(--hy-pad);
  border-bottom: 1px solid var(--hy-rule);
}
.hy-section--alt { background: var(--hy-paper-2); }
.hy-section__head {
  max-width: 1100px;
  margin: 0 auto 56px;
  text-align: center;
}
.hy-section__h2 {
  font-size: 64px;
  margin: 20px 0 0;
  line-height: 1.04;
}
.hy-section__body {
  max-width: 880px;
  margin: 0 auto;
}
.hy-section__lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--hy-ink);
  margin: 0 0 24px;
}
.hy-section__lede:last-child { margin-bottom: 0; }
.hy-section__lede strong {
  color: var(--hy-ink);
  font-weight: 600;
}
.hy-section__fine {
  margin-top: 24px;
  font-size: 13px;
  font-style: italic;
  color: var(--hy-mute);
}

/* ── Callout block ───────────────────────────────────────── */
.hy-callout {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--hy-card);
  border-left: 3px solid var(--hy-brass);
  border-radius: 2px;
}
.hy-callout .hy-mono {
  display: block;
  margin-bottom: 12px;
  color: var(--hy-brass);
}
.hy-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hy-ink);
}

/* ── Feature list ────────────────────────────────────────── */
.hy-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hy-features li {
  padding: 28px 0;
  border-top: 1px solid var(--hy-rule);
}
.hy-features li:last-child { border-bottom: 1px solid var(--hy-rule); }
.hy-features__name {
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.hy-features li p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hy-mute);
  margin: 0 0 8px;
}
.hy-features li .hy-link {
  margin-top: 8px;
  color: var(--hy-brass);
  font-size: 11px;
}
.hy-features__email {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  color: var(--hy-accent);
  display: inline-block;
  margin-bottom: 4px;
}
.hy-features--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.hy-features--cols li:nth-child(2) { border-top: 1px solid var(--hy-rule); }
@media (max-width: 768px) {
  .hy-features--cols { grid-template-columns: 1fr; }
}

/* ── Two-col layout (inner pages) ────────────────────────── */
.hy-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.hy-twocol__h3 {
  font-size: 28px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.hy-twocol p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hy-mute);
  margin: 0;
}

/* ── Decoration flow diagram ─────────────────────────────── */
.hy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 40px 0;
}
.hy-flow__step {
  padding: 24px;
  background: var(--hy-card);
  border: 1px solid var(--hy-rule);
}
.hy-flow__step .hy-mono {
  display: block;
  margin-bottom: 8px;
  color: var(--hy-brass);
}
.hy-flow__step p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  color: var(--hy-ink);
}
.hy-flow__arrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--hy-brass);
}

/* ── CTA strip ───────────────────────────────────────────── */
.hy-ctastrip {
  padding: 88px var(--hy-pad);
  background: var(--hy-ink);
  color: var(--hy-paper);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}
.hy-ctastrip .hy-eyebrow,
.hy-ctastrip .hy-eyebrow--brass {
  color: var(--hy-brass);
}
.hy-ctastrip__h2 {
  font-size: 54px;
  line-height: 1.05;
  margin: 16px 0 0;
}
.hy-ctastrip__h2 .hy-italic { color: rgba(245, 241, 232, 0.65); }
.hy-ctastrip__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.hy-ctastrip .hy-btn {
  color: var(--hy-paper);
  border-color: rgba(245, 241, 232, 0.4);
}
.hy-ctastrip .hy-btn:hover {
  background: var(--hy-paper);
  color: var(--hy-ink);
  border-color: var(--hy-paper);
}
.hy-ctastrip .hy-btn--solid {
  background: var(--hy-brass);
  border-color: var(--hy-brass);
  color: var(--hy-ink);
}
.hy-ctastrip .hy-btn--solid:hover {
  background: var(--hy-paper);
  border-color: var(--hy-paper);
  color: var(--hy-ink);
}
.hy-ctastrip .hy-btn--ghost {
  border-color: rgba(245, 241, 232, 0.2);
  color: rgba(245, 241, 232, 0.7);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --hy-pad: 64px; }
  .hy-hero__h1 { font-size: 80px; }
  .hy-audiences__h2, .hy-brands__h2 { font-size: 64px; }
  .hy-quotes__big { font-size: 76px; }
  .hy-pillars__h2 { font-size: 64px; }
}

@media (max-width: 960px) {
  :root { --hy-pad: 40px; }
  .hy-footer__logo { height: 104px; }

  /* Mobile nav: brand on the left, CTA + hamburger grouped on the right */
  .hy-nav { display: flex; align-items: center; gap: 12px; }
  .hy-nav__brand { margin-right: auto; }
  .hy-nav__logo { height: 60px; }
  .hy-nav--floating .hy-nav__logo { height: 48px; }
  .hy-nav__cta { gap: 8px; }
  .hy-nav__login { display: none; }
  .hy-nav__toggle { display: flex; }

  /* Links collapse into a dropdown panel anchored under the bar */
  .hy-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px var(--hy-pad) 12px;
    background: var(--hy-card);
    border-top: 1px solid var(--hy-rule);
    border-bottom: 1px solid var(--hy-rule);
    box-shadow: 0 24px 40px -20px rgba(20, 17, 10, 0.25);
  }
  .hy-nav--menu-open .hy-nav__links { display: flex; }
  .hy-nav--menu-open { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .hy-nav__links a {
    padding: 15px 2px;
    font-size: 13px;
    border-bottom: 1px solid var(--hy-rule-soft);
  }
  .hy-nav__links a:last-child { border-bottom: none; }
  .hy-nav__links-login { display: block; }

  .hy-hero { padding: 80px var(--hy-pad) 35px; }
  .hy-hero__h1 { font-size: 56px; line-height: 1.08; }
  .hy-hero__accent { opacity: 0.5; }
  .hy-hero__accent img { width: 380px; height: 380px; }

  .hy-trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .hy-trust__cell { border-left: none; padding: 16px 24px; }
  .hy-trust__cell:nth-child(odd) { border-left: none; }
  .hy-trust__stat { font-size: 64px; }

  .hy-audiences { padding: 80px var(--hy-pad); }
  .hy-audiences__h2 { font-size: 44px; }
  .hy-audiences__grid { grid-template-columns: 1fr; }
  .hy-audience { border-left: none; border-top: 1px solid var(--hy-rule); }
  .hy-audience:first-child { border-top: none; }

  .hy-brands { padding: 80px var(--hy-pad); }
  .hy-brands__head { grid-template-columns: 1fr; gap: 32px; }
  .hy-brands__h2 { font-size: 48px; }
  .hy-brands__grid { grid-template-columns: repeat(2, 1fr); }
  .hy-brand-cell__name { font-size: 28px; }

  .hy-channel { padding: 80px var(--hy-pad); }
  .hy-channel__h2 { font-size: 44px; }
  .hy-channel__grid { grid-template-columns: 1fr; }
  .hy-channel__cell { border-left: none; border-top: 1px solid var(--hy-rule); min-height: 0; }
  .hy-channel__cell:first-child { border-top: none; }
  .hy-channel__arrow { display: none; }

  .hy-protect { padding: 80px var(--hy-pad); grid-template-columns: 1fr; gap: 48px; }
  .hy-protect__col { position: static; }
  .hy-protect__h2 { font-size: 48px; }
  .hy-protect__row { grid-template-columns: 80px 1fr; gap: 20px; }
  .hy-protect__step { font-size: 40px; }
  .hy-protect__title { font-size: 24px; }

  .hy-quotes__lead { padding: 80px var(--hy-pad) 48px; }
  .hy-quotes__big { font-size: 44px; }
  .hy-quotes__sage { grid-template-columns: 1fr; gap: 24px; padding: 32px var(--hy-pad); }
  .hy-quotes__sage-q { font-size: 20px; }
  .hy-quotes__grid { grid-template-columns: 1fr; padding: 48px var(--hy-pad) 88px; gap: 20px; }

  .hy-pillars { padding: 80px var(--hy-pad); }
  .hy-pillars__h2 { font-size: 48px; margin-bottom: 48px; }
  .hy-pillars__grid { grid-template-columns: 1fr; gap: 32px; }

  .hy-programs { padding: 80px var(--hy-pad); }
  .hy-programs__h2 { font-size: 42px; }
  .hy-programs__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; row-gap: 40px; }

  .hy-notice__inner { grid-template-columns: 1fr; gap: 24px; }
  .hy-notice__body { font-size: 20px; }

  .hy-contact { padding: 80px var(--hy-pad); grid-template-columns: 1fr; gap: 48px; }
  .hy-contact__h2 { font-size: 48px; }
  .hy-contact__row { grid-template-columns: 56px 1fr; gap: 16px; }
  .hy-contact__email { grid-column: 1 / -1; font-size: 18px; }

  .hy-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hy-footer__rule { font-size: 10px; }

  .hy-section { padding: 72px var(--hy-pad); }
  .hy-section__h2 { font-size: 40px; }
  .hy-section__lede { font-size: 16px; }
  .hy-twocol { grid-template-columns: 1fr; gap: 32px; }
  .hy-flow { grid-template-columns: 1fr; gap: 12px; }
  .hy-flow__arrow { transform: rotate(90deg); justify-content: center; }
  .hy-ctastrip { grid-template-columns: 1fr; padding: 64px var(--hy-pad); }
  .hy-ctastrip__h2 { font-size: 36px; }
  .hy-ctastrip__ctas { justify-content: flex-start; }
  .hy-hero--page .hy-hero__h1 { font-size: 52px; }
  .hy-quotes__head { font-size: 52px; }
  .hy-channel__note p { font-size: 18px; }
}

@media (max-width: 600px) {
  :root { --hy-pad: 24px; }
  .hy-nav { padding: 14px var(--hy-pad); gap: 10px; }
  .hy-nav__logo { height: 52px; }
  .hy-nav--floating .hy-nav__logo { height: 44px; }
  .hy-nav__cta .hy-btn--sm { padding: 11px 16px; }

  .hy-hero__h1 { font-size: 40px; }
  .hy-hero__lede { font-size: 16px; margin-top: 32px; }
  .hy-hero__ctas { margin-top: 32px; flex-direction: column; align-items: stretch; }
  .hy-hero__ctas .hy-btn { justify-content: center; }

  .hy-trust__grid { grid-template-columns: 1fr; }
  .hy-brands__grid { grid-template-columns: 1fr; }
  .hy-programs__grid { grid-template-columns: 1fr; }
  .hy-footer__grid { grid-template-columns: 1fr; }
  .hy-footer__rule { flex-direction: column; gap: 12px; }
}
