@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/playfair.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/playfair-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter.woff2") format("woff2");
}

:root {
  /* Agri-Marketing Summit logo palette, refined for accessible interface use. */
  --green: #08783b;
  --green-deep: #073a2b;
  --green-black: #05271f;
  --green-bright: #0bae52;
  --gold: #f5b514;
  --gold-light: #ffd84b;
  --gold-deep: #8c4f08;
  --soil: #82450c;
  --soil-deep: #4e290c;
  --cream: #fbf6ea;
  --cream-deep: #f2e8d7;
  --paper: #fffdf7;
  --ink: #16231c;
  --ink-soft: #59645d;
  --line: rgba(22, 35, 28, 0.16);
  --line-strong: rgba(22, 35, 28, 0.34);
  --line-light: rgba(255, 253, 247, 0.22);
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shell: 76rem;
  --measure: 42rem;
  --header-height: 4.75rem;
  --scroll-progress: 0;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 55px rgba(22, 35, 28, 0.1);
  --shadow-lift: 0 24px 70px rgba(5, 39, 31, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245, 181, 20, 0.5);
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--green-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--green);
}

button,
summary {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--green-black);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--green-black);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.anchor-target {
  display: block;
  height: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5.7vw, 5.85rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h2 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 4.4vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 650;
  line-height: 1.18;
}

p {
  max-width: var(--measure);
}

.lead {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.65;
}

.microcopy {
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.78;
}

.section-intro {
  max-width: 50rem;
}

.section-intro--compact h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.section-intro--light,
.section-intro--light h2 {
  color: var(--paper);
}

.section-intro--light .eyebrow {
  color: var(--gold);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after {
  position: absolute;
  top: -60%;
  left: -45%;
  width: 28%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(18deg) translateX(-220%);
  transition: transform 650ms var(--ease);
}

.button:hover::after {
  transform: rotate(18deg) translateX(720%);
}

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

.button:active {
  transform: translateY(0);
}

.button--large {
  min-height: 3.5rem;
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
}

.button--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 120, 59, 0.18);
}

.button--primary:hover {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 58, 43, 0.24);
}

.button--gold {
  background: var(--gold);
  color: var(--green-black);
  box-shadow: 0 10px 26px rgba(245, 181, 20, 0.2);
}

.button--gold:hover {
  background: var(--gold-light);
  color: var(--green-black);
  box-shadow: 0 16px 34px rgba(245, 181, 20, 0.28);
}

.button--outline,
.button--outline-light {
  background: transparent;
}

.button--outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--green);
  color: var(--green-deep);
}

.button--outline-light {
  border-color: rgba(255, 253, 247, 0.52);
  color: var(--paper);
}

.button--outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Compact event utility bar */
.utility-bar {
  background: var(--green-black);
  color: var(--paper);
}

.utility-bar__inner {
  display: flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  display: flex;
  max-width: none;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.utility-bar p span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 253, 247, 0.76);
}

.utility-bar p span::before {
  width: 3px;
  height: 3px;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.utility-bar__cta {
  flex: none;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.utility-bar__cta:hover {
  color: #fff;
}

/* Page navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow 180ms ease;
}

.site-header.is-stuck {
  box-shadow: 0 10px 30px rgba(22, 35, 28, 0.1);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 1.3rem;
}

.nav-brand {
  width: 13.5rem;
  flex: none;
  text-decoration: none;
}

.logo-lockup {
  display: inline-grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
}

.logo-lockup__mark {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: contain;
}

.logo-lockup__type {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.logo-lockup__tagline {
  color: var(--soil);
  font-size: 0.5rem;
  font-weight: 580;
  letter-spacing: 0.065em;
}

.logo-lockup__name {
  margin-top: 0.32rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.45vw, 1.5rem);
  margin-left: auto;
}

.page-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.page-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.page-nav a:hover,
.page-nav a[aria-current="true"] {
  color: var(--green-deep);
}

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

.nav-register {
  flex: none;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--green-deep);
  cursor: pointer;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 181, 20, 0.16), transparent 28rem),
    linear-gradient(125deg, var(--green-black) 0%, var(--green-deep) 58%, #0a5335 100%);
  content: "";
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
  animation: hero-grid-drift 18s linear infinite;
}

.hero__grid {
  display: grid;
  min-height: clamp(46rem, calc(100vh - 7.3rem), 58rem);
  grid-template-columns: minmax(0, 1.03fr) minmax(28rem, 0.97fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy > * {
  animation: hero-copy-in 820ms var(--ease) both;
}

.hero__copy > :nth-child(2) { animation-delay: 70ms; }
.hero__copy > :nth-child(3) { animation-delay: 140ms; }
.hero__copy > :nth-child(4) { animation-delay: 210ms; }
.hero__copy > :nth-child(5) { animation-delay: 280ms; }
.hero__copy > :nth-child(6) { animation-delay: 350ms; }
.hero__copy > :nth-child(7) { animation-delay: 420ms; }

.hero__event {
  max-width: 48rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__theme {
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-style: italic;
  font-weight: 650;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.6rem;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.27rem);
  line-height: 1.65;
}

.hero-facts {
  display: grid;
  max-width: 46rem;
  grid-template-columns: 1.2fr 1fr 0.78fr;
  gap: 0;
  margin-top: 2rem;
  border-block: 1px solid var(--line-light);
}

.hero-facts > div {
  padding: 1rem 1rem 1rem 0;
}

.hero-facts > div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line-light);
}

.hero-facts dt {
  margin-bottom: 0.18rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-facts dd {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__ccc-note {
  margin-top: 1.1rem;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.82rem;
}

.hero__visual {
  --parallax-x: 0rem;
  --parallax-y: 0rem;
  position: relative;
  display: grid;
  min-height: 0;
  min-width: 0;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(15rem, 1.1fr);
  grid-template-rows: auto auto;
  align-items: end;
  gap: 1.15rem;
  padding-block: 1.5rem 2.5rem;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 700ms var(--ease);
}

.hero__visual::before {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.hero__visual::after {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.95;
}

.hero__logo-card {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: clamp(1.15rem, 2vw, 1.65rem) clamp(0.85rem, 1.4vw, 1.2rem);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 247, 0.97);
  box-shadow: var(--shadow-lift);
  animation: logo-card-float 7s ease-in-out infinite;
  transform: rotate(-1.2deg);
}

.logo-lockup--hero {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.logo-lockup--hero .logo-lockup__mark {
  width: min(74%, 10rem);
  height: auto;
  margin-inline: auto;
}

.logo-lockup--hero .logo-lockup__tagline {
  font-size: clamp(0.48rem, 0.6vw, 0.62rem);
  letter-spacing: 0.12em;
}

.logo-lockup--hero .logo-lockup__name {
  margin-top: 0.45rem;
  max-width: 100%;
  font-size: clamp(0.62rem, 0.8vw, 0.82rem);
  font-weight: 520;
  letter-spacing: 0.045em;
}

.hero__photo {
  position: relative;
  z-index: 2;
  width: calc(100% - 1rem);
  grid-column: 1 / -1;
  grid-row: 2;
  margin: -0.35rem 0 0 1rem;
  border: 0.55rem solid var(--green-deep);
  overflow: hidden;
  background: var(--green-deep);
  box-shadow: var(--shadow-lift);
  transform: rotate(1.1deg);
}

.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.78) contrast(1.04);
  animation: hero-photo-breathe 13s ease-in-out infinite alternate;
}

.hero__photo figcaption {
  padding: 0.65rem 0.75rem 0.1rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__room-photo {
  position: relative;
  z-index: 4;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 0.45rem solid var(--paper);
  background: var(--paper);
  box-shadow: var(--shadow-lift);
  transform: rotate(-2.2deg);
  animation: room-photo-float 8.5s 600ms ease-in-out infinite;
}

.hero__room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

/* Moving editorial signal between the hero and the value story. */
.kinetic-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(245, 181, 20, 0.34);
  background: var(--soil-deep);
  color: rgba(255, 253, 247, 0.84);
  box-shadow: inset 0 1px rgba(255, 253, 247, 0.07), inset 0 -1px rgba(5, 39, 31, 0.25);
}

.kinetic-band__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: kinetic-track 38s linear infinite;
  will-change: transform;
  font-size: clamp(0.66rem, 0.62rem + 0.16vw, 0.76rem);
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kinetic-band__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(1.7rem, 3.2vw, 3.4rem);
  padding: 1rem clamp(1.3rem, 2.8vw, 3rem);
}

.kinetic-band__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.7rem, 3.2vw, 3.4rem);
  white-space: nowrap;
}

.kinetic-band__item::after {
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid rgba(255, 216, 75, 0.72);
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.kinetic-band__item--featured {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.18em;
  font-style: italic;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: none;
}

/* Value snapshot */
.value-rail {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.value-rail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 31%;
  height: 5px;
  background: var(--green);
  content: "";
}

.value-rail::after {
  position: absolute;
  top: 0;
  left: 31%;
  width: 13%;
  height: 5px;
  background: var(--gold);
  content: "";
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
}

.value-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 2rem 1.45rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 30px rgba(22, 35, 28, 0.035);
  transition: background-color 350ms ease, border-color 350ms ease, box-shadow 350ms ease, transform 420ms var(--ease);
}

.value-item::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border: 1.5rem solid rgba(245, 181, 20, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 500ms var(--ease), border-color 350ms ease;
}

.value-item:hover {
  border-color: rgba(8, 120, 59, 0.34);
  background: var(--paper);
  box-shadow: 0 24px 48px rgba(7, 58, 43, 0.13);
  transform: translateY(-0.75rem) rotate(-0.45deg);
}

.value-item:nth-child(even):hover {
  transform: translateY(-0.75rem) rotate(0.45deg);
}

.value-item:hover::after {
  border-color: rgba(245, 181, 20, 0.18);
  transform: translate(-0.6rem, -0.6rem) scale(1.18);
}

.value-item__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.value-item__signal::before {
  width: 1.4rem;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 350ms var(--ease);
}

.value-item:hover .value-item__signal::before {
  width: 2.2rem;
}

.value-item h3 {
  color: var(--green-deep);
  font-size: clamp(1.3rem, 1.55vw, 1.6rem);
}

.value-item p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Problem */
.problem {
  position: relative;
  overflow: hidden;
}

.problem::after {
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(8, 120, 59, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8, 120, 59, 0.035), 0 0 0 8rem rgba(8, 120, 59, 0.025);
  content: "";
  animation: orbit-turn 34s linear infinite;
}

.problem__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.85fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.problem__statement {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border-top: 5px solid var(--gold);
  background: var(--green-deep);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 450ms ease, transform 450ms var(--ease);
}

.problem__statement:hover {
  box-shadow: 0 30px 70px rgba(5, 39, 31, 0.24), 0 0 42px rgba(245, 181, 20, 0.1);
  transform: translateY(-0.45rem);
}

.problem__statement > p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 650;
  line-height: 1.2;
}

.problem__statement ol {
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.problem__statement li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.95rem;
  transition: background-color 280ms ease, padding-left 350ms var(--ease);
}

.problem__statement li:hover {
  padding-left: 2.45rem;
  background: rgba(255, 253, 247, 0.055);
}

.problem__statement li::before {
  position: absolute;
  top: 1.7rem;
  left: 0;
  width: 1rem;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 350ms var(--ease), box-shadow 350ms ease;
}

.problem__statement li:hover::before {
  width: 1.45rem;
  box-shadow: 0 0 12px rgba(245, 181, 20, 0.6);
}

/* Cinematic visual break between the business problem and the audience. */
.strategy-break {
  position: relative;
  min-height: clamp(28rem, 52vw, 43rem);
  isolation: isolate;
  overflow: hidden;
  background: var(--green-black);
  color: #fff;
}

.strategy-break > img {
  position: absolute;
  inset: -4% 0;
  z-index: -3;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  animation: strategy-photo-drift 16s ease-in-out infinite alternate;
}

.strategy-break__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 39, 31, 0.88) 0%, rgba(5, 39, 31, 0.62) 38%, rgba(5, 39, 31, 0.08) 72%),
    linear-gradient(to top, rgba(5, 39, 31, 0.48), transparent 60%);
}

.strategy-break::after {
  position: absolute;
  top: 50%;
  left: 18%;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(245, 181, 20, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(245, 181, 20, 0.045), 0 0 75px rgba(245, 181, 20, 0.14);
  content: "";
  transform: translate(-50%, -50%);
  animation: strategy-orbit 13s ease-in-out infinite;
}

.strategy-break__inner {
  display: flex;
  min-height: clamp(28rem, 52vw, 43rem);
  align-items: center;
}

.strategy-break__copy {
  max-width: 38rem;
}

.strategy-break .eyebrow {
  color: var(--gold);
}

.strategy-break h2 {
  max-width: 12ch;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.strategy-break__copy > p:last-child {
  max-width: 34rem;
  margin-top: 1.4rem;
  color: rgba(255, 253, 247, 0.8);
  font-size: 1.05rem;
}

/* Audience */
.audience {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 24%, rgba(245, 181, 20, 0.1), transparent 20rem),
    var(--cream-deep);
}

.audience::before {
  position: absolute;
  bottom: -16rem;
  left: -13rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(8, 120, 59, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(8, 120, 59, 0.025);
  content: "";
  animation: orbit-turn 38s linear infinite;
}

.audience__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-intro--sticky {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.audience-list li {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.75rem;
  padding: 1.25rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
  transition: background-color 300ms ease, color 300ms ease, transform 360ms var(--ease);
}

.audience-list li:hover {
  background: rgba(255, 253, 247, 0.62);
  color: var(--green-deep);
  transform: translateX(0.4rem);
}

.audience-list li:nth-child(even) {
  border-left: 1px solid var(--line);
}

.audience-list__mark {
  width: 0.52rem;
  height: 0.52rem;
  margin-top: 0.45rem;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--cream-deep);
  background: var(--gold);
  transition: transform 350ms var(--ease), box-shadow 350ms ease;
}

.audience-list li:hover .audience-list__mark {
  box-shadow: 0 0 0 5px rgba(245, 181, 20, 0.14);
  transform: scale(1.12);
}

/* Outcomes */
.outcomes {
  position: relative;
  overflow: hidden;
  background: var(--green-black);
  color: var(--paper);
}

.outcomes::before {
  position: absolute;
  top: -18rem;
  left: 52%;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(245, 181, 20, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(245, 181, 20, 0.045),
    0 0 0 9rem rgba(245, 181, 20, 0.024),
    0 0 95px rgba(245, 181, 20, 0.25),
    inset 0 0 70px rgba(245, 181, 20, 0.08);
  content: "";
  animation: orbit-turn 30s linear infinite reverse, outcome-glow 5.5s ease-in-out infinite;
}

.outcome-list {
  position: relative;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line-light);
}

.outcome {
  display: grid;
  grid-template-columns: clamp(5rem, 10vw, 9rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line-light);
}

.outcome__verb {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  font-style: italic;
  line-height: 0.9;
}

.outcome h3 {
  max-width: 26ch;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.outcome p {
  max-width: 45rem;
  margin-top: 0.85rem;
  color: rgba(255, 253, 247, 0.72);
  font-size: 1rem;
}

/* CCC connection */
.ccc-section {
  display: grid;
  min-height: 44rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(26rem, 0.92fr);
  background: var(--paper);
}

.ccc-section__photo {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
}

.ccc-section__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 39, 31, 0.72), transparent 45%);
  content: "";
}

.ccc-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 72%;
  transform-origin: center bottom;
  animation: ccc-photo-drift 16s ease-in-out infinite alternate;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.ccc-section:hover .ccc-section__photo img {
  animation-play-state: paused;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.24);
}

.ccc-section__photo span {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: 2rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ccc-section__content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}

.ccc-section__content::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(245, 181, 20, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(245, 181, 20, 0.035), 0 0 50px rgba(245, 181, 20, 0.1);
  content: "";
  pointer-events: none;
  animation: orbit-turn 26s linear infinite;
}

.ccc-section__content > * {
  position: relative;
  z-index: 1;
}

.ccc-section__content h2 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 3.8vw, 4.25rem);
}

.ccc-section__lead {
  max-width: 33rem;
  margin-top: 1.5rem;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 650;
  line-height: 1.3;
}

.ccc-section__content > p:not(.eyebrow, .ccc-section__lead) {
  margin-top: 1.25rem;
  color: var(--ink-soft);
}

.ccc-section__content ul {
  width: 100%;
  margin: 1.7rem 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ccc-section__content li {
  padding: 0.75rem 0 0.75rem 1.3rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(var(--gold), var(--gold)) left center / 0.45rem 2px no-repeat;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 650;
  transition: background-position 350ms var(--ease), color 250ms ease, padding-left 350ms var(--ease);
}

.ccc-section__content li:hover {
  padding-left: 1.75rem;
  background-size: 1rem 2px;
  color: var(--green-deep);
}

/* Agenda */
.agenda {
  position: relative;
  overflow: hidden;
  background: var(--green-black);
  color: var(--paper);
}

.agenda::before {
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(245, 181, 20, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(245, 181, 20, 0.018), 0 0 0 12rem rgba(245, 181, 20, 0.012);
  content: "";
  animation: orbit-turn 28s linear infinite;
}

.agenda__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.agenda__intro {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
}

.agenda__intro h2 {
  max-width: 11ch;
  color: #fff;
}

.agenda__intro .eyebrow {
  color: var(--gold);
}

.agenda__intro .lead {
  color: rgba(255, 253, 247, 0.72);
}

.agenda__note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.agenda-list {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.agenda-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12rem;
  width: 1px;
  background: rgba(255, 253, 247, 0.16);
  content: "";
}

.agenda-list::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12rem;
  width: 2px;
  background: linear-gradient(var(--gold), var(--green-bright));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 2.2s var(--ease);
  pointer-events: none;
}

.agenda-list.is-in-view::after {
  transform: scaleY(1);
}

.agenda-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 300ms ease, transform 300ms var(--ease);
}

.agenda-item::before {
  position: absolute;
  top: 2.45rem;
  left: calc(12rem - 0.37rem);
  z-index: 3;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--green-black);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(245, 181, 20, 0.55);
  content: "";
  transition: box-shadow 300ms ease, transform 300ms var(--ease);
}

.agenda-item:hover {
  background: rgba(255, 253, 247, 0.035);
  transform: translateX(0.25rem);
}

.agenda-item:hover::before {
  box-shadow: 0 0 0 7px rgba(245, 181, 20, 0.12);
  transform: scale(1.12);
}

.agenda-item__time {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.9rem 1.4rem 1.9rem 1.15rem;
}

.agenda-item__time time {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  font-weight: 650;
  line-height: 1.15;
}

.agenda-item__time span {
  margin-top: 0.45rem;
  color: rgba(255, 253, 247, 0.46);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.agenda-item__body {
  padding: 1.9rem 0 2rem 2.45rem;
}

.agenda-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  color: var(--green-bright);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-item h3 {
  max-width: 33rem;
  color: #fff;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
}

.agenda-item p {
  max-width: 40rem;
  margin-top: 0.6rem;
  color: rgba(255, 253, 247, 0.64);
  font-size: 0.9rem;
  line-height: 1.62;
}

.agenda-item--featured {
  margin-block: 0.9rem;
  border: 0;
  background: var(--gold);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.agenda-item--featured::before {
  border-color: var(--gold);
  background: var(--green-deep);
}

.agenda-item--featured .agenda-item__time time,
.agenda-item--featured .agenda-item__time span,
.agenda-item--featured .agenda-item__meta,
.agenda-item--featured h3,
.agenda-item--featured p {
  color: var(--green-black);
}

.agenda-item--featured .agenda-item__body {
  padding-right: 1.35rem;
}

.agenda-item--featured:hover {
  background: var(--gold-light);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28), 0 0 36px rgba(245, 181, 20, 0.2);
  transform: translateX(0.35rem) scale(1.006);
}

.agenda-item--featured:hover .agenda-item__time time,
.agenda-item--featured:hover .agenda-item__time span,
.agenda-item--featured:hover .agenda-item__meta,
.agenda-item--featured:hover h3,
.agenda-item--featured:hover p {
  color: var(--green-black);
}

.agenda-item--hospitality:not(.agenda-item--featured) {
  background: rgba(255, 253, 247, 0.045);
}

.agenda-item--hospitality:not(.agenda-item--featured) h3 {
  font-style: italic;
}

.agenda-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 253, 247, 0.2);
  background: rgba(255, 253, 247, 0.07);
  backdrop-filter: blur(8px);
  color: var(--paper);
}

.agenda-cta p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.agenda-cta span {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.75rem;
}

/* Buyer panel */
.panel-feature {
  position: relative;
  min-height: 46rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-black);
  color: #fff;
}

.panel-feature__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.panel-feature__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 39, 31, 0.97) 0%, rgba(5, 39, 31, 0.88) 46%, rgba(5, 39, 31, 0.28) 100%),
    linear-gradient(to top, rgba(5, 39, 31, 0.55), transparent 55%);
  content: "";
}

.panel-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8);
}

.panel-feature__inner {
  display: flex;
  min-height: 46rem;
  align-items: center;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.panel-feature__copy {
  max-width: 48rem;
}

.panel-feature .eyebrow {
  color: var(--gold);
}

.panel-feature h2 {
  max-width: 13ch;
  color: #fff;
}

.panel-feature__copy > p:not(.eyebrow, .microcopy) {
  max-width: 40rem;
  margin-top: 1.5rem;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
}

.panel-questions {
  display: flex;
  max-width: 43rem;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-block: 2rem 1.5rem;
}

.panel-questions span {
  position: relative;
  overflow: hidden;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(245, 181, 20, 0.62);
  background: rgba(245, 181, 20, 0.22);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 24px rgba(245, 181, 20, 0.07), 0 0 22px rgba(245, 181, 20, 0.13);
  transition: background-color 300ms ease, box-shadow 300ms ease, color 300ms ease, transform 350ms var(--ease);
}

.panel-questions span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 48%, transparent 72%);
  content: "";
  transform: translateX(-140%);
  transition: transform 650ms var(--ease);
}

.panel-questions span:hover {
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(245, 181, 20, 0.22), 0 0 24px rgba(245, 181, 20, 0.18);
  color: var(--green-black);
  transform: translateY(-0.35rem);
}

.panel-questions span:hover::after {
  transform: translateX(140%);
}

/* Speakers */
.speakers {
  background: var(--paper);
}

.speakers__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.speaker-announcement {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  background: var(--cream);
}

.speaker-announcement::before {
  position: absolute;
  top: -4.5rem;
  right: -4.5rem;
  width: 11rem;
  height: 11rem;
  border: 2.3rem solid rgba(245, 181, 20, 0.16);
  border-radius: 50%;
  content: "";
}

.speaker-announcement__label {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.speaker-announcement__message {
  max-width: 16ch;
  margin-top: 1.3rem;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.speaker-announcement > p:last-child {
  max-width: 34rem;
  margin-top: 1.3rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.speaker-grid {
  display: grid;
  gap: 1.25rem;
}

.speaker {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.speaker img {
  width: 10rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.speaker__role,
.speaker__session {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Pricing */
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--soil-deep);
}

.pricing::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(108deg, transparent 0 48%, rgba(255, 255, 255, 0.035) 48% 49%, transparent 49% 100%);
  background-size: 5rem 5rem;
  content: "";
}

.pricing__shell {
  position: relative;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.pricing-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.pricing-card__copy h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.pricing-card__copy > p:last-child {
  margin-top: 1.4rem;
  color: var(--ink-soft);
}

.pricing-card__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--green-deep);
  color: var(--paper);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.pricing-card__price span {
  color: var(--gold);
  font-size: 0.45em;
  vertical-align: top;
}

.pricing-card__unit {
  margin-top: 0.8rem;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card__offer ul {
  margin-block: 2rem;
  padding: 0;
  list-style: none;
}

.pricing-card__offer li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.92rem;
}

.pricing-card__offer li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.55rem;
  height: 2px;
  background: var(--gold);
  content: "";
}

/* Visit */
.visit {
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.visit-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 12px 28px rgba(22, 35, 28, 0.045);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 350ms ease, transform 400ms var(--ease);
}

.visit-item::after {
  position: absolute;
  right: -2.6rem;
  bottom: -2.6rem;
  width: 6.2rem;
  height: 6.2rem;
  border: 1.2rem solid rgba(8, 120, 59, 0.055);
  border-radius: 50%;
  content: "";
  transition: transform 450ms var(--ease), border-color 350ms ease;
}

.visit-item:nth-child(even) {
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.visit-item:hover {
  border-color: rgba(8, 120, 59, 0.32);
  background: var(--paper);
  box-shadow: 0 22px 50px rgba(7, 58, 43, 0.12), 0 0 25px rgba(245, 181, 20, 0.08);
  color: var(--ink);
  transform: translateY(-0.55rem);
}

.visit-item:hover::after {
  border-color: rgba(245, 181, 20, 0.16);
  transform: translate(-0.45rem, -0.45rem) scale(1.15);
}

.visit-item__label {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-item h3 {
  color: var(--green-deep);
}

.visit-item > p:last-child {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.visit-item > p:last-child span {
  color: var(--green);
  font-weight: 750;
}

.hotel-block {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(22, 35, 28, 0.12);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(22, 35, 28, 0.12);
}

.hotel-block__image {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
}

.hotel-block__image figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}

.hotel-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transition: filter 500ms ease, transform 900ms var(--ease);
}

.hotel-block:hover .hotel-block__image img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.055);
}

.hotel-block__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  border-top: 5px solid var(--gold);
  background:
    radial-gradient(circle at 100% 100%, rgba(245, 181, 20, 0.12), transparent 15rem),
    var(--paper);
}

.hotel-block h3 {
  color: var(--green-deep);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.hotel-block p:not(.eyebrow) {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hotel-block__content .button {
  margin-top: 1.5rem;
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 0.6rem;
  padding-block: 1.3rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--green);
}

.faq-item__number {
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.faq-item__mark {
  position: relative;
  width: 1rem;
  height: 1rem;
  justify-self: end;
}

.faq-item__mark::before,
.faq-item__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: var(--green);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__mark::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  padding: 0 2rem 1.5rem 3.3rem;
}

.faq-item__answer p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Final conversion */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 110%, rgba(245, 181, 20, 0.28), transparent 37rem);
  content: "";
}

.final-cta__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.025), 0 0 0 12rem rgba(255, 255, 255, 0.018);
  transform: translate(-50%, -50%);
}

.final-cta__inner {
  display: flex;
  min-height: 43rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  max-width: 15ch;
  color: #fff;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(255, 253, 247, 0.8);
  font-size: 1.06rem;
}

.final-cta .button {
  margin-top: 2rem;
}

.final-cta__inner > span {
  margin-top: 1.2rem;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Footer */
.footer {
  background: var(--green-black);
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.8rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.2fr) 0.7fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.logo-lockup--footer {
  width: min(100%, 17rem);
}

.logo-lockup--footer .logo-lockup__mark {
  width: 4rem;
  height: 4rem;
}

.logo-lockup--footer .logo-lockup__tagline {
  color: var(--gold-light);
}

.logo-lockup--footer .logo-lockup__name {
  color: #fff;
  font-weight: 520;
}

.footer__grid > div:first-child p {
  max-width: 28rem;
  margin-top: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer a {
  color: rgba(255, 253, 247, 0.78);
}

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

.footer address {
  font-style: normal;
  line-height: 1.8;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 247, 0.46);
  font-size: 0.68rem;
}

@keyframes hero-grid-drift {
  to { background-position: 48px 48px; }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-card-float {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50% { transform: rotate(-0.5deg) translateY(-0.55rem); }
}

@keyframes room-photo-float {
  0%, 100% { transform: rotate(-2.2deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-1.3deg) translate3d(-0.35rem, -0.6rem, 0); }
}

@keyframes hero-photo-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes strategy-photo-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(0.8%, -1%, 0); }
}

@keyframes strategy-orbit {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.76; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes ccc-photo-drift {
  from { transform: scale(1.16); }
  to { transform: scale(1.21); }
}

@keyframes outcome-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(245, 181, 20, 0)); }
  50% { filter: drop-shadow(0 0 28px rgba(245, 181, 20, 0.34)); }
}

@keyframes kinetic-track {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

/* Motion enhancement */
.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(1.65rem) scale(0.985);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-enabled .agenda-item.reveal {
  transform: translateX(2.2rem);
}

.reveal-enabled .agenda-item.reveal.is-visible {
  transform: translateX(0);
}

/* Standard desktop and laptop */
@media (max-width: 74rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
    gap: 3rem;
  }

  .page-nav {
    gap: 0.8rem;
  }

  .page-nav a {
    font-size: 0.7rem;
  }

  .nav-brand {
    width: 11.7rem;
  }

  .ccc-section__content {
    padding-inline: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* Tablet and compact navigation */
@media (max-width: 60rem) {
  :root {
    --header-height: 4.35rem;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.65rem;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .nav-register {
    grid-column: 3;
  }

  .page-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 7rem);
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 0.65rem clamp(1.15rem, 4vw, 3rem) 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .page-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .page-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .page-nav a::after {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }

  .hero__copy {
    max-width: 50rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.4rem, 8.6vw, 5.7rem);
  }

  .hero__visual {
    width: min(100%, 40rem);
    margin-inline: auto;
  }

  .hero__logo-card {
    margin-inline: auto;
  }

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

  .value-item:nth-child(3) {
    padding: 2rem 1.45rem;
    border: 1px solid var(--line);
  }

  .value-item:nth-child(4) {
    padding: 2rem 1.45rem;
    border: 1px solid var(--line);
  }

  .problem__grid,
  .audience__grid,
  .agenda__grid,
  .faq__grid,
  .speakers__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .section-intro--sticky,
  .agenda__intro {
    position: static;
  }

  .ccc-section {
    grid-template-columns: 1fr;
  }

  .ccc-section__photo {
    min-height: 30rem;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-card__offer {
    min-height: 26rem;
  }

  .hotel-block {
    grid-template-columns: 1fr;
  }
}

/* Large phones and small tablets */
@media (max-width: 42rem) {
  .utility-bar p span:last-child {
    display: none;
  }

  .nav-brand {
    width: 10.4rem;
  }

  .nav-register {
    min-height: 2.65rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero__grid {
    gap: 2.7rem;
    padding-block: 2.6rem 4.5rem;
  }

  .hero__visual {
    order: -1;
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0;
  }

  .hero__visual::before,
  .hero__visual::after {
    display: none;
  }

  .hero__logo-card {
    position: relative;
    inset: auto;
    width: min(100%, 26rem);
    margin-inline: auto;
    padding: 1.1rem 1.4rem;
    animation: none;
    transform: none;
  }

  .hero__photo {
    display: block;
    width: 100%;
    margin: 0;
    border-width: 0.35rem;
    transform: none;
  }

  .hero__photo img {
    aspect-ratio: 16 / 8.5;
  }

  .hero__room-photo {
    display: block;
    width: 78%;
    margin-top: -0.45rem;
    margin-right: 0.35rem;
    align-self: flex-end;
    aspect-ratio: 16 / 10;
    border-width: 0.35rem;
  }

  .hero__event {
    margin-bottom: 0.9rem;
    font-size: 0.66rem;
  }

  .hero__theme {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.5vw, 4rem);
    line-height: 0.98;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div,
  .hero-facts > div + div {
    padding: 0.72rem 0;
    border-left: 0;
  }

  .hero-facts > div + div {
    border-top: 1px solid var(--line-light);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .value-item,
  .value-item + .value-item,
  .value-item:nth-child(3) {
    padding: 1.5rem;
    border: 1px solid var(--line);
  }

  .value-item:nth-child(4) {
    padding: 1.5rem;
    border: 1px solid var(--line);
  }

  .problem__statement {
    padding: 1.65rem;
  }

  .strategy-break,
  .strategy-break__inner {
    min-height: 40rem;
  }

  .strategy-break > img {
    object-position: 62% center;
  }

  .strategy-break__shade {
    background:
      linear-gradient(to top, rgba(5, 39, 31, 0.96) 0%, rgba(5, 39, 31, 0.7) 48%, rgba(5, 39, 31, 0.16) 78%),
      linear-gradient(90deg, rgba(5, 39, 31, 0.45), transparent);
  }

  .strategy-break__inner {
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .strategy-break::after {
    top: 72%;
    left: 30%;
    width: 17rem;
    height: 17rem;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list li,
  .audience-list li:nth-child(even) {
    padding: 1rem;
    border-left: 0;
  }

  .outcome {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .outcome__verb {
    font-size: 2.15rem;
  }

  .outcome h3 {
    font-size: 1.6rem;
  }

  .ccc-section__photo {
    min-height: 23rem;
  }

  .ccc-section__content {
    padding: 3.5rem 1.2rem 4rem;
  }

  .ccc-section__content .button {
    width: 100%;
  }

  .agenda-list::before {
    left: 0.35rem;
  }

  .agenda-list::after {
    left: 0.35rem;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    padding-left: 1.55rem;
  }

  .agenda-item::before {
    top: 2.1rem;
    left: 0;
  }

  .agenda-item__time {
    padding: 1.4rem 0 0 1rem;
  }

  .agenda-item__time time {
    font-size: 1.18rem;
  }

  .agenda-item__body {
    padding: 0.65rem 0 1.55rem;
  }

  .agenda-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .agenda-cta .button {
    width: 100%;
  }

  .panel-feature,
  .panel-feature__inner {
    min-height: 42rem;
  }

  .panel-feature__image::after {
    background: rgba(5, 39, 31, 0.9);
  }

  .speaker-announcement,
  .pricing-card__copy,
  .pricing-card__offer {
    padding: 2rem 1.4rem;
  }

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

  .visit-item,
  .visit-item:nth-child(even) {
    padding: 1.5rem;
    border: 1px solid var(--line);
  }

  a.visit-item:nth-child(even):hover {
    padding-left: 1.5rem;
  }

  .hotel-block {
    padding: 0;
  }

  .hotel-block__image {
    min-height: 16rem;
  }

  .hotel-block__content {
    padding: 1.8rem 1.4rem 2rem;
  }

  .hotel-block .button {
    width: 100%;
  }

  .faq-item summary {
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
  }

  .faq-item__answer {
    padding-right: 0.5rem;
    padding-left: 2.6rem;
  }

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

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

/* Small phones */
@media (max-width: 22rem) {
  .shell {
    padding-inline: 1rem;
  }

  .utility-bar p span {
    display: none;
  }

  .utility-bar__inner {
    gap: 0.6rem;
  }

  .nav-brand {
    width: 7.7rem;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .nav-register {
    min-height: 2.5rem;
    padding-inline: 0.7rem;
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .button--large {
    padding-inline: 1rem;
    font-size: 0.94rem;
  }

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

  .outcome__verb {
    font-size: 2rem;
  }

  .agenda-item h3 {
    font-size: 1.18rem;
  }

  .panel-questions span {
    width: 100%;
  }
}

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

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

  .kinetic-band__track {
    animation: none;
    transform: none;
  }

  .kinetic-band__group--duplicate {
    display: none;
  }

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

  .ccc-section:hover .ccc-section__photo img {
    transform: none;
  }
}
