:root {
  --bg: #f7f3eb;
  --surface: #fffdf8;
  --ink: #171717;
  --muted: #665f55;
  --soft: #ddd3c4;
  --accent: #8f5f34;
  --accent-dark: #53351e;
  --green: #2d5a4a;
  --blue: #2f4f6f;
  --shadow: 0 24px 80px rgba(49, 38, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid var(--soft);
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a,
.nav span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav .active {
  color: var(--ink);
}

.nav span {
  opacity: 0.52;
}

.nav-toggle {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 6px;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 10px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 20px;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 5vw, 64px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(40px, 8vw, 92px);
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.72fr);
  min-height: calc(100vh - 78px);
  padding: 56px 0;
}

.about-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  padding: 54px 0 34px;
}

.about-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  max-width: 820px;
}

.speaking-hero h1 {
  max-width: 780px;
}

.partnerships-hero h1 {
  max-width: 760px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.9;
  margin: 0 0 28px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

.intro,
.page-hero > p,
.body-copy p,
.side-panel p,
.talk p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.intro {
  max-width: 610px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--accent-dark);
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.compact-button {
  margin-top: 20px;
}

.button.disabled {
  border-color: var(--soft);
  color: var(--muted);
}

.portrait {
  margin: 0;
  position: relative;
}

.portrait img {
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.portrait figcaption {
  background: var(--green);
  border-radius: 6px;
  bottom: 18px;
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 800;
  left: 18px;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  position: absolute;
  text-transform: uppercase;
}

.summary-band {
  background: var(--ink);
  border-radius: 8px;
  color: var(--surface);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 60px;
  overflow: hidden;
}

.summary-band div {
  background: linear-gradient(135deg, rgba(143, 95, 52, 0.26), rgba(47, 79, 111, 0.2));
  padding: 20px 22px;
}

.summary-band strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.summary-band a {
  text-decoration: none;
}

.summary-band a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.summary-band span {
  color: #d9d0c2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section,
.content-grid {
  border-top: 1px solid var(--soft);
  display: grid;
  gap: clamp(26px, 5vw, 62px);
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  padding: 54px 0;
}

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

.body-copy p:last-child {
  margin-bottom: 0;
}

.story-section {
  border-top: 1px solid var(--soft);
  padding: 54px 0;
}

.story-block {
  max-width: 780px;
}

.story-block + .story-block {
  margin-top: 46px;
}

.story-block p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 0 0 18px;
}

.story-block p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 46px 0;
  max-width: 920px;
  padding: 4px 0 4px 28px;
}

.page-hero {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  padding: 54px 0 34px;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: 0.96;
  max-width: 780px;
}

.page-hero > p {
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 26px;
  max-width: 480px;
}

.stack {
  display: grid;
  gap: 26px;
}

.talk {
  display: grid;
  gap: 20px;
  grid-template-columns: 44px minmax(0, 1fr);
}

.talk span {
  color: var(--accent);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.6rem;
}

.talk h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  margin-bottom: 10px;
}

.talk p {
  margin: 0;
}

.side-panel {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  overflow: hidden;
}

.side-panel img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.side-panel div {
  padding: 26px;
}

.side-panel .section-label {
  margin-bottom: 12px;
}

.side-panel p:last-child {
  margin-bottom: 0;
}

.speaking-gallery {
  border-top: 1px solid var(--soft);
  padding: 54px 0;
  scroll-margin-top: 96px;
}

.gallery-header {
  align-items: end;
  display: grid;
  gap: clamp(22px, 5vw, 62px);
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  margin-bottom: 28px;
}

.gallery-header p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-flow: dense;
  grid-auto-rows: 10px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  grid-column: span 4;
  grid-row: span 11;
  margin: 0;
  overflow: hidden;
}

.gallery-wide {
  grid-column: span 7;
  grid-row: span 16;
}

.gallery-tall {
  grid-column: span 5;
  grid-row: span 22;
}

.gallery-portrait {
  grid-row: span 19;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gallery-button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  height: 100%;
  padding: 0;
  width: 100%;
}

.gallery-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -6px;
}

.gallery-button img {
  transition: transform 0.22s ease;
}

.gallery-button:hover img {
  transform: scale(1.025);
}

.lightbox {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: clamp(18px, 4vw, 44px);
  width: 100%;
}

.lightbox[open] {
  align-items: center;
  display: flex;
  justify-content: center;
}

.lightbox::backdrop {
  background: rgba(12, 10, 8, 0.88);
}

.lightbox-image {
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  height: 100%;
  margin: auto;
  max-height: calc(100vh - clamp(36px, 8vw, 88px));
  max-width: calc(100vw - clamp(36px, 8vw, 88px));
  object-fit: contain;
  width: 100%;
}

.lightbox-close {
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.7rem;
  font-weight: 400;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  top: clamp(14px, 3vw, 28px);
  width: 44px;
  z-index: 1;
}

.lightbox-close:focus-visible {
  outline: 3px solid var(--surface);
  outline-offset: 3px;
}

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

.list-columns ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

.list-columns li + li {
  margin-top: 12px;
}

.metric-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 22px;
}

.metric-card span {
  color: var(--accent);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.metric-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.metric-heading span {
  margin-bottom: 0;
}

.metric-heading svg,
.metric-heading img {
  color: var(--accent);
  fill: currentColor;
  flex: 0 0 auto;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.social-profile-card {
  color: inherit;
  min-height: 260px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social-profile-card:hover {
  border-color: rgba(143, 95, 52, 0.48);
  box-shadow: 0 18px 48px rgba(49, 38, 24, 0.1);
  transform: translateY(-2px);
}

.social-profile-card:focus-visible {
  outline: 3px solid rgba(143, 95, 52, 0.34);
  outline-offset: 4px;
}

.social-profile-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.social-profile-avatar {
  aspect-ratio: 1;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--soft);
  height: 72px;
  object-fit: cover;
  object-position: center top;
  width: 72px;
}

.social-platform-icon {
  background: var(--ink);
  border-radius: 50%;
  color: var(--surface);
  fill: currentColor;
  height: 34px;
  padding: 7px;
  width: 34px;
}

.social-platform-icon-facebook {
  background: #1877f2;
}

.social-platform-icon-instagram {
  background: #c13584;
}

.social-platform-icon-youtube {
  background: #ff0033;
}

.metric-card .social-platform-name {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.metric-card .social-username {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
}

.metric-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.platform-link-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.platform-link-card:hover {
  border-color: rgba(143, 95, 52, 0.48);
  box-shadow: 0 18px 48px rgba(49, 38, 24, 0.1);
  transform: translateY(-2px);
}

.platform-link-card:focus-visible {
  outline: 3px solid rgba(143, 95, 52, 0.34);
  outline-offset: 4px;
}

.metric-card strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.metric-logo {
  display: block;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.metric-logo-af {
  width: 220px;
}

.metric-logo-tz {
  width: 118px;
}

.metric-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.metric-card a {
  color: var(--ink);
  display: inline-block;
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
  text-decoration-color: rgba(143, 95, 52, 0.45);
  text-underline-offset: 4px;
}

.featured-video-section {
  overflow: hidden;
}

.video-scroller {
  display: flex;
  gap: 16px;
  margin-right: calc(clamp(20px, 5vw, 64px) * -1);
  overflow-x: auto;
  padding: 2px clamp(20px, 5vw, 64px) 18px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) var(--soft);
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  flex: 0 0 min(325px, 82vw);
  min-height: 620px;
  overflow: hidden;
  padding: 14px;
  scroll-snap-align: start;
}

.video-card-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.video-card-header span {
  background: var(--ink);
  border-radius: 999px;
  color: var(--surface);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-card-header a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-card-header a:hover {
  color: var(--ink);
}

.video-card .tiktok-embed {
  background: transparent;
  border: 0;
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
}

.brand-work-section {
  overflow: hidden;
}

.brand-work-scroller {
  display: flex;
  gap: 16px;
  margin-right: calc(clamp(20px, 5vw, 64px) * -1);
  overflow-x: auto;
  padding: 2px clamp(20px, 5vw, 64px) 18px 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) var(--soft);
}

.brand-video-card {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  flex: 0 0 min(255px, 76vw);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.brand-video-card video {
  aspect-ratio: 9 / 16;
  background: #111111;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.brand-video-card figcaption {
  padding: 14px;
}

.brand-video-card figcaption img {
  display: block;
  height: 28px;
  margin-bottom: 10px;
  max-width: 118px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.brand-video-logos {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.brand-video-card .brand-video-logos img {
  margin-bottom: 0;
  max-width: 92px;
}

.brand-video-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.partnership-panel img {
  aspect-ratio: 2.8 / 1;
  background: #ffffff;
  object-fit: contain;
  padding: 42px;
}

.insight-list {
  display: grid;
  gap: 1px;
}

.insight-list div {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--soft);
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.insight-list span {
  color: var(--muted);
}

.insight-list strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.insight-list p {
  color: var(--muted);
  line-height: 1.7;
  margin: 22px 0 0;
}

.tag-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag-grid span,
.tag-grid a {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 6px;
  color: var(--ink);
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  min-height: 50px;
  padding: 14px 16px;
  text-decoration: none;
}

.tag-grid a::after {
  color: var(--accent);
  content: "View";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-grid a:hover {
  border-color: var(--accent);
}

.brand-logo-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-logo-grid div {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 104px;
  padding: 20px;
}

.brand-logo-grid img {
  display: block;
  filter: saturate(0.86);
  max-height: 46px;
  max-width: 150px;
  object-fit: contain;
  width: 100%;
}

.contact-layout {
  border-top: 1px solid var(--soft);
  display: grid;
  gap: clamp(26px, 5vw, 62px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  padding: 54px 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

.contact-form textarea {
  line-height: 1.55;
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(143, 95, 52, 0.16);
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  color: var(--muted);
  display: none;
  line-height: 1.6;
  margin: 0;
}

.form-status.success,
.form-status.error {
  border-radius: 6px;
  display: block;
  padding: 12px 14px;
}

.form-status.success {
  background: rgba(45, 90, 74, 0.1);
  color: var(--green);
}

.form-status.error {
  background: rgba(143, 95, 52, 0.12);
  color: var(--accent-dark);
}

.form-note {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.hidden-field {
  left: -9999px;
  position: absolute;
}

.contact-panel {
  align-self: start;
  background: var(--ink);
  border-radius: 8px;
  color: var(--surface);
  padding: clamp(22px, 4vw, 30px);
}

.contact-panel .section-label {
  color: #d4b999;
}

.contact-panel ul {
  color: #d9d0c2;
  line-height: 1.75;
  margin: 0;
  padding-left: 20px;
}

.contact-panel li + li {
  margin-top: 10px;
}

.contact-direct {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 26px;
  padding-top: 22px;
}

.contact-direct span {
  color: #d4b999;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.closing-cta {
  align-items: center;
  border-top: 1px solid var(--soft);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 54px 0;
}

.closing-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.closing-cta .section-label {
  margin-bottom: 12px;
}

.closing-cta .button {
  flex: 0 0 auto;
}

.list-columns a,
.talk a,
.intro a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(143, 95, 52, 0.45);
  text-underline-offset: 4px;
}

.list-columns a:hover,
.talk a:hover,
.intro a:hover {
  text-decoration-color: currentColor;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  margin: 20px auto 0;
  max-width: 1180px;
  padding: 28px clamp(20px, 5vw, 64px) 38px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.footer-right {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.venture-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venture-links a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 999px;
  display: inline-flex;
  min-height: 42px;
  padding: 9px 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.venture-links a:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.venture-logo {
  display: block;
  height: auto;
  max-height: 22px;
  object-fit: contain;
}

.af-logo {
  width: 150px;
}

.tz-logo {
  width: 118px;
}

.social-links {
  align-items: center;
  display: flex;
  gap: 8px;
}

.social-links a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--soft);
  border-radius: 999px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  width: 36px;
}

.social-links a:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.social-links svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .hero,
  .about-hero,
  .page-hero,
  .split-section,
  .content-grid,
  .contact-layout,
  .gallery-header {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

  .portrait {
    order: -1;
  }

  .summary-band,
  .list-columns {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item,
  .gallery-wide,
  .gallery-tall,
  .gallery-portrait {
    grid-column: span 3;
    grid-row: span 14;
  }

  .gallery-wide,
  .gallery-tall,
  .gallery-portrait {
    grid-row: span 18;
  }
}

@media (max-width: 560px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-right {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-toggle {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .nav {
    border-top: 1px solid var(--soft);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
    width: 100%;
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a,
  .nav span {
    padding: 12px 0;
    width: 100%;
  }

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

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .summary-band,
  .list-columns,
  .field-row,
  .gallery-grid,
  .tag-grid,
  .brand-logo-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-wide,
  .gallery-tall,
  .gallery-portrait {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-wide {
    aspect-ratio: 16 / 10;
  }

  .gallery-tall,
  .gallery-portrait {
    aspect-ratio: 3 / 4;
  }

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

  .brand-logo-grid div {
    min-height: 86px;
    padding: 16px;
  }

  .summary-band {
    margin-bottom: 64px;
  }

  .split-section,
  .content-grid {
    padding: 52px 0;
  }
}
