:root {
  --navy: #07538a;
  --navy-deep: #05345d;
  --cyan: #25b8cf;
  --cyan-soft: #e7f8fb;
  --magenta: #c91d4f;
  --magenta-deep: #9f123d;
  --pink-soft: #fcebf1;
  --ink: #153a59;
  --body: #244f6f;
  --muted: #61778a;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --sand: #f4f0e7;
  --line: rgba(7, 83, 138, 0.16);
  --shadow: 0 22px 70px rgba(5, 52, 93, 0.14);
  --shadow-soft: 0 12px 36px rgba(5, 52, 93, 0.11);
  --radius: 26px;
  --radius-sm: 16px;
  --header-height: 78px;
  --content: min(1180px, calc(100% - 48px));
  --copy: 1.07rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--body);
  background: var(--paper);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

video {
  width: 100%;
  height: auto;
  background: #071d2d;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--magenta);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  transform-origin: left center;
}

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

section,
footer {
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 10px clamp(20px, 4vw, 66px);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px) saturate(1.4);
  transition: opacity 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  min-height: 68px;
  border-color: rgba(7, 83, 138, 0.12);
  box-shadow: 0 8px 32px rgba(5, 52, 93, 0.09);
}

.site-header.is-scrolled::before,
.site-header.menu-visible::before {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 16vw, 215px);
}

.brand img {
  width: 100%;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.35rem);
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: rgba(5, 52, 93, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: color 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled .main-menu,
.site-header.menu-visible .main-menu {
  color: var(--navy-deep);
  background: rgba(231, 248, 251, 0.88);
  border-color: rgba(7, 83, 138, 0.1);
}

.main-menu a {
  position: relative;
  padding: 0.42rem 0.48rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.main-menu a::after {
  position: absolute;
  right: 0.45rem;
  bottom: 0.15rem;
  left: 0.45rem;
  height: 2px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-menu a:hover::after,
.main-menu a[aria-current="location"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.9rem;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: grid;
  gap: 4px;
  width: 22px;
}

.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 20%;
  left: -5%;
  width: 60%;
  height: 25%;
  background: var(--cyan);
  clip-path: polygon(0 18%, 100% 0, 86% 100%, 0 76%);
  opacity: 0.96;
}

.hero::after {
  top: 31%;
  left: -8%;
  width: 58%;
  height: 13%;
  background: var(--magenta);
  clip-path: polygon(0 0, 100% 46%, 0 100%);
}

.hero__team {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 34%;
}

.hero__team picture,
.hero__team img {
  width: 100%;
  height: 100%;
}

.hero__team img {
  object-fit: cover;
  object-position: center;
}

.hero__wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 52, 93, 0.98) 0%, rgba(5, 52, 93, 0.94) 25%, rgba(5, 52, 93, 0.48) 57%, rgba(5, 52, 93, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 52, 93, 0.78) 0%, transparent 46%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(690px, 55vw);
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 56px) 0 56px clamp(28px, 6vw, 98px);
}

.hero__edition {
  margin: 0 0 clamp(6.8rem, 18vh, 10.8rem);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.hero__edition strong {
  font-weight: 800;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.45rem, 5.4vw, 5.9rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(5, 52, 93, 0.32);
}

.hero__subtitle {
  max-width: 650px;
  margin: 0.95rem 0 0;
  color: #dffaff;
  font-size: clamp(1.25rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

.hero__secondary {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 1.15rem;
  max-width: 545px;
  margin-top: clamp(2rem, 5vh, 3.2rem);
  padding: 0.65rem 1.3rem 0.65rem 0.65rem;
  background: rgba(201, 29, 79, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(70, 5, 30, 0.24);
  backdrop-filter: blur(10px);
  font-size: clamp(0.96rem, 1.4vw, 1.13rem);
  line-height: 1.25;
}

.hero__secondary img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid #fff;
  border-radius: 50%;
}

.hero__secondary strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.08em;
}

.hero__partners {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.hero__partners > div {
  display: grid;
  gap: 0.35rem;
  align-items: end;
}

.hero__partners span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__partners img {
  max-height: 48px;
  width: auto;
  padding: 0.36rem 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 64px);
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-2px) rotate(45deg);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(-4px) rotate(45deg); opacity: 0.55; }
  50% { transform: translateY(4px) rotate(45deg); opacity: 1; }
}

.editorial,
.story-section,
.videos-section,
.interview-section,
.agenda-section,
.menarini-section {
  padding-block: clamp(78px, 9vw, 138px);
}

.editorial::before,
.story-section::before,
.agenda-section::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 3vw;
  width: min(240px, 24vw);
  height: 110px;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(145deg, transparent 45%, var(--cyan) 46% 55%, transparent 56%) 0 0 / 55px 55px,
    linear-gradient(35deg, transparent 45%, var(--magenta) 46% 55%, transparent 56%) 24px 12px / 72px 72px;
  pointer-events: none;
}

.tone-white {
  background: #fff;
}

.tone-pink {
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%);
}

.tone-blue {
  background: linear-gradient(135deg, #fff 0%, var(--cyan-soft) 100%);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-bottom: clamp(2.4rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--magenta);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid currentColor;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.3vw, 4.15rem);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading--light .eyebrow,
.section-heading--light h2 {
  color: #fff;
}

.editorial__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.editorial__portrait {
  margin: 0;
  overflow: hidden;
  background: var(--cyan-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.editorial__portrait figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 1.15rem 1.35rem 1.35rem;
  color: #fff;
  background: var(--navy);
  line-height: 1.35;
}

.editorial__portrait strong {
  color: var(--cyan);
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.story-copy {
  font-size: var(--copy);
}

.story-copy > p:first-child {
  margin-top: 0;
}

.story-copy p {
  margin: 0 0 1.25em;
  orphans: 3;
  widows: 3;
}

.story-copy .lede {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.27rem);
  font-weight: 600;
  line-height: 1.55;
}

.dropcap::first-letter {
  float: left;
  margin: 0.08em 0.11em 0 0;
  color: var(--magenta);
  font-family: "Poppins", sans-serif;
  font-size: 3.6em;
  font-weight: 800;
  line-height: 0.76;
}

.feature-divider {
  min-height: min(820px, 92svh);
  overflow: hidden;
  background: var(--navy-deep);
}

.feature-divider > picture,
.feature-divider > picture img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.feature-divider > picture img {
  object-fit: cover;
  object-position: center 45%;
}

.feature-divider__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 7vw, 96px);
  color: #fff;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 52, 93, 0.16) 50%, rgba(5, 52, 93, 0.94) 100%),
    linear-gradient(90deg, rgba(201, 29, 79, 0.66), transparent 55%);
}

.feature-divider__overlay::before {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: 14%;
  width: 75%;
  height: 31%;
  content: "";
  background: rgba(37, 184, 207, 0.9);
  clip-path: polygon(14% 0, 100% 22%, 100% 100%, 0 78%);
}

.feature-divider__overlay .eyebrow {
  color: #fff;
}

.feature-divider__overlay h2 {
  max-width: 960px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 6.2vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 6px 30px rgba(5, 52, 93, 0.4);
}

.feature-divider__overlay p {
  max-width: 920px;
  margin: 0.8rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.85fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: start;
}

.story-layout .story-copy {
  columns: 2 290px;
  column-gap: clamp(1.7rem, 3vw, 3rem);
  column-rule: 1px solid var(--line);
}

.story-layout .story-copy > * {
  break-inside: avoid;
}

.story-aside {
  display: grid;
  gap: 1.5rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
}

.people-grid:has(.person-card:only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.person-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e7eef2;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}

.person-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.person-card:hover img {
  transform: scale(1.035);
}

.person-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.45rem 0.75rem 0.72rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(5, 52, 93, 0.96), transparent);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.15;
  text-align: center;
}

.person-card figcaption strong {
  font-weight: 700;
}

.story-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  object-fit: cover;
}

.story-image.team img,
.story-image.wide img {
  aspect-ratio: 16 / 10;
}

.story-image.portrait {
  max-width: 520px;
}

.story-image.portrait img {
  aspect-ratio: 3 / 4;
}

.pullquote {
  position: relative;
  margin: 1.3rem 0 1.8rem;
  padding: 1.6rem 1.55rem;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid var(--magenta);
  border-radius: 22px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 10px 26px rgba(5, 52, 93, 0.07);
}

.pullquote::before,
.pullquote::after {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.pullquote::before {
  bottom: 18px;
  left: 18px;
  border-right: 15px solid #b9cfda;
}

.pullquote::after {
  top: 18px;
  right: 18px;
  border-left: 15px solid var(--magenta);
}

.pullquote--cyan {
  color: var(--navy);
  border-color: var(--cyan);
}

.videos-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 184, 207, 0.22), transparent 33%),
    radial-gradient(circle at 92% 86%, rgba(201, 29, 79, 0.24), transparent 31%),
    var(--navy-deep);
}

.videos-section::before {
  position: absolute;
  top: 10%;
  left: -12%;
  width: 70%;
  height: 160px;
  content: "";
  background: rgba(201, 29, 79, 0.5);
  clip-path: polygon(0 0, 100% 43%, 78% 100%, 0 70%);
}

.video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.video-card {
  margin: 0;
}

.video-card h3 {
  margin: 1.15rem 0 0;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.2;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #071b2b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.video-frame::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.interview-section {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 52, 93, 0.98), rgba(7, 83, 138, 0.98) 45%, rgba(159, 18, 61, 0.98));
}

.interview-section::before,
.interview-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.interview-section::before {
  top: 2%;
  right: -12%;
  width: 62%;
  height: 340px;
  background: rgba(37, 184, 207, 0.22);
  clip-path: polygon(18% 0, 100% 18%, 83% 100%, 0 72%);
}

.interview-section::after {
  bottom: 6%;
  left: -8%;
  width: 50%;
  height: 300px;
  background: rgba(201, 29, 79, 0.3);
  clip-path: polygon(0 20%, 100% 0, 82% 100%, 0 70%);
}

.interview-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3.6rem);
}

.interview-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-copy--light {
  color: rgba(255, 255, 255, 0.9);
}

.story-copy--light .lede {
  color: #fff;
}

.interview-intro__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.interview-intro__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.interview-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--body);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}

.interview-chapter h3 {
  grid-column: 1 / -1;
  margin: 0 0 0.65rem;
  color: var(--magenta);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.interview-chapter > p {
  margin: 0 0 1rem;
  font-size: var(--copy);
}

.interview-chapter > .story-image {
  grid-row: span 4;
  align-self: start;
}

.interview-chapter > .pullquote {
  grid-column: span 1;
}

.video-card--interview {
  width: min(880px, 100%);
  margin: clamp(1rem, 3vw, 2.5rem) auto 0;
  text-align: center;
}

.agenda-section {
  overflow: hidden;
  background: #fff;
}

.agenda-visual {
  width: min(1040px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.agenda-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  color: #fff;
  background: var(--cyan);
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.agenda-grid article:nth-child(even) {
  background: var(--magenta);
}

.agenda-grid h3 {
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.24;
}

.agenda-grid p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.agenda-grid strong {
  margin-top: 0.7rem;
  font-style: italic;
}

.previous-editions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.4rem;
  padding: 0.85rem 1.2rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.previous-editions:hover {
  background: var(--magenta);
  transform: translateY(-2px);
}

.menarini-section {
  overflow: hidden;
  color: #1e2024;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 240, 231, 0.96)),
    var(--sand);
}

.menarini-section__layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.4fr) minmax(180px, 0.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.menarini-mark {
  color: #e3062f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13rem, 25vw, 26rem);
  font-weight: 900;
  line-height: 0.65;
  letter-spacing: -0.14em;
  opacity: 0.92;
}

.menarini-section .eyebrow {
  color: #e3062f;
}

.menarini-section h2 {
  margin: 0 0 1.3rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.menarini-section p {
  margin: 0;
  font-size: 1.04rem;
}

.menarini-logo {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  text-align: center;
}

.menarini-logo a {
  color: #e3062f;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: clamp(55px, 7vw, 90px) 0 26px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 0.7fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-grid img {
  width: auto;
  max-height: 58px;
  margin: 0.6rem 0 1rem;
  padding: 0.35rem 0.55rem;
  background: #fff;
  border-radius: 8px;
}

.footer-label {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-grid a {
  color: #fff;
}

.footer-note {
  width: var(--content);
  margin: 3rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --content: min(1060px, calc(100% - 40px));
  }

  .main-menu {
    gap: 0.2rem;
  }

  .main-menu a {
    font-size: 0.74rem;
  }

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

  .story-layout .story-copy {
    columns: 2 300px;
  }

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

  .people-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .people-grid:has(.person-card:only-child) {
    grid-template-columns: minmax(240px, 380px);
  }

  .story-image.team {
    max-width: 760px;
  }

  .agenda-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menarini-section__layout {
    grid-template-columns: 0.45fr 1.2fr;
  }

  .menarini-logo {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 20px;
  }

  .site-header::before {
    opacity: 1;
  }

  .brand {
    width: 170px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-menu {
    position: fixed;
    z-index: 999;
    top: calc(var(--header-height) + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 83, 138, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-menu.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-menu a {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(7, 83, 138, 0.09);
    font-size: 0.96rem;
  }

  .main-menu a:last-child {
    border-bottom: 0;
  }

  .hero__content {
    width: min(660px, 74vw);
  }

  .hero__team {
    left: 28%;
  }

  .editorial__layout {
    grid-template-columns: 280px 1fr;
  }

  .story-layout .story-copy {
    columns: auto;
  }

  .interview-intro {
    grid-template-columns: 1fr;
  }

  .interview-intro__image {
    width: min(520px, 100%);
  }

  .interview-chapter {
    grid-template-columns: 1fr;
  }

  .interview-chapter h3,
  .interview-chapter > .pullquote {
    grid-column: auto;
  }

  .interview-chapter > .story-image {
    grid-row: auto;
    width: min(540px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100% - 30px, 680px);
    --copy: 1rem;
  }

  .hero {
    min-height: 900px;
  }

  .hero::before {
    top: 31%;
    left: -12%;
    width: 116%;
    height: 17%;
  }

  .hero::after {
    top: 39%;
    width: 95%;
    height: 8%;
  }

  .hero__team {
    inset: 36% 0 0;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(5, 52, 93, 0.98) 0%, rgba(5, 52, 93, 0.97) 32%, rgba(5, 52, 93, 0.2) 63%, rgba(5, 52, 93, 0.88) 100%);
  }

  .hero__content {
    justify-content: flex-start;
    width: 100%;
    min-height: 900px;
    padding: calc(var(--header-height) + 32px) 20px 34px;
  }

  .hero__edition {
    margin-bottom: 5.7rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .hero__subtitle {
    font-size: clamp(1.2rem, 5.8vw, 1.75rem);
  }

  .hero__secondary {
    margin-top: auto;
    grid-template-columns: 72px 1fr;
    max-width: 100%;
  }

  .hero__secondary img {
    width: 72px;
    height: 72px;
  }

  .hero__partners {
    margin-top: 1rem;
  }

  .scroll-cue {
    display: none;
  }

  .editorial,
  .story-section,
  .videos-section,
  .interview-section,
  .agenda-section,
  .menarini-section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

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

  .editorial__portrait {
    width: min(340px, 100%);
  }

  .feature-divider {
    min-height: 680px;
  }

  .feature-divider > picture img {
    object-position: center;
  }

  .feature-divider__overlay {
    padding: 32px 20px;
  }

  .feature-divider__overlay::before {
    right: -25%;
    width: 130%;
    height: 42%;
  }

  .feature-divider__overlay h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .agenda-grid article {
    min-height: 0;
  }

  .menarini-section__layout {
    grid-template-columns: 1fr;
  }

  .menarini-mark {
    position: absolute;
    z-index: 0;
    top: 34px;
    left: -26px;
    font-size: 16rem;
    opacity: 0.1;
  }

  .menarini-section__layout > *:not(.menarini-mark) {
    position: relative;
    z-index: 1;
  }

  .menarini-logo {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  :root {
    --content: calc(100% - 24px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: 145px;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    padding-inline: 0.8rem;
  }

  .hero {
    min-height: 850px;
  }

  .hero__content {
    min-height: 850px;
    padding-inline: 14px;
  }

  .hero__partners {
    gap: 0.7rem;
  }

  .hero__partners img {
    max-width: 115px;
  }

  .people-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .person-card figcaption {
    padding-inline: 0.35rem;
    font-size: 0.69rem;
  }

  .pullquote {
    padding: 1.3rem 1rem;
  }

  .interview-chapter {
    padding: 1.35rem;
  }
}

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

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

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

@media print {
  .site-header,
  .scroll-progress,
  .scroll-cue,
  .menu-toggle,
  video {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .hero,
  .feature-divider,
  .videos-section,
  .interview-section,
  .site-footer {
    color: #000;
    background: #fff !important;
  }

  .hero {
    min-height: auto;
    padding: 2cm 0;
  }

  .hero__team,
  .hero__wash,
  .hero::before,
  .hero::after,
  .feature-divider > picture {
    display: none;
  }

  .hero__content {
    width: 100%;
    min-height: auto;
    padding: 0 2cm;
  }

  .hero__edition {
    margin-bottom: 1cm;
  }

  .story-layout,
  .editorial__layout,
  .interview-intro,
  .interview-chapter,
  .footer-grid {
    display: block;
  }

  .story-layout .story-copy {
    columns: 2;
  }

  .person-card,
  .story-image,
  .editorial__portrait,
  .interview-chapter {
    box-shadow: none;
  }

  a {
    text-decoration: none;
  }
}

.preview-banner {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  max-width: min(430px, calc(100% - 36px));
  padding: 0.75rem 1rem;
  color: #fff;
  background: rgba(159, 18, 61, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(5, 52, 93, 0.22);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

@media (max-width: 600px) {
  .preview-banner {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.72rem;
  }
}

@media print {
  .preview-banner {
    display: none !important;
  }
}

.agenda-grid sup { font-size: 0.62em; line-height: 0; }
