:root {
  --ink: #191811;
  --ink-soft: #3a382f;
  --cream: #f3efe3;
  --cream-2: #eae4d2;
  --sage: #dfe2d8;
  --gold: #b8924a;
  --gold-deep: #8f7038;
  --line: rgba(25, 24, 17, 0.14);
  --line-dark: rgba(243, 239, 227, 0.16);
  --site-max: clamp(1180px, 72vw, 1680px);
  --site-gutter: clamp(40px, 2.5vw, 64px);
  --section-space: clamp(96px, 6vw, 120px);
  --header-height: clamp(90px, 5.5vw, 110px);
  --hsf-field-checkbox__background-color: #f3efe3;
  --hsf-field-checkbox__border-color: rgba(25, 24, 17, 0.45);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 10px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.wrap {
  max-width: var(--site-max);
  margin: 0 auto;
  padding-right: var(--site-gutter);
  padding-left: var(--site-gutter);
}
section {
  padding: var(--section-space) 0;
}

/* Immersive homepage sections. Content-heavy sections can still grow. */
#about,
.how,
.why,
.upcoming,
.vision {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}
#about > .wrap,
.how > .wrap,
.why > .why-shell,
.upcoming > .wrap,
.vision > .wrap {
  width: 100%;
}
#attends,
.events {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  height: auto;
  padding-top: clamp(110px, 5.5vw, 130px);
  padding-bottom: clamp(110px, 5.5vw, 130px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(14px, 0.9vw, 17px) clamp(24px, 1.5vw, 30px);
  border: 1px solid var(--ink);
  font-size: clamp(13px, 0.75vw, 15px);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: 0.18s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.solid {
  background: var(--ink);
  color: var(--cream);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn.on-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.btn.on-dark.solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn.on-dark.ghost:hover {
  background: var(--gold);
  color: var(--ink);
}
header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(25, 24, 17, 0.98);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  max-width: var(--site-max);
  height: 100%;
  margin: 0 auto;
  padding-right: var(--site-gutter);
  padding-left: var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img {
  width: clamp(190px, 10vw, 230px);
  height: auto;
}
.nav-wrap nav {
  display: flex;
  gap: clamp(34px, 2vw, 44px);
}
.nav-wrap nav a {
  color: rgba(243, 239, 227, 0.72);
  font-size: clamp(13px, 0.75vw, 15px);
  font-weight: 500;
}
.nav-wrap nav a:hover {
  color: var(--cream);
}
.nav-btn {
  padding: clamp(9px, 0.6vw, 11px) clamp(18px, 1.1vw, 22px);
}
.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(243, 239, 227, 0.34);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.hero {
  height: calc(100vh - var(--header-height));
  min-height: 650px;
  max-height: none;
  padding: 0;
  position: relative;
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 15, 11, 0.9) 0%,
    rgba(16, 15, 11, 0.76) 30%,
    rgba(16, 15, 11, 0.42) 54%,
    rgba(16, 15, 11, 0.1) 78%,
    rgba(16, 15, 11, 0.04) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  margin: 0 0 clamp(18px, 1.4vw, 26px);
  color: rgba(247, 234, 209, 0.82);
  font-size: clamp(11px, 0.7vw, 14px);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: 0 0 clamp(22px, 1.5vw, 30px);
  color: #f7ead1;
  font-size: clamp(46px, 3.5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.hero h1 > span {
  display: block;
  white-space: nowrap;
}
.hero h1 .hero-highlight {
  color: #d8c6a5;
  font-weight: inherit;
}
.hero-content .hero-intro {
  max-width: 64ch;
  margin: 0 0 clamp(30px, 2.2vw, 42px);
  color: rgba(243, 239, 227, 0.82);
  font-size: clamp(15px, 0.9vw, 18px);
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn {
  min-width: clamp(210px, 13vw, 250px);
  justify-content: center;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-btn:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}
.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: rgba(243, 239, 227, 0.62);
  font-size: clamp(11px, 0.65vw, 13px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-date {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: var(--cream);
}
.hero-date b {
  font-size: clamp(28px, 1.7vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero-date small {
  font-size: clamp(10px, 0.6vw, 12px);
  letter-spacing: 0.05em;
  text-transform: none;
}
.about-grid {
  min-height: clamp(720px, calc(100vh - var(--header-height)), 880px);
  min-height: clamp(720px, calc(100svh - var(--header-height)), 880px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(64px, 5vw, 96px);
  align-items: stretch;
}
#about {
  padding-top: 0;
  padding-bottom: 0;
  min-height: clamp(720px, calc(100vh - var(--header-height)), 880px);
  min-height: clamp(720px, calc(100svh - var(--header-height)), 880px);
}
.about-grid h2,
.how h2,
.why-head h2,
.attends-head h2,
.events-head h2,
.vision h2,
.join h2 {
  font-size: clamp(36px, 3.75vw, 60px);
  line-height: 1.12;
}
.about-photo {
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.about-photo img {
  object-fit: cover;
}
.about-copy p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft);
}
.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  gap: 0;
}
.about-copy p {
  margin-bottom: 22px;
}
.about-cta {
  width: max-content;
  margin-top: 22px;
}
.how {
  background: var(--ink);
  color: var(--cream);
  padding-top: 0;
  padding-bottom: 0;
  min-height: clamp(720px, calc(100vh - var(--header-height)), 880px);
  min-height: clamp(720px, calc(100svh - var(--header-height)), 880px);
}
.how-grid {
  min-height: clamp(720px, calc(100vh - var(--header-height)), 880px);
  min-height: clamp(720px, calc(100svh - var(--header-height)), 880px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 5vw, 96px);
  align-items: stretch;
}
.how-photo {
  height: auto;
  position: relative;
  overflow: hidden;
}
.how-photo img {
  object-fit: cover;
}
.how-grid > div:last-child {
  align-self: center;
}
.how .how-title {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(36px, 3.75vw, 60px);
  font-weight: 500;
}
.how .how-subtitle {
  color: var(--cream);
  margin: 0 0 28px;
  font-size: clamp(23px, 2.2vw, 36px);
  line-height: 1.2;
  font-weight: 400;
}
.how-lead {
  max-width: 64ch;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
  color: rgba(243, 239, 227, 0.68);
  margin-bottom: 18px;
}
.why {
  background: var(--cream-2);
  padding: 0;
  align-items: stretch;
}
.why-shell {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 38vw);
  gap: 0;
  align-items: stretch;
}
.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--section-space);
  padding-right: clamp(64px, 4vw, 96px);
  padding-bottom: var(--section-space);
  padding-left: max(var(--site-gutter), calc((100vw - var(--site-max)) / 2 + var(--site-gutter)));
}
.why-head {
  margin-bottom: clamp(42px, 2.7vw, 52px);
}
.why-head h2 {
  margin-bottom: 18px;
}
.why-head h3,
.attends-head h3,
.events-head h3,
.vision h3,
.upcoming .event-body h3 {
  font-size: clamp(23px, 2.2vw, 42px);
  line-height: 1.25;
  font-weight: 400;
}
.why-head h3 {
  margin-bottom: 0;
}
.why-photo {
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.why-photo img {
  object-fit: cover;
}
.why-list {
  margin-top: auto;
}
.why-list article {
  display: grid;
  grid-template-columns: clamp(18px, 1.1vw, 22px) 1fr;
  gap: clamp(14px, 0.9vw, 18px);
  padding: clamp(18px, 1.2vw, 24px) 0;
  border-bottom: 1px solid var(--line);
}
.why-list article:first-child {
  padding-top: 0;
}
.why-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.why-chevron {
  width: clamp(13px, 0.75vw, 15px);
  height: clamp(17px, 1vw, 20px);
  margin-top: 3px;
  background: var(--gold-deep);
  clip-path: polygon(0 0, 42% 0, 100% 50%, 42% 100%, 0 100%, 58% 50%);
}
.why-list h4 {
  margin: 0 0 4px;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 600;
}
.why-list p {
  margin: 0;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.attends-head {
  display: block;
  margin-bottom: clamp(44px, 3vw, 56px);
}
.attends-head h2,
.attends-head h3 {
  margin: 0;
}
.attends-head h2 {
  margin-bottom: 18px;
}
.attends-head h3 {
  margin-top: 0;
}
.attends-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
}
.attends-col {
  background: var(--cream);
  padding: clamp(34px, 2.4vw, 46px) clamp(36px, 2.6vw, 50px);
  display: grid;
  grid-template-columns: clamp(230px, 16vw, 310px) 1fr;
  gap: clamp(40px, 3vw, 56px);
}
.attends-col.suppliers {
  background: var(--sage);
}
.audience-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 1.4vw, 27px);
  letter-spacing: 0.04em;
}
.audience-copy p {
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.icon-grid {
  display: grid;
  gap: clamp(24px, 1.6vw, 30px) clamp(14px, 0.9vw, 18px);
}
.buyer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.supplier-grid {
  grid-template-columns: repeat(6, 1fr);
}
.icon-item {
  text-align: center;
}
.icon-item span {
  width: clamp(72px, 4.5vw, 92px);
  height: clamp(72px, 4.5vw, 92px);
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}
.icon-item img {
  width: clamp(68px, 4.25vw, 86px);
  height: clamp(68px, 4.25vw, 86px);
  object-fit: contain;
}
.icon-item p {
  margin: 0;
  font-size: clamp(11.5px, 0.7vw, 14px);
  line-height: 1.35;
  font-weight: 500;
}
.events {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(110px, 5.5vw, 130px) 0;
}
.events-head {
  display: block;
}
.events-titles h2,
.events-titles h3 {
  margin: 0;
  color: var(--cream);
}
.events-titles h3 {
  margin-top: 0;
  max-width: clamp(390px, 26vw, 540px);
}
.events-titles h2 {
  margin-bottom: 18px;
}
.events-titles p {
  max-width: clamp(760px, 48vw, 1020px);
  margin: 20px 0 0;
}
.events-head p {
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.7;
  color: rgba(243, 239, 227, 0.65);
}
.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  background: var(--gold);
  color: var(--ink);
}
.event-photo {
  min-height: clamp(420px, 29vw, 560px);
  position: relative;
}
.event-photo img {
  object-fit: cover;
}
.event-body {
  padding: clamp(42px, 3vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-status {
  width: max-content;
  margin-bottom: 18px;
  padding: 6px 11px;
  background: var(--ink);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-body .loc {
  margin-bottom: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.event-body h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.15vw, 42px);
}
.event-body .dates {
  font-size: clamp(20px, 1.2vw, 24px);
  font-weight: 500;
}
.event-body > p:not(.loc, .dates) {
  margin-bottom: 12px;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.65;
  color: rgba(25, 24, 17, 0.75);
}
.event-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.editions {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1px;
  margin-top: 40px;
  background: var(--line-dark);
}
.edition {
  min-height: clamp(340px, 22vw, 430px);
  padding: clamp(30px, 2.2vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #24231d;
}
.edition-logo {
  width: clamp(190px, 12vw, 250px);
  height: clamp(190px, 12vw, 250px);
  object-fit: contain;
  align-self: center;
  margin: auto 0;
}
.edition.apac {
  background: var(--gold);
  color: var(--ink);
}
.edition span {
  margin-bottom: auto;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.edition strong {
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 500;
}
.edition p {
  margin: 2px 0 0;
  font-size: clamp(17px, 1vw, 20px);
}
.edition-details {
  margin-top: auto;
}
.upcoming {
  background: var(--sage);
}
.upcoming .event-card {
  margin-top: 0;
  background: var(--sage);
}
.upcoming .event-photo {
  background: #000;
}
.upcoming-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}
.upcoming-logo img {
  position: static !important;
  width: clamp(290px, 18vw, 360px) !important;
  height: clamp(290px, 18vw, 360px) !important;
  object-fit: contain;
}
.upcoming .event-body h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 3.75vw, 76px);
  line-height: 1.12;
}
.upcoming .event-body h3 {
  margin-top: 0;
  margin-bottom: 28px;
}
.upcoming .event-body p strong {
  font-weight: 600;
  color: var(--ink);
}
.vision {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.vision-bg {
  object-fit: cover;
}
.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(25, 24, 17, 0.9),
    rgba(25, 24, 17, 0.78)
  );
}
.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(64px, 5vw, 96px);
}
.vision h3 {
  margin-top: 0;
  margin-bottom: 28px;
}
.vision h2 {
  margin-bottom: 18px;
}
.vision p {
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.7;
  color: rgba(243, 239, 227, 0.78);
}
.vision strong {
  display: block;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  max-width: 30ch;
  font-size: clamp(22px, 1.8vw, 36px);
  line-height: 1.45;
  font-weight: 400;
}
.vision-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.join {
  background: var(--cream-2);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(64px, 5vw, 96px);
  align-items: center;
}
.join h2 {
  margin-bottom: 12px;
}
.join p {
  color: var(--ink-soft);
}
.join-ctas {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
footer {
  padding: clamp(34px, 2.3vw, 46px) 0 clamp(22px, 1.5vw, 30px);
  background: var(--ink);
  color: rgba(243, 239, 227, 0.6);
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  gap: 24px;
}
.foot-top img {
  width: clamp(160px, 9vw, 200px);
  height: auto;
  margin-bottom: 0;
}
.foot-top p {
  margin: 0;
  font-size: clamp(13px, 0.75vw, 15px);
}
.foot-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.foot-links a {
  font-size: clamp(13px, 0.75vw, 15px);
  color: rgba(243, 239, 227, 0.74);
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-links a {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(243, 239, 227, 0.34);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  font-size: clamp(11px, 0.65vw, 13px);
}
.foot-bottom a:hover,
.foot-links a:hover {
  color: var(--gold);
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 900px) {
  section {
    padding: 72px 0;
  }
  .wrap,
  .nav-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-wrap {
    position: relative;
    gap: 12px;
  }
  .nav-wrap nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    padding: 12px 24px 18px;
    border-top: 1px solid rgba(243, 239, 227, 0.12);
    background: rgba(25, 24, 17, 0.99);
    display: grid;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .nav-wrap nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(243, 239, 227, 0.1);
    font-size: 14px;
  }
  .nav-wrap nav a:last-child {
    border-bottom: 0;
  }
  .nav-wrap.nav-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-btn {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }
  .hero {
    height: 700px;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(16, 15, 11, 0.88) 0%,
      rgba(16, 15, 11, 0.68) 58%,
      rgba(16, 15, 11, 0.28) 100%
    );
  }
  .about-grid,
  .how-grid,
  .why-shell,
  .attends-head,
  .events-head,
  .vision-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-content {
    padding: 72px 24px;
  }
  .about-photo {
    height: 320px;
  }
  #about {
    padding-top: 72px;
    padding-bottom: 72px;
    min-height: auto;
  }
  .about-grid {
    min-height: 0;
  }
  .why-photo {
    height: 420px;
  }
  #attends,
  .events {
    padding: 80px 0;
  }
  .how-photo {
    height: 310px;
  }
  .how {
    padding-top: 72px;
    padding-bottom: 72px;
    min-height: auto;
  }
  .how-grid {
    min-height: 0;
  }
  .attends-col {
    grid-template-columns: 1fr;
  }
  .buyer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .supplier-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-photo {
    min-height: 280px;
  }
  .editions {
    grid-template-columns: 1fr;
  }
  .edition {
    min-height: 150px;
  }
  .join-ctas {
    justify-content: flex-start;
  }
  .foot-top,
  .foot-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .wrap,
  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-btn {
    font-size: 10px;
    padding: 8px 10px;
  }
  .logo img {
    width: 120px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .nav-wrap nav {
    padding-right: 16px;
    padding-left: 16px;
  }
  .hero {
    height: 680px;
  }
  .hero h1 {
    font-size: clamp(25px, 6.8vw, 48px);
    line-height: 1.1;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .hero-content .hero-intro {
    max-width: 38ch;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(16, 15, 11, 0.9) 0%,
      rgba(16, 15, 11, 0.76) 68%,
      rgba(16, 15, 11, 0.46) 100%
    );
  }
  #attends,
  .events {
    padding: 72px 0;
  }
  .hero-ctas .btn {
    width: auto;
    min-width: 160px;
    justify-content: center;
  }
  .mission {
    padding: 58px 0;
  }
  .buyer-grid,
  .supplier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attends-col {
    padding: 28px 18px;
  }
  .icon-grid {
    gap: 22px 10px;
  }
  .event-body {
    padding: 30px 22px;
  }
  .event-ctas .btn,
  .join-ctas .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Shared inner-page and form styles */
.page-main{min-height:70vh}.page-hero{padding:88px 0 72px;background:var(--ink);color:var(--cream)}.page-hero h1,.thank-card h1{margin:0 0 16px;font-size:clamp(38px,5vw,58px)}.page-hero p{max-width:720px;margin:0;color:rgba(243,239,227,.72);font-size:16px;line-height:1.75}.contact-section{padding:88px 0;background:var(--cream)}.contact-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:72px;align-items:start}.contact-copy h2{font-size:clamp(28px,3.2vw,38px)}.contact-copy p{color:var(--ink-soft)}.contact-form{display:flex;flex-direction:column;gap:20px}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}.contact-form label{display:flex;flex-direction:column;gap:8px;font-size:12px;font-weight:600}.contact-form input,.contact-form select,.contact-form textarea{width:100%;border:1px solid rgba(25,24,17,.25);background:#fff;padding:13px 14px;color:var(--ink);font:inherit;outline:none}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--gold-deep)}.contact-form textarea{resize:vertical}.contact-form button{width:max-content;cursor:pointer}.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.thank-section{padding:120px 0;background:var(--sage);text-align:center}.thank-card{max-width:700px}.thank-card p{margin:0 auto 30px;max-width:560px;color:var(--ink-soft);font-size:16px}.thank-mark{display:grid;place-items:center;width:54px;height:54px;margin:0 auto 24px;border:1px solid var(--gold-deep);color:var(--gold-deep);font-size:24px}.legal{padding:88px 0 100px}.legal .wrap{max-width:900px}.legal h1{font-size:clamp(38px,5vw,58px);margin-bottom:14px}.legal .intro{font-size:18px;color:var(--ink-soft);margin-bottom:46px}.legal .meta{padding:22px 0;margin-bottom:36px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.legal h2{margin:36px 0 8px;font-size:21px}.legal p,.legal li{color:var(--ink-soft);line-height:1.75}.legal ul{padding-left:22px}.legal li{margin-bottom:8px}.social-links img{width:13px;height:13px;filter:brightness(0) invert(1)}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;gap:36px}.legal{padding:70px 0}}
@media(max-width:560px){.form-row{grid-template-columns:1fr}.contact-section{padding:64px 0}.contact-form button{width:100%}}

/* Short desktop windows: let content determine section height instead of forcing a viewport fit. */
@media (min-width: 901px) and (max-height: 699px) {
  #about,
  .how,
  .why,
  .upcoming,
  .vision,
  #attends,
  .events {
    min-height: auto;
  }
  #about,
  .how {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }
  .about-grid,
  .how-grid,
  .why-shell {
    min-height: auto;
  }
}
