@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
}

:root {
  --wine-50: #fbf4f5;
  --wine-100: #f5e1e4;
  --wine-200: #e9bbc2;
  --wine-400: #c45365;
  --wine-600: #8c2137;
  --wine-700: #7a1728;
  --wine-800: #5b1120;
  --wine-900: #390a13;
  --ink: #17201d;
  --ink-soft: #26312d;
  --cream: #f7f3ea;
  --paper: #fffdf9;
  --teal: #0c6b68;
  --teal-dark: #07514f;
  --gold: #c8a15b;
  --olive: #6f7a45;
  --stone-50: #faf8f4;
  --stone-100: #f2eee8;
  --stone-200: #e6e0d7;
  --stone-300: #d3ccc1;
  --stone-500: #776f66;
  --stone-700: #433e38;
  --white: #fff;
  --success: #277a52;
  --error: #b42318;

  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "Manrope", "Avenir Next", sans-serif;

  --display-xl: clamp(3.4rem, 7.5vw, 7.25rem);
  --display-lg: clamp(3rem, 6.2vw, 5.9rem);
  --h1: clamp(2.75rem, 5.4vw, 5.2rem);
  --h2: clamp(2.3rem, 4.4vw, 4.35rem);
  --h3: clamp(1.65rem, 2.5vw, 2.35rem);
  --h4: clamp(1.15rem, 1.5vw, 1.35rem);
  --body-lg: clamp(1.1rem, 1.5vw, 1.3rem);
  --body: clamp(1rem, 1.1vw, 1.08rem);
  --body-sm: clamp(0.875rem, 0.95vw, 0.95rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;

  --container: 82rem;
  --reading: 46rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5rem, 10vw, 9.5rem);
  --radius-sm: 0.35rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.4rem;
  --border: 1px solid var(--stone-200);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 22px 60px rgb(23 32 29 / 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgb(12 107 104 / 0.22);
}

::selection {
  background: var(--wine-200);
  color: var(--wine-900);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: var(--space-6);
  font-size: var(--h1);
  line-height: 0.99;
}

h2 {
  margin-bottom: var(--space-6);
  font-size: var(--h2);
  line-height: 1.02;
}

h3 {
  margin-bottom: var(--space-3);
  font-size: var(--h3);
  line-height: 1.15;
}

h4 {
  margin-bottom: var(--space-2);
  font-size: var(--h4);
  line-height: 1.25;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.reading {
  max-width: var(--reading);
}

.section {
  padding-block: var(--section);
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--wine {
  background: var(--wine-700);
  color: var(--white);
}

.section--tight {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--wine-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--wine-200);
}

.eyebrow--teal {
  color: #74d5c9;
}

.lead {
  max-width: 48rem;
  color: var(--stone-700);
  font-size: var(--body-lg);
  line-height: 1.62;
}

.section--ink .lead,
.section--wine .lead,
.dark-copy {
  color: var(--stone-200);
}

.kicker {
  color: var(--stone-500);
  font-size: var(--body-sm);
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.button svg {
  width: 1rem;
  transition: transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--wine-700);
  color: var(--white);
}

.button--primary:hover {
  background: var(--wine-800);
}

.button--digital {
  background: var(--teal);
  color: var(--white);
}

.button--digital:hover {
  background: var(--teal-dark);
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--stone-100);
}

.button--light {
  border-color: rgb(255 255 255 / 0.55);
  color: var(--white);
}

.button--light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 0.08);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: var(--space-2);
  color: var(--wine-700);
  font-weight: 700;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  color: var(--wine-800);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: var(--border);
  background: rgb(255 253 249 / 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.brand-link {
  position: relative;
  display: block;
  width: 12rem;
  height: 3.15rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
}

.brand-link img {
  position: absolute;
  top: -1.28rem;
  left: -1.54rem;
  width: 14.8rem;
  max-width: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.desktop-nav a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--stone-700);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: var(--wine-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle {
  flex-direction: column;
  gap: 0.32rem;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgb(200 161 91 / 0.13), transparent 27%),
    var(--ink);
  color: var(--paper);
}

.home-hero__grid {
  display: grid;
  min-height: min(53rem, calc(100vh - 5.25rem));
  grid-template-columns: minmax(0, 1.04fr) minmax(27rem, 0.96fr);
  align-items: stretch;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 49rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8.5rem) clamp(2rem, 6vw, 6.75rem) clamp(5rem, 8vw, 7rem) 0;
}

.home-hero h1 {
  max-width: 52rem;
  font-size: var(--display-xl);
}

.home-hero .lead {
  max-width: 42rem;
  margin-bottom: var(--space-8);
  color: var(--stone-200);
}

.home-hero__media {
  position: relative;
  min-height: 100%;
}

.home-hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 28%),
    linear-gradient(0deg, rgb(23 32 29 / 0.45), transparent 40%);
  content: "";
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: var(--space-6);
  bottom: var(--space-6);
  max-width: 15rem;
  padding: var(--space-3) var(--space-4);
  border-left: 2px solid var(--gold);
  background: rgb(23 32 29 / 0.8);
  color: var(--stone-200);
  font-size: 0.75rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.connection-lines {
  position: absolute;
  z-index: 1;
  bottom: -8rem;
  left: -6rem;
  width: 36rem;
  color: var(--teal);
  opacity: 0.45;
  pointer-events: none;
}

.connection-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.connection-lines circle {
  fill: currentColor;
}

/* Proof */
.proof-strip {
  border-bottom: var(--border);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 10rem;
  padding: var(--space-8);
  border-left: var(--border);
}

.proof-item:last-child {
  border-right: var(--border);
}

.proof-value {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--wine-700);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.proof-label {
  display: block;
  max-width: 15rem;
  color: var(--stone-700);
  font-size: var(--body-sm);
  line-height: 1.5;
}

/* Section headers */
.section-heading {
  display: grid;
  margin-bottom: clamp(2.75rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.65fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

/* Solution grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}

.solution-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: var(--space-8);
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-decoration: none;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-card--wide {
  grid-column: span 8;
  background: var(--wine-700);
  color: var(--white);
}

.solution-card--digital {
  border-color: rgb(12 107 104 / 0.35);
}

.solution-card__number {
  margin-bottom: auto;
  color: var(--stone-500);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-card--wide .solution-card__number {
  color: var(--wine-200);
}

.solution-card h3 {
  max-width: 34rem;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.solution-card p {
  max-width: 39rem;
  margin-bottom: var(--space-6);
  color: var(--stone-700);
  font-size: var(--body-sm);
}

.solution-card--wide p {
  color: var(--wine-100);
}

.card-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 220ms var(--ease);
}

.solution-card:hover .card-arrow {
  transform: translateX(4px);
}

/* Audience */
.audience-list {
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.audience-row {
  display: grid;
  padding-block: var(--space-8);
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
  grid-template-columns: 5rem 1fr 1fr;
  gap: var(--space-8);
  align-items: baseline;
}

.audience-row__number {
  color: var(--wine-200);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.audience-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.audience-row p {
  margin: 0;
  color: var(--stone-200);
}

/* Editorial image/story */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
}

.story-media {
  position: relative;
  margin: 0;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.story-media figcaption {
  max-width: 28rem;
  margin-top: var(--space-3);
  color: var(--stone-500);
  font-size: 0.75rem;
}

.story-copy p {
  color: var(--stone-700);
}

.mini-facts {
  display: grid;
  margin-block: var(--space-8);
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.mini-fact {
  padding: var(--space-5);
  border-left: 2px solid var(--wine-700);
  background: var(--paper);
}

.mini-fact strong {
  display: block;
  margin-bottom: var(--space-1);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.mini-fact span {
  color: var(--stone-500);
  font-size: var(--body-sm);
}

/* AI */
.ai-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(12 107 104 / 0.08) 1px, transparent 1px),
    linear-gradient(rgb(12 107 104 / 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 3rem 3rem;
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(30rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.ai-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-lg);
  background: rgb(23 32 29 / 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.ai-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  color: var(--stone-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ai-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #8be0d4;
}

.ai-status::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #57c9b8;
  content: "";
}

.ai-steps {
  display: grid;
  gap: var(--space-3);
}

.ai-step {
  display: grid;
  padding: var(--space-4);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.04);
  grid-template-columns: 2.6rem 1fr;
  gap: var(--space-3);
}

.ai-step__number {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-step strong {
  display: block;
  margin-bottom: 0.12rem;
  line-height: 1.35;
}

.ai-step small {
  display: block;
  color: var(--stone-300);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Academy */
.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.academy-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: var(--space-8);
  border-top: 3px solid var(--wine-700);
  background: var(--paper);
}

.academy-card:nth-child(2) {
  border-color: var(--teal);
}

.academy-card:nth-child(3) {
  border-color: var(--gold);
}

.academy-card__tag {
  margin-bottom: auto;
  color: var(--stone-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.academy-card p {
  color: var(--stone-700);
  font-size: var(--body-sm);
}

/* Partner cloud */
.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.partner-chip {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.85rem 1.2rem;
  border: var(--border);
  border-radius: 999px;
  background: var(--paper);
  color: var(--stone-700);
  font-size: var(--body-sm);
  font-weight: 600;
}

.international-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.international-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stone-200);
  border: var(--border);
}

.international-number {
  min-height: 11rem;
  padding: var(--space-6);
  background: var(--paper);
}

.international-number strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--wine-700);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
}

.international-number span {
  color: var(--stone-700);
  font-size: var(--body-sm);
}

/* CTA */
.cta-panel {
  position: relative;
  padding: clamp(2.5rem, 6vw, 6rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--wine-700);
  color: var(--white);
}

.cta-panel::after {
  position: absolute;
  top: -9rem;
  right: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgb(255 255 255 / 0.04),
    0 0 0 8rem rgb(255 255 255 / 0.03);
  content: "";
}

.cta-panel__content {
  position: relative;
  z-index: 1;
  max-width: 55rem;
}

.cta-panel h2 {
  max-width: 52rem;
}

.cta-panel p {
  max-width: 42rem;
  color: var(--wine-100);
  font-size: var(--body-lg);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--stone-200);
}

.footer-main {
  display: grid;
  padding-block: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.footer-brand .brand-link {
  margin-bottom: var(--space-6);
  background: var(--paper);
}

.footer-brand p {
  max-width: 21rem;
  color: var(--stone-300);
  font-size: var(--body-sm);
}

.footer-column h2 {
  margin-bottom: var(--space-4);
  color: var(--stone-300);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: var(--space-2);
}

.footer-column a {
  color: var(--stone-200);
  font-size: var(--body-sm);
  text-underline-offset: 0.25em;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  color: var(--stone-300);
  font-size: 0.73rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.social-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

/* Subpage */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 36rem;
  padding-block: clamp(5rem, 10vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 55rem;
  margin-bottom: 0;
  font-size: var(--display-lg);
}

.page-hero .lead {
  margin-bottom: 0;
  color: var(--stone-200);
}

.page-hero__ring {
  position: absolute;
  top: -13rem;
  right: -8rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgb(12 107 104 / 0.52);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgb(12 107 104 / 0.08),
    0 0 0 14rem rgb(200 161 91 / 0.03);
}

.split-content {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.sticky-label {
  position: sticky;
  top: 8rem;
}

.prose {
  max-width: var(--reading);
}

.prose p,
.prose li {
  color: var(--stone-700);
}

.prose p + p {
  margin-top: var(--space-5);
}

.prose h2 {
  margin-top: var(--space-16);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-weight: 500;
}

.prose strong {
  color: var(--ink);
}

.value-grid,
.service-detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.value-card,
.service-detail,
.contact-card {
  padding: var(--space-8);
  border: var(--border);
  background: var(--paper);
}

.value-card__number,
.service-detail__tag {
  display: block;
  margin-bottom: var(--space-12);
  color: var(--wine-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.value-card h3,
.service-detail h3,
.contact-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.value-card p,
.service-detail p,
.contact-card p,
.contact-card address {
  color: var(--stone-700);
  font-size: var(--body-sm);
  font-style: normal;
}

.profile {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.profile-portrait {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgb(122 23 40 / 0.86), rgb(23 32 29 / 0.92)),
    url("../images/enosis-event-team.webp") center / cover;
}

.profile-monogram {
  position: absolute;
  right: 1.5rem;
  bottom: -1rem;
  color: rgb(255 255 255 / 0.2);
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
}

.profile-copy .role {
  margin-bottom: var(--space-8);
  color: var(--wine-700);
  font-weight: 700;
}

.profile-copy p {
  color: var(--stone-700);
}

.service-band {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.service-band + .service-band {
  margin-top: var(--space-20);
  padding-top: var(--space-20);
  border-top: var(--border);
}

.service-band h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.service-band__items {
  display: grid;
  gap: var(--space-6);
}

.service-line {
  padding-bottom: var(--space-6);
  border-bottom: var(--border);
}

.service-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-line h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
}

.service-line p {
  margin: 0;
  color: var(--stone-700);
}

.network-group + .network-group {
  margin-top: var(--space-16);
}

.network-group h3 {
  margin-bottom: var(--space-6);
  color: var(--wine-700);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-200);
  border: var(--border);
}

.network-item {
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6);
  background: var(--paper);
}

.network-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.network-item span {
  color: var(--stone-500);
  font-size: 0.72rem;
}

.contact-card a {
  color: var(--wine-700);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25em;
}

.legal-box {
  padding: var(--space-8);
  border-left: 3px solid var(--wine-700);
  background: var(--paper);
  color: var(--stone-700);
  font-size: var(--body-sm);
}

.notice {
  padding: var(--space-5);
  border: 1px solid rgb(12 107 104 / 0.25);
  background: rgb(12 107 104 / 0.07);
  color: var(--ink);
}

.stack-top {
  margin-top: var(--space-8);
}

.dark-prose p,
.dark-prose li {
  color: var(--wine-100);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 68rem) {
  .site-header {
    backdrop-filter: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    top: 5.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: var(--space-8) var(--gutter) var(--space-12);
    background: var(--paper);
    align-content: start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    display: flex;
    min-height: 4rem;
    align-items: center;
    border-bottom: var(--border);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-nav .button {
    width: max-content;
    min-height: 3rem;
    margin-top: var(--space-8);
    border: 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
  }

  .home-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    min-height: 41rem;
    padding-right: 0;
  }

  .home-hero__media {
    min-height: 34rem;
  }

  .home-hero__media::before {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 20%);
  }

  .proof-grid,
  .value-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-top: var(--border);
  }

  .solution-card,
  .solution-card--wide {
    grid-column: span 6;
  }

  .section-heading,
  .page-hero__inner,
  .ai-grid,
  .international-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    min-height: 32rem;
    align-content: end;
  }

  .audience-row {
    grid-template-columns: 4rem 1fr;
  }

  .audience-row p {
    grid-column: 2;
  }

  .story-grid,
  .profile {
    grid-template-columns: 1fr;
  }

  .story-media {
    max-width: 52rem;
  }

  .academy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .academy-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .split-content {
    grid-template-columns: 1fr;
  }

  .sticky-label {
    position: static;
  }

  .network-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 47.99rem) {
  :root {
    --section: 5.25rem;
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .brand-link {
    width: 10.4rem;
    height: 2.8rem;
  }

  .brand-link img {
    top: -1.15rem;
    left: -1.35rem;
    width: 12.8rem;
  }

  .mobile-nav {
    top: 4.5rem;
  }

  .home-hero__copy {
    min-height: 39rem;
    padding-block: 5rem;
  }

  .home-hero__media {
    min-height: 24rem;
  }

  .photo-note {
    right: var(--space-4);
    bottom: var(--space-4);
    left: var(--space-4);
    max-width: none;
  }

  .proof-grid,
  .value-grid,
  .service-detail-grid,
  .contact-grid,
  .academy-grid,
  .mini-facts {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    min-height: 8rem;
    border-top: var(--border);
    border-right: var(--border);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .proof-label {
    max-width: none;
  }

  .solution-card,
  .solution-card--wide {
    grid-column: 1 / -1;
    min-height: 20rem;
  }

  .audience-row {
    padding-block: var(--space-6);
    grid-template-columns: 2.5rem 1fr;
    gap: var(--space-4);
  }

  .ai-grid {
    gap: var(--space-12);
  }

  .ai-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .academy-card:last-child {
    grid-column: auto;
  }

  .international-numbers {
    grid-template-columns: 1fr;
  }

  .international-number {
    min-height: 8rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: var(--space-5);
  }

  .page-hero__inner {
    min-height: 28rem;
    padding-block: 4.75rem;
  }

  .page-hero__ring {
    top: -7rem;
    right: -12rem;
    width: 28rem;
    height: 28rem;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .network-grid {
    grid-template-columns: 1fr 1fr;
  }

  .network-item {
    min-height: 8rem;
  }

  .profile-portrait {
    min-height: 23rem;
  }
}

@media (max-width: 25rem) {
  .button-row .button {
    width: 100%;
  }

  .network-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
