:root {
  --navy: #1B2A4A;
  --blue: #4A6A8A;
  --brass: #B8965A;
  --linen: #F0EDE8;
  --stone: #C8BFB0;
  --ink: #172138;
  --paper: #FCFBF9;
  --white: #FFFFFF;
  --blue-tint: #E9EFF4;
  --line: rgba(27, 42, 74, .15);
  --shell: min(1260px, calc(100vw - 72px));
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased
}

body,
button,
input,
textarea,
select {
  font-family: 'Outfit', sans-serif
}

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

a {
  color: inherit;
  text-decoration: none
}

p {
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 1.05rem;
  font-weight: 350
}

.lead {
  font-size: clamp(21px, 1.75vw, 25px);
  line-height: 1.52;
  font-weight: 400;
  letter-spacing: -.012em
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02
}

h1 {
  font-size: clamp(52px, 7.6vw, 100px)
}

.hero h1 {
  font-size: clamp(50px, 6.8vw, 100px);
  transform: translateX(-4px);
}

h2 {
  font-size: clamp(42px, 4.5vw, 70px)
}

h3 {
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -.025em
}

em {
  font-style: normal;
  color: var(--blue)
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 28px
}

.section-label span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass)
}

.section-label span::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor
}

.section-label.light {
  color: #f7fbff
}

.section-label.light span {
  color: #e1c894
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: gap .25s ease, color .25s ease
}

.text-link:hover {
  gap: 25px;
  color: var(--brass)
}

.light-link {
  color: white
}

.diamond {
  width: 13px;
  height: 13px;
  background: var(--brass);
  transform: rotate(45deg);
  display: block
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 249, .96);
  border-bottom: 1px solid rgba(27, 42, 74, .08);
  backdrop-filter: blur(14px)
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto
}

.brand-logo--header {
  width: 220px;
  height: auto
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #293653;
  font-size: 14px;
  font-weight: 450
}

.site-nav a {
  padding: 10px 0;
  position: relative
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: 5px;
  background: var(--brass);
  transition: right .25s ease
}

.site-nav a:hover::after {
  right: 0
}

.nav-cta {
  border: 1px solid var(--navy);
  padding: 10px 18px !important;
  border-radius: 999px;
  transition: .2s ease
}

.nav-cta:hover {
  background: var(--navy);
  color: white
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--navy);
  margin: 6px 0
}

/* Hero */
.hero {
  position: relative;
  padding: 42px 0 68px;
  background: var(--paper);
  overflow: hidden
}

.hero-art {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 13vw;
  height: 34%;
  background: var(--blue);
  opacity: .16
}

.hero-art span:first-child {
  position: absolute;
  right: -16px;
  top: -16px;
  width: 32px;
  height: 32px;
  background: var(--brass);
  transform: rotate(45deg)
}

.hero-art span:last-child {
  position: absolute;
  right: -60px;
  top: 75px;
  width: 120px;
  height: 1px;
  background: rgba(27, 42, 74, .28)
}

.hero-grid {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 5vw;
  align-items: center
}

.hero-copy {
  padding: 48px 0 42px;
  position: relative;
  z-index: 2
}

.hero-wordmark {
  display: block;
  width: min(360px, 72%);
  height: auto;
  margin: 24px 0 30px
}



.hero-logo-square {
  display: block;
  width: min(275px, 68%);
  height: auto;
  margin: 0 0 24px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 36px
}

.kicker i {
  width: 6px;
  height: 6px;
  background: var(--brass);
  transform: rotate(45deg)
}

.hero h1 {
  margin-bottom: 32px;
  white-space: nowrap
}

.hero-copy>p {
  max-width: 390px;
  color: #526079;
  font-size: 20px;
  line-height: 1.55
}


.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-top: 24px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
  transition: color .25s ease, gap .25s ease
}

.hero-cta-rule {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--brass);
  transition: width .25s ease
}

.hero-cta b {
  font-size: 15px;
  font-weight: 400;
  line-height: 1
}

.hero-cta:hover {
  color: var(--brass);
  gap: 17px
}

.hero-cta:hover .hero-cta-rule {
  width: 44px
}


.hero-visual {
  position: relative;
  min-height: 620px;
  margin-right: calc((100vw - var(--shell))/2 * -1);
  overflow: hidden
}

.hero-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 55% center
}

.hero-visual::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17%;
  height: 100%;
  background: linear-gradient(90deg, rgba(252, 251, 249, .35), transparent);
  z-index: 1
}

.hero-editions {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  padding: 12px 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em
}

.hero-editions b {
  color: var(--brass);
  margin: 0 7px
}

/* What */
.what {
  padding: 130px 0 150px;
  background: white;
  overflow: hidden
}

.what-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: auto auto;
  position: relative;
  min-height: 700px
}

.what-image {
  grid-column: 1;
  grid-row: 1/3;
  width: 94%;
  align-self: stretch;
  position: relative
}

.what-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover
}

.what-title {
  grid-column: 2;
  grid-row: 1;
  padding: 40px 0 50px 7vw;
  align-self: end
}

.what-title h2 {
  max-width: 600px;
  font-size: clamp(41px, 4.1vw, 63px)
}

.what-panel {
  grid-column: 2;
  grid-row: 2;
  background: var(--blue);
  color: white;
  padding: 54px 6vw 60px;
  margin-left: -10vw;
  position: relative;
  z-index: 2;
  align-self: start
}

.what-panel p {
  font-size: 17px
}

.what-panel .lead {
  font-size: clamp(22px, 2vw, 28px);
  color: white;
  max-width: 540px
}

.what-detail {
  position: absolute;
  left: 5%;
  bottom: -68px;
  background: var(--paper);
  padding: 25px 30px 26px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  z-index: 3;
  box-shadow: 0 14px 45px rgba(27, 42, 74, .08)
}

.what-detail p {
  font-size: 14px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin: 0
}

/* Format */
.format {
  padding: 132px 0 115px;
  background: var(--blue);
  color: white;
  overflow: hidden
}

.format-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  grid-template-areas: 'intro photo' 'ribbon ribbon';
  gap: 58px 7vw;
  align-items: end
}

.format-intro {
  grid-area: intro;
  padding-bottom: 36px
}

.format-intro h2 {
  color: white;
  font-size: clamp(40px, 4.3vw, 64px);
  margin-bottom: 30px
}

.format-intro>p {
  color: #eef4f8;
  font-size: 18px;
  max-width: 470px
}

.format-photo {
  grid-area: photo;
  min-height: 410px;
  position: relative
}

.format-photo img {
  height: 100%;
  min-height: 410px;
  object-fit: cover
}

.format-photo::after {
  content: '';
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 52px;
  height: 52px;
  background: var(--brass);
  transform: rotate(45deg)
}

.feature-ribbon {
  grid-area: ribbon;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--ink);
  padding: 38px 40px 34px;
  margin-top: 12px
}

.feature-item {
  padding: 0 30px
}

.feature-item:first-child {
  padding-left: 0
}

.feature-item:last-child {
  padding-right: 0
}

.feature-item+.feature-item {
  border-left: 1px solid var(--line)
}

.feature-item svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 22px
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 14px
}

.feature-item p {
  font-size: 16px;
  line-height: 1.62;
  color: #5a6678;
  margin: 0
}

/* Why */
.why {
  padding: 145px 0 135px;
  background: var(--paper)
}

.why-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  grid-template-rows: auto auto;
  gap: 0 7vw;
  position: relative
}

.why-image {
  grid-row: 1/3;
  grid-column: 1;
  align-self: stretch
}

.why-image img {
  height: 100%;
  min-height: 690px;
  object-fit: cover
}

.why-heading {
  grid-column: 2;
  padding: 40px 0 54px
}

.why-heading h2 {
  max-width: 610px
}

.why-list {
  grid-column: 2;
  background: var(--blue-tint);
  padding: 10px 52px 14px
}

.why-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(27, 42, 74, .13)
}

.why-list article:last-child {
  border-bottom: 0
}

.why-list article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-size: 12px
}

.why-list p {
  font-size: 18px;
  line-height: 1.6;
  margin: 3px 0 0;
  color: #34435f
}

/* Audience */
.audience {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: white
}

.audience-image {
  position: absolute;
  inset: 0 31% 0 0
}

.audience-image img {
  height: 100%;
  object-fit: cover
}

.audience-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, .12))
}

.audience-shell {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end
}

.audience-card {
  width: min(620px, 54%);
  background: white;
  padding: 64px 64px 62px;
  box-shadow: 0 18px 60px rgba(27, 42, 74, .11)
}

.audience-card h2 {
  font-size: clamp(40px, 4vw, 60px);
  margin-bottom: 28px
}

.audience-card p {
  font-size: 17px
}

.audience-card .lead {
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--navy)
}

.buyer {
  background: var(--paper)
}

.audience-image--right {
  inset: 0 0 0 31%
}

.audience-image--right::after {
  background: linear-gradient(270deg, transparent 70%, rgba(252, 251, 249, .12))
}

.audience-shell--right {
  justify-content: flex-start
}

.audience-card--blue {
  background: var(--blue);
  color: white;
  box-shadow: none
}

.audience-card--blue h2,
.audience-card--blue .lead {
  color: white
}

.audience-card--blue p {
  color: #f0f5f8
}

/* Talks */
.talks {
  position: relative;
  min-height: 900px;
  background: var(--navy);
  overflow: hidden
}

.talks-media {
  position: absolute;
  inset: 0 0 0 31%
}

.talks-media img {
  height: 100%;
  object-fit: cover
}

.talks-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 42, 74, .42), rgba(27, 42, 74, .03) 38%)
}

.talks-shell {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px
}

.talks-copy {
  width: min(620px, 52%);
  background: rgba(252, 251, 249, .97);
  padding: 64px 64px 58px
}

.talks-copy h2 {
  margin-bottom: 28px
}

.talks-copy p {
  font-size: 17px
}

.host-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line)
}

.host-note>span {
  display: block;
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 5px
}

.host-note h3 {
  font-size: 26px;
  margin-bottom: 16px
}

.host-note p {
  font-size: 16px;
  color: #5b6678;
  margin-bottom: 0
}

/* Editions */
.editions {
  padding: 130px 0 145px;
  background: white;
  position: relative
}

.editions::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17%;
  height: 285px;
  background: var(--blue)
}

.editions-head {
  position: relative;
  z-index: 2;
  margin-bottom: 62px;
  padding-left: 8vw
}

.edition-title-row {
  display: flex;
  align-items: flex-start;
  gap: 24px
}

.edition-title-row>strong {
  font-size: clamp(82px, 8vw, 126px);
  line-height: .78;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: -.06em
}

.edition-title-row h2 {
  font-size: clamp(39px, 3.8vw, 58px);
  line-height: .96
}

.edition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.2vw;
  padding: 0 22px
}

.edition-card {
  position: relative;
  padding-bottom: 60px
}

.edition-card img {
  aspect-ratio: 3/4;
  object-fit: cover
}

.edition-info {
  width: 84%;
  min-height: 176px;
  position: absolute;
  left: 9%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 30px 27px;
  color: white
}

.edition-info.blue {
  background: var(--blue)
}

.edition-info.brass {
  background: var(--brass)
}


.edition-info h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 14px
}

.edition-info p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 5px;
  color: white
}

/* About */
.host-profile {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: start
}

.host-photo {
  width: 170px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 24, 45, .12)
}

.host-bio {
  min-width: 0
}

.about {
  padding: 108px 0 118px;
  background: var(--paper)
}

.about-layout--founder-only {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  grid-template-areas:
    'heading house'
    'portrait story';
  gap: 46px 7vw;
  align-items: start
}

.about-heading {
  grid-area: heading;
  padding-top: 34px
}

.about-heading h2 {
  max-width: 520px;
  font-size: clamp(42px, 4.3vw, 64px)
}

.about-house-card {
  grid-area: house;
  min-height: 300px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 48px;
  position: relative;
  overflow: hidden
}

.about-house-card::after {
  content: '';
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(27, 42, 74, .10);
  transform: rotate(45deg)
}

.about-house-card-inner {
  width: min(100%, 400px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.about-house-accent {
  width: 34px;
  height: 2px;
  background: var(--brass);
  margin-bottom: 20px
}

.about-house-card p {
  max-width: 340px;
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.45;
  color: var(--navy)
}

.about-house-card p strong {
  font-weight: 600
}

.about-house-card img {
  display: block;
  width: 175px;
  max-width: 68%;
  height: auto
}

.founder-feature {
  grid-area: portrait;
  display: grid;
  grid-template-columns: minmax(180px, 250px) 1fr;
  gap: 30px;
  align-items: center
}

.founder-feature-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(15, 24, 45, .10)
}

.founder-feature-name h3 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.02;
  margin: 0
}

.team-kicker {
  margin: 0 0 10px !important;
  font-size: 13px !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600
}

.founder-story {
  grid-area: story;
  max-width: 640px;
  padding: 12px 0 0 12px
}

.founder-story p {
  font-size: 18px;
  line-height: 1.68;
  color: #33415d
}

.founder-story p + p {
  margin-top: 1.15rem
}

.founder-story-signoff {
  margin-top: 30px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-size: 23px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important
}

/* Join */
.join {
  padding: 96px 0;
  background: var(--blue);
  color: white
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 10vw;
  align-items: end
}

.join h2 {
  color: white
}

.join p {
  font-size: 18px;
  max-width: 520px;
  color: #eff5f8
}

/* Footer */
.site-footer {
  background: white;
  padding: 66px 0 28px;
  border-top: 1px solid rgba(27, 42, 74, .08)
}

.footer-layout {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 72px;
  align-items: end
}

.footer-brand {
  display: block
}

.brand-logo--footer {
  width: 195px;
  height: auto
}

.footer-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: #56637a;
  margin: .15rem 0
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: flex-end;
  font-size: 14px;
  color: #33415d
}

.footer-nav a:hover {
  color: var(--brass)
}

.footer-base {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8590a0;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase
}


.footer-legal {
  margin-top: 14px;
  padding-top: 0;
  color: #8F9BAC;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .025em;
}


/* Contact */
.contact-hero {
  padding: 54px 0 96px;
  background: var(--paper)
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 7vw;
  align-items: center
}

.contact-hero h1 {
  font-size: clamp(62px, 7.2vw, 104px)
}

.contact-hero-image {
  height: 560px;
  margin-right: calc((100vw - var(--shell))/2 * -1)
}

.contact-hero-image img {
  height: 100%;
  object-fit: cover
}

.contact-main {
  padding: 112px 0 130px;
  background: white
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 9vw
}

.contact-intro h2 {
  font-size: clamp(40px, 4.2vw, 62px);
  margin-bottom: 30px
}

.contact-intro>p {
  font-size: 18px;
  color: #56637a;
  max-width: 480px
}

.contact-details {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-details a {
  font-size: 19px;
  color: var(--navy)
}

.form-panel {
  background: var(--blue-tint);
  padding: 54px 58px 58px
}

.form-note {
  font-size: 16px;
  color: #5b687c;
  margin-bottom: 38px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field.full {
  grid-column: 1/-1
}

label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 600;
  color: var(--blue)
}

input,
textarea,
select {
  border: 0;
  border-bottom: 1px solid rgba(27, 42, 74, .28);
  padding: 12px 0;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  outline: none;
  border-radius: 0
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brass)
}

textarea {
  min-height: 120px;
  resize: vertical
}

.submit {
  margin-top: 34px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--navy);
  padding: 12px 0;
  cursor: pointer;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em
}

.submit span {
  margin-left: 10px
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s ease, transform .72s ease
}

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

@media(max-width:1100px) {
  :root {
    --shell: min(100% - 48px, 1260px)
  }

  .site-nav {
    gap: 18px;
    font-size: 13px
  }

  .brand-logo--header {
    width: 205px
  }

  .hero-grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 4vw
  }

  .hero-visual {
    min-height: 580px
  }

  .hero h1 {
    white-space: normal
  }

  .what-panel {
    margin-left: -5vw;
    padding: 48px 5vw
  }

  .feature-item {
    padding: 0 20px
  }

  .audience-card {
    width: 58%;
    padding: 54px
  }

  .talks-copy {
    width: 56%;
    padding: 54px
  }

  .footer-layout {
    gap: 44px
  }
}

@media(max-width:860px) {

  .hero-logo-square {
    width: min(270px, 56%);
    margin-bottom: 24px;
  }


  .about-house-card {
    min-height: 300px;
    padding: 42px 34px
  }

  .about-house-card p {
    font-size: 19px
  }

  .about-house-card img {
    width: 175px
  }

  :root {
    --shell: calc(100vw - 38px)
  }

  body,
  p {
    font-size: 16.5px
  }

  .lead {
    font-size: 21px
  }

  .header-inner {
    height: 82px
  }

  .brand-logo--header {
    width: 185px
  }

  .menu-toggle {
    display: block
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 19px 28px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px
  }

  .site-nav.open {
    display: flex
  }

  .site-nav a {
    width: 100%
  }

  .nav-cta {
    width: auto !important;
    margin-top: 6px
  }

  .hero {
    padding: 0 0 66px
  }

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

  .hero-copy {
    padding: 54px 0 20px
  }

  .hero-wordmark {
    width: min(330px, 62%);
    margin: 22px 0 26px
  }

  .hero-visual {
    min-height: 68vw;
    margin-right: 0
  }

  .hero-art {
    display: none
  }

  .what,
  .format,
  .why,
  .editions,
  .about {
    padding: 92px 0
  }

  .about {
    padding: 78px 0 84px
  }

  .what-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .what-image,
  .what-title,
  .what-panel {
    grid-column: 1;
    grid-row: auto
  }

  .what-image {
    width: 90%
  }

  .what-image img {
    min-height: 56vw
  }

  .what-title {
    padding: 42px 0 34px 8%
  }

  .what-panel {
    margin: -10px 0 0 10%;
    padding: 46px 44px;
    width: 90%
  }

  .what-detail {
    position: static;
    width: max-content;
    margin: 28px 0 0 10%
  }

  .format-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'intro' 'photo' 'ribbon';
    gap: 38px
  }

  .format-intro {
    padding: 0
  }

  .feature-ribbon {
    grid-template-columns: 1fr 1fr;
    gap: 0
  }

  .feature-item {
    padding: 26px 24px;
    border-bottom: 1px solid var(--line)
  }

  .feature-item:first-child {
    padding-left: 24px
  }

  .feature-item:last-child {
    padding-right: 24px
  }

  .feature-item:nth-child(even) {
    border-left: 1px solid var(--line)
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .why-image,
  .why-heading,
  .why-list {
    grid-column: 1;
    grid-row: auto
  }

  .why-image img {
    min-height: 62vw
  }

  .why-heading {
    padding: 46px 0 38px
  }

  .why-list {
    padding: 8px 34px
  }

  .audience {
    min-height: auto;
    display: block;
    padding: 0 0 74px
  }

  .audience-image,
  .audience-image--right {
    position: relative;
    inset: auto;
    height: 66vw
  }

  .audience-shell,
  .audience-shell--right {
    justify-content: flex-start;
    margin-top: -54px
  }

  .audience-card,
  .audience-card--blue {
    width: 92%;
    margin-left: auto;
    padding: 46px 44px
  }

  .buyer .audience-card--blue {
    margin-left: 0;
    margin-right: auto
  }

  .talks {
    min-height: auto;
    padding: 0 0 88px
  }

  .talks-media {
    position: relative;
    inset: auto;
    height: 68vw
  }

  .talks-shell {
    padding: 0;
    margin-top: -54px
  }

  .talks-copy {
    width: 92%;
    padding: 48px 44px
  }

  .editions::before {
    width: 24%;
    height: 220px
  }

  .editions-head {
    padding-left: 5vw
  }

  .edition-cards {
    gap: 22px;
    padding: 0
  }

  .edition-info {
    width: 90%;
    left: 5%
  }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'heading' 'house' 'founder' 'side';
    gap: 34px
  }

  .about-heading {
    padding-top: 0
  }

  .founder-profile {
    grid-template-columns: 140px 1fr;
    gap: 20px
  }

  .founder-photo {
    width: 140px;
    border-radius: 22px
  }

  .founder-intro h3 {
    font-size: 34px
  }

  .about-side {
    margin: 0;
    width: 92%;
    padding: 42px;
    justify-self: end
  }

  .team-member-card--secondary {
    grid-template-columns: 92px 1fr;
    gap: 18px
  }

  .join-layout {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .footer-nav {
    justify-content: flex-start
  }

  .footer-base {
    display: block
  }

  .footer-base span {
    display: block;
    margin: 5px 0
  }

  .contact-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact-hero-image {
    height: 60vw;
    margin-right: 0
  }

  .contact-main {
    padding: 82px 0 96px
  }
}

@media(max-width:580px) {

  .footer-legal {
    font-size: 9.5px;
    margin-top: 16px;
  }


  .hero-logo-square {
    width: min(245px, 70%);
    margin-bottom: 22px;
  }


  .about-house-card {
    min-height: 270px;
    padding: 36px 26px
  }

  .about-house-card p {
    font-size: 18px;
    margin-bottom: 22px
  }

  .about-house-card img {
    width: 160px
  }

  .about {
    padding: 68px 0 72px
  }

  :root {
    --shell: calc(100vw - 30px)
  }

  body,
  p {
    font-size: 16px
  }

  .lead {
    font-size: 20px
  }

  .hero-wordmark {
    width: min(285px, 74%);
    margin: 20px 0 24px
  }

  .hero h1 {
    font-size: clamp(53px, 16vw, 78px)
  }

  .hero-copy>p {
    font-size: 17px
  }

  .hero-visual {
    min-height: 82vw
  }

  .what-image {
    width: 100%
  }

  .what-title {
    padding-left: 0
  }

  .what-panel {
    width: 95%;
    margin: -8px 0 0 5%;
    padding: 38px 30px
  }

  .what-detail {
    margin-left: 5%
  }

  .format-photo img {
    min-height: 78vw
  }

  .feature-ribbon {
    grid-template-columns: 1fr;
    padding: 18px
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    padding: 25px 12px
  }

  .feature-item+.feature-item,
  .feature-item:nth-child(even) {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .why-list {
    padding: 5px 24px
  }

  .why-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px
  }

  .why-list p {
    font-size: 16.5px
  }

  .audience-image,
  .audience-image--right {
    height: 82vw
  }

  .audience-card,
  .audience-card--blue {
    width: 96%;
    padding: 38px 28px
  }

  .audience-card p {
    font-size: 16px
  }

  .talks-media {
    height: 82vw
  }

  .talks-copy {
    width: 96%;
    padding: 38px 28px
  }

  .talks-copy p {
    font-size: 16px
  }

  .edition-cards {
    grid-template-columns: 1fr;
    gap: 54px
  }

  .edition-card img {
    aspect-ratio: 4/3
  }

  .editions::before {
    display: none
  }

  .editions-head {
    padding-left: 0
  }

  .edition-title-row>strong {
    font-size: 82px
  }

  .edition-info {
    width: 88%;
    left: 6%
  }

  .about-side {
    width: 96%;
    padding: 34px 28px
  }

  .about-founder-copy p,
  .about-side p {
    font-size: 16px
  }

  .founder-profile,
  .team-member-card--secondary,
  .host-profile {
    grid-template-columns: 1fr
  }

  .founder-photo {
    width: 170px
  }

  .team-member-photo--secondary,
  .host-photo {
    width: 120px
  }

  .founder-intro h3 {
    font-size: 30px
  }

  .brand-logo--footer {
    width: 180px
  }

  .form-panel {
    padding: 38px 28px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .contact-hero-image {
    height: 78vw
  }
}

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

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


/* NAVY FOOTER OPTION — original V6 hero retained */
.site-footer {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.site-footer .footer-copy p {
  color: #D8E1EA;
}

.site-footer .footer-copy a,
.site-footer .footer-nav {
  color: #F5F8FB;
}

.site-footer .footer-nav a:hover {
  color: var(--brass);
}

.site-footer .footer-base {
  border-top-color: rgba(255, 255, 255, .14);
  color: #AEBBC9;
}

/* =========================================================
   LAYOUT AMENDS — 23 AUG 2026
   Keeps the user's supplied version intact apart from the
   three requested section changes below.
   ========================================================= */

/* The Format: replace the photo + lower ribbon with four clean cards */
.format-layout {
  grid-template-columns: .72fr 1.28fr;
  grid-template-areas: 'intro cards';
  align-items: stretch;
}

.format-intro {
  align-self: center;
  padding-bottom: 0;
}

.format-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
  min-height: 500px;
}

.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;
  padding: 86px 42px 40px;
}

.format-card:nth-child(odd) {
  border-right: 1px solid var(--line)
}

.format-card:nth-child(-n+2) {
  border-bottom: 1px solid var(--line)
}

.format-card::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 42px;
  width: 34px;
  height: 2px;
  background: var(--brass);
}

.format-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.format-card p {
  margin: 0;
  color: #5a6678;
  font-size: 16.5px;
  line-height: 1.65;
}

/* Why It Works: remove the numbered circles and reclaim the space */
.why-list article {
  display: block;
  padding: 34px 0;
}

.why-list p {
  margin: 0;
}

/* Editions: title now stands on its own without the oversized numeral */
.edition-title-row {
  display: block;
}

.edition-title-row h2 {
  max-width: 760px;
}

@media (max-width:900px) {
  .format-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'intro' 'cards';
    gap: 42px;
  }

  .format-cards {
    min-height: 0
  }
}

@media (max-width:600px) {
  .format-cards {
    grid-template-columns: 1fr
  }

  .format-card {
    min-height: 0;
    padding: 62px 28px 32px;
  }

  .format-card:nth-child(odd) {
    border-right: 0
  }

  .format-card:nth-child(-n+2) {
    border-bottom: 0
  }

  .format-card+.format-card {
    border-top: 1px solid var(--line)
  }

  .format-card::before {
    top: 28px;
    left: 28px;
    width: 28px
  }

  .format-card h3 {
    font-size: 22px
  }

  .format-card p {
    font-size: 16px
  }
}



@media (max-width: 900px) {
  .host-profile {
    grid-template-columns: 1fr
  }

  .host-photo {
    width: 100%;
    max-width: 260px
  }
}

@media (max-width: 720px) {
  .team-member-card {
    grid-template-columns: 90px 1fr;
    gap: 14px
  }

  .team-member-photo {
    width: 90px;
    border-radius: 14px
  }

  .team-member-meta h3 {
    font-size: 22px
  }
}

@media (max-width: 560px) {

  .team-member-card,
  .host-profile {
    grid-template-columns: 1fr
  }

  .team-member-photo,
  .host-photo {
    width: 100%;
    max-width: 240px
  }
}

/* =========================================================
   CONTACT PAGE — COMPACT HERO + FULL-WIDTH FORM
   ========================================================= */

.contact-hero {
  padding: 34px 0 56px;
}

.contact-hero-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 5vw;
  align-items: center;
}

.contact-hero h1 {
  font-size: clamp(54px, 6.2vw, 86px);
}

.contact-hero-image {
  height: 390px;
  margin-right: calc((100vw - var(--shell))/2 * -1);
}

.contact-main {
  padding: 88px 0 110px;
}

.contact-grid {
  display: block;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.contact-intro h2 {
  margin-bottom: 24px;
}

.contact-intro > p {
  max-width: 620px;
}

.contact-details {
  max-width: 520px;
  margin-top: 32px;
}

.form-panel {
  width: 100%;
  padding: 54px 60px 60px;
}

.form-panel .section-label {
  margin-bottom: 34px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}

.field {
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
}

@media (max-width: 860px) {
  .contact-hero {
    padding: 20px 0 42px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-hero-image {
    height: 46vw;
    min-height: 320px;
    margin-right: 0;
  }

  .contact-main {
    padding: 72px 0 90px;
  }

  .contact-intro {
    margin-bottom: 36px;
  }

  .form-panel {
    padding: 48px 42px 50px;
  }
}

@media (max-width: 580px) {
  .contact-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .contact-hero-image {
    height: 62vw;
    min-height: 260px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .field.full {
    grid-column: auto;
  }

  .form-panel {
    padding: 38px 28px 42px;
  }
}

/* =========================================================
   FINAL RESPONSIVE HARDENING
   ========================================================= */

/* Prevent grid/flex children and media from creating horizontal overflow. */
.hero-grid > *,
.contact-hero-grid > *,
.about-layout--founder-only > * {
  min-width: 0;
}

.contact-hero-image {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 1100px) and (min-width: 861px) {
  .contact-hero-image {
    margin-right: 0;
  }
}

@media (max-width: 860px) {
  .about-layout--founder-only {
    grid-template-columns: 1fr;
    grid-template-areas:
      'heading'
      'house'
      'portrait'
      'story';
    gap: 34px;
  }

  .about-heading {
    padding-top: 0;
  }

  .about-house-card {
    min-height: 270px;
    padding: 38px 34px;
  }

  .founder-feature {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
  }

  .founder-story {
    max-width: 720px;
    padding: 4px 0 0;
  }
}

@media (max-width: 580px) {
  .founder-feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .founder-feature-photo {
    width: min(230px, 70%);
    border-radius: 24px;
  }

  .founder-story {
    width: 100%;
  }

  .founder-story p {
    font-size: 16.5px;
  }

  .founder-story-signoff {
    font-size: 21px !important;
  }

  .text-link {
    width: auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }
}

/* =========================================================
   REGISTRATION PAGES
   ========================================================= */
.registration-hero {
  position: relative;
  padding: 74px 0 78px;
  background: var(--blue-tint);
  overflow: hidden;
}

.registration-hero::after {
  content: '';
  position: absolute;
  right: -82px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(27, 42, 74, .10);
  transform: rotate(45deg);
}

.registration-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: left;
}

.registration-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(52px, 6vw, 84px);
  text-align: left;
}

.registration-hero p {
  max-width: 650px;
  margin: 0;
  color: #526079;
  font-size: 20px;
  line-height: 1.58;
  text-align: left;
}

.registration-main {
  padding: 72px 0 104px;
  background: var(--paper);
}

.registration-form {
  width: 100%;
  background: #fff;
  padding: 30px 34px 36px;
  box-shadow: 0 18px 60px rgba(27, 42, 74, .07);
}

.registration-form > div {
  width: 100%;
}

.registration-form iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
}

@media (max-width: 860px) {
  .registration-hero {
    padding: 62px 0 66px;
  }

  .registration-main {
    padding: 62px 0 82px;
  }

  .registration-form {
    padding: 22px 18px 26px;
  }
}

@media (max-width: 580px) {
  .registration-hero {
    padding: 50px 0 54px;
  }

  .registration-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .registration-hero p {
    font-size: 17px;
  }

  .registration-main {
    padding: 48px 0 64px;
  }

  .registration-form {
    padding: 10px 6px 16px;
    box-shadow: none;
  }
}

/* =========================================================
   THANK YOU PAGES
   ========================================================= */
.thank-you-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 96px 0 110px;
  background: var(--blue-tint);
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  left: -95px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(27, 42, 74, .10);
  transform: rotate(45deg);
}

.thank-you-layout {
  position: relative;
  z-index: 1;
}

.thank-you-panel {
  max-width: 790px;
  background: var(--paper);
  padding: 62px 68px 60px;
  box-shadow: 0 20px 70px rgba(27, 42, 74, .08);
}

.thank-you-panel h1 {
  font-size: clamp(58px, 6.4vw, 92px);
  margin-bottom: 28px;
}

.thank-you-lead {
  max-width: 650px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -.012em;
}

.thank-you-copy {
  max-width: 650px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.thank-you-copy p {
  font-size: 18px;
  color: #526079;
}

.thank-you-copy a {
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(27, 42, 74, .28);
}

.thank-you-copy a:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.thank-you-signoff {
  margin-top: 26px !important;
  color: var(--navy) !important;
}

.thank-you-signoff strong {
  font-weight: 500;
}

.thank-you-cta {
  margin-top: 34px;
}

@media (max-width: 860px) {
  .thank-you-hero {
    min-height: 560px;
    padding: 76px 0 88px;
  }

  .thank-you-panel {
    max-width: 100%;
    padding: 52px 48px 50px;
  }
}

@media (max-width: 580px) {
  .thank-you-hero {
    min-height: auto;
    padding: 58px 0 68px;
  }

  .thank-you-panel {
    padding: 40px 28px 42px;
    box-shadow: none;
  }

  .thank-you-panel h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .thank-you-lead {
    font-size: 21px;
  }

  .thank-you-copy p {
    font-size: 16.5px;
  }
}

/* Contact page: join hero directly to the embedded form */
.contact-zoho-page .registration-main {
  padding-top: 0;
}

@media (max-width: 860px) {
  .contact-zoho-page .registration-main {
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .contact-zoho-page .registration-main {
    padding-top: 0;
  }
}

/* Form pages */
.registration-page .registration-main {
  background: #ffffff;
  padding-top: 0;
}

.registration-page .registration-form {
  background: #ffffff;
}