:root {
  --forest: #173f35;
  --deep: #0c2923;
  --lime: #d8e759;
  --cream: #f2ede3;
  --paper: #fbf9f4;
  --blush: #d5a693;
  --ink: #171b18;
  --muted: #626862;
  --line: rgba(23, 27, 24, 0.17);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}


body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}


body.menu-open {
  overflow: hidden;
}


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


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


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


/* Accessibility */


.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 12px;
  background: #fff;
}


.skip-link:focus {
  top: 16px;
}


/* Announcement */


.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  height: 35px;
  background: var(--deep);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.announcement a {
  color: var(--lime);
  font-weight: 600;
}


/* Navigation */


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 84px;
  background: rgba(251, 249, 244, 0.96);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}


.site-header.scrolled {
  border-color: var(--line);
  backdrop-filter: blur(14px);
}


.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  height: 100%;
  margin: auto;
  padding: 0 4vw;
}


.brand {
  font: 600 21px/0.8 var(--serif);
  letter-spacing: -0.045em;
  white-space: nowrap;
}


.brand em {
  margin-left: 4px;
  color: var(--forest);
}


.brand sup {
  margin-left: 2px;
  font: 500 7px var(--sans);
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}


.main-nav > li {
  position: relative;
  display: flex;
  align-items: center;
}


.main-nav a {
  font-size: 13px;
  font-weight: 500;
}


.main-nav a.active,
.main-nav > li > a:hover {
  text-decoration: underline 4px var(--lime);
  text-underline-offset: 10px;
}


.dropdown-toggle {
  margin-left: 4px;
  border: 0;
  background: none;
  cursor: pointer;
}


.dropdown {
  position: absolute;
  top: 35px;
  left: -20px;
  width: 235px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}


.dropdown li a {
  display: block;
  padding: 10px 8px;
}


.dropdown li a:hover {
  background: var(--cream);
}


.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}


.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--forest);
  font-size: 28px;
}


/* Buttons */


.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s;
}


.nav-cta,
.btn-dark {
  background: var(--forest);
  color: #fff;
}


.nav-cta:hover,
.btn-dark:hover {
  background: var(--lime);
  color: var(--deep);
}


.btn-lime {
  background: var(--lime);
  color: var(--deep);
}


.btn-lime:hover {
  background: #fff;
}


.btn-outline {
  border-color: var(--forest);
  color: var(--forest);
}


.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}


.btn-light {
  background: var(--paper);
  color: var(--deep);
}


.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}


.arrow-link {
  padding-bottom: 4px;
  border-bottom: 1px solid;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


.arrow-link.light {
  color: #fff;
}


/* Typography */


.eyebrow {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


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


h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}


em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}


/* Homepage Hero */


.home-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: calc(100vh - 119px);
  background: var(--cream);
}


.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 5vw 7vw 7vw;
}


.hero-copy h1 {
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.02;
}


.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0;
  color: #444b46;
  line-height: 1.75;
}


.hero-media {
  position: relative;
  min-height: 650px;
}


.hero-media > img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}


.media-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 30px;
  background: var(--lime);
}


.media-tag small {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.15em;
}


.media-tag strong {
  font: 500 20px/1.1 var(--serif);
}


/* Moving Homepage Collage */


.hero-collage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, var(--paper), var(--cream));
}


.collage-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}


.orbit-one {
  top: -80px;
  right: 9%;
  width: 260px;
  height: 260px;
  background: var(--lime);
  animation: orbitFloat 8s ease-in-out infinite;
}


.orbit-two {
  bottom: 7%;
  left: 7%;
  width: 190px;
  height: 190px;
  border: 2px solid var(--blush);
  animation: orbitFloat 10s ease-in-out infinite reverse;
}


.collage-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  box-shadow: 0 24px 50px rgba(12, 41, 35, 0.16);
  animation: photoFloat 7s ease-in-out infinite;
}


.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


.collage-photo-one {
  top: 8%;
  left: 7%;
  width: 31%;
  height: 55%;
  animation-delay: -1s;
}


.collage-photo-two {
  top: 18%;
  right: 8%;
  width: 34%;
  height: 61%;
  animation-delay: -3.3s;
}


.collage-photo-three {
  bottom: 3%;
  left: 34%;
  width: 28%;
  height: 48%;
  animation-delay: -5.1s;
}


.collage-message {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 4;
  max-width: 210px;
  padding: 20px 23px;
  background: var(--deep);
  color: #fff;
}


.collage-message small {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.14em;
}


.collage-message strong {
  font: 500 21px/1.05 var(--serif);
}


@keyframes photoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }


  50% {
    transform: translateY(-18px) rotate(0.7deg);
  }
}


@keyframes orbitFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }


  50% {
    transform: translate(-15px, 18px);
  }
}


/* Moving Choice Ticker */


.ticker {
  overflow: hidden;
  padding: 20px;
  background: var(--lime);
  white-space: nowrap;
}


.ticker div {
  font: 500 clamp(20px, 2.8vw, 38px) var(--serif);
  text-align: center;
}


.ticker i {
  font-size: 0.55em;
}


/* Main Statement */


.split-statement {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 10vw;
  padding: 10vw 8vw;
  background: var(--deep);
  color: #fff;
}


.split-statement h2 {
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1;
}


.split-statement h2 em {
  color: var(--lime);
}


.statement-aside p {
  margin-bottom: 30px;
  color: #cad2ce;
}


/* Three Outcomes */


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


.outcome-card {
  min-height: 390px;
  padding: 5vw 4vw;
  background: var(--cream);
  border-right: 1px solid var(--line);
}


.outcome-card.dark {
  background: var(--forest);
  color: #fff;
}


.outcome-card > span {
  font-size: 10px;
}


.outcome-card h3 {
  margin: 65px 0 24px;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.05;
}


.outcome-card p {
  color: var(--muted);
}


.outcome-card.dark p {
  color: #d4dcd8;
}


/* Homepage Feature */


.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}


.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw 7vw;
}


.feature-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}


.feature-copy h2 em {
  color: var(--forest);
}


.feature-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: var(--muted);
}


.feature-copy .btn {
  align-self: flex-start;
}


/* Photo Placeholders */


.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 30px;
  background: linear-gradient(135deg, #d7cbbc, #b9aa99);
  color: var(--deep);
  text-align: center;
}


.photo-placeholder i {
  margin-bottom: 15px;
  font-size: 40px;
}


.photo-placeholder strong {
  font-size: 11px;
  letter-spacing: 0.14em;
}


.photo-placeholder span {
  max-width: 300px;
  margin-top: 7px;
  font-size: 12px;
}


.photo-placeholder.wide {
  min-height: 520px;
}


.photo-placeholder.mini {
  min-height: 180px;
}


.photo-placeholder.tall {
  min-height: 530px;
}


/* Founder Sections */


.founder-preview,
.founders-page {
  padding: 9vw 6vw;
  background: var(--forest);
  color: #fff;
}


.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 6vw;
  margin-bottom: 5vw;
}


.section-heading .eyebrow {
  grid-column: 1/-1;
  margin: 0;
}


.section-heading h2 {
  font-size: clamp(43px, 5.5vw, 76px);
  line-height: 1;
}


.section-heading h2 em {
  color: var(--lime);
}


.section-heading > p:last-child {
  color: #cbd5d0;
}


/* Moving Founder Names */


.founder-marquee {
  overflow: hidden;
  margin: 0 -6vw 42px;
  padding: 15px 0;
  color: var(--lime);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.founder-marquee-track {
  display: flex;
  width: max-content;
  animation: founderMarquee 24s linear infinite;
}


.founder-marquee-track span {
  padding-right: 1rem;
  font: 500 clamp(20px, 2.5vw, 34px) var(--serif);
  white-space: nowrap;
}


@keyframes founderMarquee {
  to {
    transform: translateX(-50%);
  }
}


/* Founder Cards */


.portrait-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}


.portrait-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(23, 63, 53, 0.28);
  border-radius: 3px;
  box-shadow:
    0 18px 45px rgba(12, 41, 35, 0.15),
    0 3px 10px rgba(12, 41, 35, 0.08);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}


.portrait-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  z-index: 3;
  height: 4px;
  background: var(--lime);
}


.portrait-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(12, 41, 35, 0.2),
    0 6px 18px rgba(12, 41, 35, 0.1);
}


.portrait-card img {
  width: calc(100% - 24px);
  height: 680px;
  margin: 12px 12px 0;
  padding: 7px;
  background: #eee6d8;
  border: 1px solid rgba(23, 63, 53, 0.23);
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.55s ease;
}


.portrait-card:hover img {
  transform: scale(1.015);
}


.portrait-card > div {
  min-height: 210px;
  padding: 30px 32px 34px;
  background: var(--paper);
  border-top: 1px solid rgba(23, 63, 53, 0.13);
}


.portrait-card small {
  display: block;
  min-height: 52px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
}


.portrait-card h3 {
  margin: 12px 0;
  font-size: 30px;
}


.portrait-card span {
  display: inline-block;
  padding-bottom: 4px;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* Audience */


.audience {
  padding: 10vw 6vw;
  text-align: center;
}


.audience h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.05;
}


.audience-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 45px 0;
}


.audience-list span {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 11px;
  text-transform: uppercase;
}


/* Calls to Action */


.final-cta,
.page-cta {
  padding: 9vw 5vw;
  background: var(--blush);
  text-align: center;
}


.final-cta > p {
  color: #4f443f;
}


.final-cta h2,
.page-cta h2 {
  margin: 20px 0 40px;
  font-size: clamp(45px, 6vw, 84px);
  line-height: 1;
}


.final-cta h2 em {
  color: var(--forest);
}


.page-cta {
  background: var(--deep);
  color: #fff;
}


.page-cta > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}


/* Footer */


.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 65px 7vw 30px;
  background: var(--deep);
  color: #fff;
}


.footer-brand {
  font-size: 30px;
}


.footer-brand em {
  color: var(--lime);
}


.site-footer > div:first-child > p {
  margin-top: 18px;
  color: #bfcac5;
  font: italic 20px var(--serif);
}


.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 12px;
}


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


.footer-bottom {
  display: flex;
  grid-column: 1/-1;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 22px;
  color: #9aa7a1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 10px;
}


/* Experience Page */


.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 8vw 7vw 0;
  background: var(--cream);
}


.page-hero h1 {
  font-size: clamp(45px, 5.5vw, 78px);
  line-height: 1;
}


.page-hero h1 em {
  color: var(--forest);
}


.editorial-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 9vw;
  padding: 10vw 8vw;
}


.editorial-intro h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}


.editorial-intro h2 em {
  color: var(--forest);
}


.editorial-intro > div:last-child p {
  margin-bottom: 28px;
  color: var(--muted);
}


/* Three Pillars */


.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.pillars article {
  min-height: 400px;
  padding: 5vw;
  border-right: 1px solid var(--line);
}


.pillars article:last-child {
  border-right: 0;
}


.pillars span {
  font-size: 10px;
}


.pillars h3 {
  margin: 55px 0 5px;
  font-size: 46px;
}


.pillars strong {
  color: var(--forest);
  font-size: 13px;
}


.pillars p {
  margin-top: 20px;
  color: var(--muted);
}


/* FAQ */


.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  padding: 10vw 8vw;
}


.faq-section h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1;
}


.faq-section h2 em {
  color: var(--forest);
}


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


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


.faq-list summary {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font: 500 21px var(--serif);
  list-style: none;
  cursor: pointer;
}


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


.faq-list summary span {
  font: 400 24px var(--sans);
  transition: 0.2s;
}


.faq-list details[open] summary span {
  transform: rotate(45deg);
}


.faq-list details p {
  padding: 0 40px 25px 0;
  color: var(--muted);
}


/* Schedule Page */


.schedule-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10vw;
  padding: 9vw 8vw;
  background: var(--deep);
  color: #fff;
}


.schedule-hero h1 {
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1;
}


.schedule-hero h1 em {
  color: var(--lime);
}


.schedule-hero > div:first-child > p:last-child {
  max-width: 600px;
  margin-top: 28px;
  color: #c4cfca;
}


.schedule-meta {
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  gap: 8px;
}


.schedule-meta span {
  margin-top: 18px;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.15em;
}


.schedule-meta strong {
  font: 500 21px var(--serif);
}


.schedule-list {
  padding: 5vw 8vw;
}


.schedule-list article {
  display: grid;
  grid-template-columns: 110px 1fr 260px;
  align-items: center;
  gap: 5vw;
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}


.time {
  color: var(--forest);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


.schedule-list small {
  color: var(--forest);
  font-size: 9px;
  letter-spacing: 0.14em;
}


.schedule-list h2 {
  margin: 8px 0;
  font-size: clamp(30px, 3.5vw, 50px);
}


.schedule-list article > div:nth-child(2) p {
  max-width: 600px;
  color: var(--muted);
}


.takeaway {
  padding: 9vw 8vw;
  background: var(--lime);
}


.takeaway h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1;
}


.takeaway > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}


.takeaway > div span {
  padding: 10px 18px;
  border: 1px solid var(--deep);
  border-radius: 30px;
  font-size: 11px;
  text-transform: uppercase;
}


/* Tickets Page */


.tickets-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 8vw;
  padding: 8vw 7vw;
  background: var(--cream);
}


.tickets-hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
}


.tickets-hero h1 em {
  color: var(--forest);
}


.tickets-hero > div:first-child > p:last-child {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
}


.ticket-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: auto;
  padding: 9vw 8vw;
}


.ticket {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 5vw 4vw;
  background: var(--cream);
}


.ticket.featured {
  position: relative;
  background: var(--deep);
  color: #fff;
}


.ticket.featured > b {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background: var(--lime);
  color: var(--deep);
  font-size: 9px;
}


.ticket > small {
  color: var(--forest);
  font-size: 9px;
  letter-spacing: 0.15em;
}


.ticket.featured > small {
  color: var(--lime);
}


.ticket h2 {
  margin: 25px 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}


.price {
  margin: 20px 0;
  font: 500 70px var(--serif);
}


.price sup {
  vertical-align: top;
  font: 500 18px var(--sans);
}


.ticket > p {
  color: var(--muted);
}


.ticket.featured > p {
  color: #c4ceca;
}


.ticket ul {
  margin: 30px 0;
  list-style: none;
}


.ticket li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}


.ticket .btn {
  margin-top: auto;
}


/* Partnership */


.partner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: 9vw 8vw;
  background: var(--blush);
}


.partner-section h2 {
  font-size: clamp(45px, 5.5vw, 76px);
  line-height: 1;
}


.partner-section h2 em {
  color: var(--forest);
}


.partner-section > div:first-child > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
}


.partner-list {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}


.partner-list div {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}


.partner-list strong {
  font: 500 25px var(--serif);
}


/* Event Details */


.event-details {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  padding: 9vw 8vw;
}


.event-details h2 {
  font-size: 54px;
}


.event-details dl {
  border-top: 1px solid var(--line);
}


.event-details dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}


dt {
  color: var(--forest);
  font-size: 10px;
  text-transform: uppercase;
}


dd {
  font: 500 20px var(--serif);
}


/* Contact Page */


.contact-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  padding: 8vw;
  background: var(--cream);
}


.contact-intro h1 {
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1;
}


.contact-intro h1 em {
  color: var(--forest);
}


.contact-intro > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}


.contact-note {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}


.contact-note span {
  color: var(--muted);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


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


.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #8d918c;
  border-radius: 0;
  outline: none;
  resize: vertical;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 2px var(--forest);
}


.contact-form .btn {
  align-self: flex-start;
  cursor: pointer;
}


.form-status {
  min-height: 20px;
  color: var(--forest);
  font-size: 12px;
}


.contact-image-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}


.contact-image-strip blockquote {
  display: flex;
  align-items: center;
  padding: 6vw;
  background: var(--forest);
  color: #fff;
  font: italic 500 clamp(30px, 4vw, 55px) / 1.1 var(--serif);
}


/* Biography Pages */


.bio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--cream);
}


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


.bio-hero > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}


.back-link {
  margin-bottom: 60px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.bio-hero h1 {
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.9;
}


.bio-hero h2 {
  margin: 25px 0;
  color: var(--forest);
  font: 500 18px/1.4 var(--sans);
  letter-spacing: 0;
}


.bio-lead {
  font: italic 500 28px var(--serif);
}


.bio-body {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 10vw;
  padding: 9vw 8vw;
}


.bio-body blockquote {
  color: var(--forest);
  font: italic 500 32px/1.2 var(--serif);
}


.bio-body article h2 {
  margin: 45px 0 20px;
  font-size: 50px;
}


.bio-body article > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
}


.content-note {
  padding: 22px;
  background: var(--lime);
}


.content-note strong {
  font-size: 10px;
  letter-spacing: 0.12em;
}


.content-note p {
  margin-top: 5px;
  font-size: 12px;
}


.bio-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
}


.bio-highlights div {
  padding: 20px 15px 0 0;
  border-top: 1px solid var(--line);
}


.bio-highlights small {
  display: block;
  color: var(--forest);
  font-size: 9px;
}


.bio-highlights strong {
  font: 500 17px var(--serif);
}


.bio-next {
  display: flex;
  justify-content: space-between;
  padding: 35px 8vw;
  background: var(--blush);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================
   ALL-PAGE TRANSITIONS
========================================= */


body {
  opacity: 0;
  transition: opacity 0.45s ease;
}


body.page-loaded {
  opacity: 1;
}


body.page-leaving {
  opacity: 0;
  pointer-events: none;
}


.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}


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


.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}


.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}


.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}


.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.photo-reveal {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}


.photo-reveal.visible {
  opacity: 1;
  transform: scale(1);
}


/* Staggered Cards */


.portrait-card.reveal:nth-child(1),
.outcome-card.reveal:nth-child(1),
.pillars article.reveal:nth-child(1) {
  transition-delay: 0.05s;
}


.portrait-card.reveal:nth-child(2),
.outcome-card.reveal:nth-child(2),
.pillars article.reveal:nth-child(2) {
  transition-delay: 0.18s;
}


.portrait-card.reveal:nth-child(3),
.outcome-card.reveal:nth-child(3),
.pillars article.reveal:nth-child(3) {
  transition-delay: 0.31s;
}


.ticket.reveal:nth-child(1) {
  transition-delay: 0.08s;
}


.ticket.reveal:nth-child(2) {
  transition-delay: 0.22s;
}


.faq-list details.reveal {
  transform: translateY(18px);
  transition-duration: 0.7s;
}


.faq-list details.reveal.visible {
  transform: translateY(0);
}


/* Tablet */


@media (max-width: 980px) {
  .main-nav {
    gap: 18px;
  }


  .home-hero,
  .feature-grid,
  .page-hero,
  .editorial-intro,
  .faq-section,
  .schedule-hero,
  .tickets-hero,
  .partner-section,
  .event-details,
  .contact-page,
  .bio-hero,
  .bio-body {
    grid-template-columns: 1fr;
  }


  .hero-copy {
    padding: 80px 7vw;
  }


  .hero-media {
    min-height: 600px;
  }


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


  .three-outcomes {
    grid-template-columns: 1fr;
  }


  .outcome-card {
    min-height: auto;
  }


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


  .portrait-row {
    gap: 16px;
  }


  .portrait-card img {
    height: 600px;
  }


  .schedule-list article {
    grid-template-columns: 90px 1fr;
  }


  .schedule-list .mini {
    display: none;
  }


  .ticket-options {
    padding: 8vw 5vw;
  }


  .contact-image-strip {
    grid-template-columns: 1fr;
  }


  .bio-image {
    max-height: 700px;
  }


  .bio-body {
    gap: 50px;
  }
}


/* Mobile */


@media (max-width: 760px) {
  .announcement {
    justify-content: space-between;
    padding: 0 16px;
  }


  .announcement span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }


  .site-header {
    height: 72px;
  }


  .nav-shell {
    padding: 0 20px;
  }


  .brand {
    font-size: 18px;
  }


  .main-nav {
    position: fixed;
    inset: 107px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    overflow: auto;
    padding: 45px 28px;
    background: var(--paper);
    transform: translateX(100%);
    transition: 0.3s;
  }


  .main-nav.active {
    transform: none;
  }


  .main-nav > li {
    display: block;
  }


  .main-nav > li > a {
    font: 500 31px var(--serif);
  }


  .dropdown-toggle {
    float: right;
    font-size: 24px;
  }


  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin-top: 15px;
    background: var(--cream);
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }


  .has-dropdown.open .dropdown {
    display: block;
  }


  .dropdown a {
    font-family: var(--sans) !important;
    font-size: 13px !important;
  }


  .nav-cta {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .home-hero {
    min-height: auto;
  }


  .hero-copy {
    padding: 65px 24px;
  }


  .hero-copy h1 {
    font-size: clamp(39px, 12vw, 52px);
  }


  .hero-media {
    min-height: 500px;
  }


  .hero-collage {
    min-height: 590px;
  }


  .collage-photo-one {
    top: 8%;
    left: 4%;
    width: 43%;
    height: 48%;
  }


  .collage-photo-two {
    top: 18%;
    right: 4%;
    width: 45%;
    height: 53%;
  }


  .collage-photo-three {
    bottom: 4%;
    left: 28%;
    width: 38%;
    height: 40%;
  }


  .collage-message {
    bottom: 3%;
    left: 4%;
    max-width: 150px;
    padding: 15px;
  }


  .collage-message strong {
    font-size: 17px;
  }


  .media-tag {
    padding: 18px;
  }


  .ticker {
    overflow: hidden;
  }


  .ticker div {
    text-align: left;
  }


  .split-statement,
  .founder-preview,
  .founders-page,
  .audience,
  .final-cta,
  .page-hero,
  .editorial-intro,
  .faq-section,
  .schedule-hero,
  .schedule-list,
  .takeaway,
  .page-cta,
  .tickets-hero,
  .ticket-options,
  .partner-section,
  .event-details,
  .contact-page,
  .bio-body {
    padding: 75px 24px;
  }


  .split-statement {
    gap: 50px;
  }


  .outcome-card {
    padding: 55px 24px;
  }


  .outcome-card h3 {
    margin: 35px 0 18px;
  }


  .feature-grid {
    min-height: auto;
  }


  .feature-copy {
    padding: 75px 24px;
  }


  .photo-placeholder {
    min-height: 330px;
  }


  .portrait-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }


  .portrait-card img {
    width: calc(100% - 20px);
    height: 570px;
    margin: 10px 10px 0;
    padding: 5px;
  }


  .portrait-card > div {
    min-height: auto;
    padding: 26px 24px 30px;
  }


  .section-heading {
    margin-bottom: 45px;
  }


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


  .pillars article {
    min-height: auto;
    padding: 55px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .faq-section {
    gap: 50px;
  }


  .faq-list summary {
    font-size: 18px;
  }


  .schedule-list article {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 40px 0;
  }


  .ticket-options {
    grid-template-columns: 1fr;
  }


  .ticket {
    min-height: 620px;
    padding: 55px 28px;
  }


  .partner-section {
    gap: 60px;
  }


  .event-details {
    gap: 45px;
  }


  .event-details dl div {
    grid-template-columns: 100px 1fr;
  }


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


  .contact-image-strip blockquote {
    padding: 65px 24px;
  }


  .bio-hero {
    min-height: auto;
  }


  .bio-image {
    height: 520px;
  }


  .bio-hero > div:last-child {
    padding: 60px 24px;
  }


  .back-link {
    margin-bottom: 40px;
  }


  .bio-body {
    gap: 45px;
  }


  .bio-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .bio-next {
    gap: 20px;
    padding: 28px 24px;
  }


  .site-footer {
    grid-template-columns: 1fr;
    padding: 55px 24px 25px;
  }


  .footer-nav {
    margin-top: 40px;
  }


  .footer-bottom {
    grid-column: 1;
  }


  .page-hero {
    padding-bottom: 0;
  }


  .reveal {
    transform: translateY(24px);
  }


  .reveal-left {
    transform: translateX(-24px);
  }


  .reveal-right {
    transform: translateX(24px);
  }


  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    transform: translate(0);
  }
}


/* Reduced Motion */


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


  body,
  body.page-loaded,
  body.page-leaving,
  .reveal,
  .reveal-left,
  .reveal-right,
  .photo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }


  .collage-photo,
  .collage-orbit,
  .founder-marquee-track {
    animation: none;
  }
}
/* =========================================
   SMALLER PROFESSIONAL FOUNDER PHOTOS
========================================= */


/* Center the top announcement after removing the ticket link */


.announcement {
  justify-content: center;
}


/* Keep the founder section from becoming too wide */


.portrait-row {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  gap: 28px;
}


/* Cleaner founder card */


.portrait-card {
  border: 1px solid rgba(23, 63, 53, 0.28);
  border-radius: 2px;
  background: var(--paper);
  box-shadow:
    0 15px 35px rgba(12, 41, 35, 0.13),
    0 3px 8px rgba(12, 41, 35, 0.07);
}


/* Smaller image with a cream border */


.portrait-card img {
  width: calc(100% - 32px);
  height: 500px;
  margin: 16px 16px 0;
  padding: 8px;
  background: var(--cream);
  border: 1px solid rgba(23, 63, 53, 0.3);
  object-fit: contain;
  object-position: center;
}


/* Remove the large amount of space under the pictures */


.portrait-card > div {
  min-height: 195px;
  padding: 26px 28px 30px;
}


/* Founder titles */


.portrait-card small {
  min-height: 50px;
  font-size: 9px;
  line-height: 1.55;
}


/* Founder names */


.portrait-card h3 {
  margin: 13px 0 17px;
  font-size: clamp(28px, 2.4vw, 37px);
}


/* Keep hover movement restrained */


.portrait-card:hover {
  transform: translateY(-6px);
}


.portrait-card:hover img {
  transform: scale(1.008);
}


/* =========================================
   SMALLER BIOGRAPHY PHOTOS
========================================= */


.bio-hero {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  min-height: auto;
  padding: clamp(55px, 7vw, 110px) 7vw;
  background: var(--cream);
}


/* Professional frame around biography image */


.bio-image {
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(23, 63, 53, 0.3);
  box-shadow:
    0 20px 45px rgba(12, 41, 35, 0.14),
    0 4px 12px rgba(12, 41, 35, 0.08);
}


/* Show the full photograph */


.bio-image img {
  width: 100%;
  height: 640px;
  background: #eee6d8;
  border: 1px solid rgba(23, 63, 53, 0.18);
  object-fit: contain;
  object-position: center;
}


/* Reduce extra spacing on the biography text side */


.bio-hero > div:last-child {
  padding: 0;
}


.bio-hero .back-link {
  margin-bottom: 45px;
}


.bio-hero h1 {
  font-size: clamp(58px, 7vw, 105px);
}


/* =========================================
   TABLET
========================================= */


@media (max-width: 980px) {
  .portrait-row {
    gap: 18px;
  }


  .portrait-card img {
    height: 450px;
  }


  .bio-hero {
    grid-template-columns: 1fr;
    padding: 70px 7vw;
  }


  .bio-image {
    max-width: 560px;
  }


  .bio-image img {
    height: 650px;
  }
}


/* =========================================
   MOBILE
========================================= */


@media (max-width: 760px) {
  .portrait-row {
    gap: 30px;
  }


  .portrait-card {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }


  .portrait-card img {
    width: calc(100% - 24px);
    height: 480px;
    margin: 12px 12px 0;
    padding: 6px;
  }


  .portrait-card > div {
    min-height: auto;
    padding: 25px 23px 28px;
  }


  .bio-hero {
    gap: 45px;
    padding: 55px 24px;
  }


  .bio-image {
    max-width: 430px;
    padding: 8px;
  }


  .bio-image img {
    height: 520px;
  }


  .bio-hero .back-link {
    margin-bottom: 30px;
  }


  .bio-hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }
}
/* =========================================
   FINAL FULL-BODY FOUNDER ALIGNMENT
   Keeps every head and both feet visible
========================================= */


.portrait-card:nth-child(1) img,
.portrait-card:nth-child(2) img,
.portrait-card:nth-child(3) img {
  width: calc(100% - 32px);
  height: 520px;
  margin: 16px 16px 0;
  padding: 16px;


  background: var(--cream);
  border: 1px solid rgba(23, 63, 53, 0.3);


  object-fit: contain;
  object-position: center center;


  transform: none;
}


/* Prevent hover zoom from cutting anything off */


.portrait-card:hover:nth-child(1) img,
.portrait-card:hover:nth-child(2) img,
.portrait-card:hover:nth-child(3) img {
  transform: none;
}


/* Tablet */


@media (max-width: 980px) {
  .portrait-card:nth-child(1) img,
  .portrait-card:nth-child(2) img,
  .portrait-card:nth-child(3) img {
    height: 470px;
    padding: 14px;
  }
}


/* Mobile */


@media (max-width: 760px) {
  .portrait-card:nth-child(1) img,
  .portrait-card:nth-child(2) img,
  .portrait-card:nth-child(3) img {
    width: calc(100% - 24px);
    height: 500px;
    margin: 12px 12px 0;
    padding: 12px;
  }
}
/* ========================================
   CENTERED CITY EXPERIENCE SECTION
======================================== */


.city-feature {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 820px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #f2ede3;
}


.city-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* Transparent fade starts below their faces */
.city-feature-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(251, 249, 244, 0) 0%,
    rgba(251, 249, 244, 0) 32%,
    rgba(251, 249, 244, 0.28) 47%,
    rgba(251, 249, 244, 0.82) 69%,
    rgba(251, 249, 244, 0.96) 100%
  );
}


.city-feature-copy {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 75px 40px 55px;
  text-align: center;
  background: transparent;
}


.city-feature-copy .eyebrow {
  margin: 0 0 18px;
  color: #173f35;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}


.city-feature-copy h2 {
  margin: 0 auto 22px;
  color: #151b18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 5.7vw, 6.8rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.045em;
}


.city-feature-copy h2 br {
  display: none;
}


.city-feature-copy h2 em {
  color: #173f35;
  font-weight: 400;
}


.city-feature-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #4f5853;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.7;
}


.city-feature-copy .btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #173f35;
  color: #173f35;
  background: rgba(251, 249, 244, 0.65);
  backdrop-filter: blur(8px);
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}


.city-feature-copy .btn:hover {
  color: #ffffff;
  background: #173f35;
  transform: translateY(-2px);
}


/* ========================================
   TABLET
======================================== */


@media (max-width: 1000px) {
  .city-feature {
    min-height: 720px;
  }


  .city-feature-copy {
    padding: 65px 30px 45px;
  }


  .city-feature-copy h2 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
  }
}


/* ========================================
   MOBILE
======================================== */


@media (max-width: 760px) {
  .city-feature {
    display: flex;
    min-height: auto;
    flex-direction: column;
    background: #fbf9f4;
  }


  .city-feature-image {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }


  .city-feature-shade {
    display: none;
  }


  .city-feature-copy {
    width: 100%;
    padding: 48px 22px 58px;
    background: #fbf9f4;
  }


  .city-feature-copy .eyebrow {
    margin-bottom: 20px;
  }


  .city-feature-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.96;
  }


  .city-feature-copy h2 br {
    display: initial;
  }


  .city-feature-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.65;
  }
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* LinkedIn link on founder biography pages */

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(216, 231, 89, 0.7);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}


.linkedin-link i {
  color: var(--lime);
  font-size: 1.55rem;
}


.linkedin-link:hover,
.linkedin-link:focus-visible {
  color: var(--lime);
  border-color: var(--lime);
}


/* LinkedIn placement beneath the founder's introductory statement */

.bio-linkedin {
  margin-top: 24px;
  color: var(--forest);
  border-color: rgba(23, 63, 53, 0.45);
}


.bio-linkedin i {
  color: var(--forest);
}


.bio-linkedin:hover,
.bio-linkedin:focus-visible {
  color: var(--deep);
  border-color: var(--deep);
}


.bio-linkedin:hover i,
.bio-linkedin:focus-visible i {
  color: var(--deep);
}


/* Final biography LinkedIn treatment */

.bio-hero .bio-linkedin {
  align-self: flex-start;
  width: auto;
  margin-top: 26px;
  padding: 11px 16px;
  border: 1px solid rgba(23, 63, 53, 0.55);
  color: var(--forest);
  background: rgba(23, 63, 53, 0.06);
}


.bio-hero .bio-linkedin i {
  color: var(--forest);
}


.bio-hero .bio-linkedin:hover,
.bio-hero .bio-linkedin:focus-visible {
  color: #ffffff;
  background: var(--forest);
  border-color: var(--forest);
}


.bio-hero .bio-linkedin:hover i,
.bio-hero .bio-linkedin:focus-visible i {
  color: var(--lime);
}


/* Larger founder-page navigation subtitles */

.bio-next {
  align-items: center;
  min-height: 150px;
  padding: 38px 7vw;
  border-top: 1px solid rgba(23, 63, 53, 0.16);
  border-bottom: 1px solid rgba(23, 63, 53, 0.16);
}


.bio-next a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 20px;
  border: 1px solid rgba(23, 63, 53, 0.42);
  color: var(--deep);
  background: rgba(251, 249, 244, 0.25);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.035em;
  text-transform: none;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}


.bio-next a:hover,
.bio-next a:focus-visible {
  color: #ffffff;
  background: var(--forest);
  transform: translateY(-2px);
}


@media (max-width: 760px) {
  .bio-next {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
  }


  .bio-next a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* Larger, more polished footer navigation */

.footer-nav {
  align-self: start;
  gap: 0 48px;
  font-size: 1rem;
}


.footer-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: color 220ms ease, padding-left 220ms ease, border-color 220ms ease;
}


.footer-nav a::after {
  content: "↗";
  color: var(--lime);
  font-size: 0.9rem;
  opacity: 0.8;
}


.footer-nav a:hover,
.footer-nav a:focus-visible {
  padding-left: 8px;
  color: var(--lime);
  border-color: var(--lime);
}


@media (max-width: 760px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }


  .footer-nav a {
    min-height: 54px;
  }
}