:root {
  --ink: #151311;
  --paper: #f5f1eb;
  --white: #fffdf9;
  --red: #b51f28;
  --wine: #35171b;
  --muted: #746e68;
  --line: rgba(21, 19, 17, 0.16);
  --font-display: Georgia, "Times New Roman", serif;
  --font-text: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

/* Grid and flex children must be allowed to shrink on narrow screens. */
.intro-copy,
.process-copy,
.founder-copy,
.founder-details,
.philosophy-copy,
.services-heading > *,
.projects-intro > *,
.project-card,
.project-card-copy,
.documents-heading > *,
.document-card,
.document-copy,
.contact-copy,
.contact-form,
footer > * {
  min-width: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  object-fit: cover;
}

.hero-image,
.portrait-frame > img,
.process-image > img,
.founder-image > img,
.details-banner > img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 24px clamp(24px, 4vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.28em;
  margin-left: 5px;
  margin-top: 8px;
  text-transform: uppercase;
}

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

.desktop-nav {
  display: flex;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 300;
  gap: 28px;
  letter-spacing: 0.12em;
}

.desktop-nav a,
.header-cta {
  position: relative;
}

.desktop-nav a::after,
.header-cta::after {
  background: currentColor;
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-self: end;
}

.language-switch {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 300;
  gap: 6px;
  letter-spacing: 0.12em;
}

.language-switch a {
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.language-switch a:hover,
.language-switch a.active {
  opacity: 1;
}

.hero {
  color: var(--white);
  min-height: max(900px, 100svh);
  overflow: hidden;
  position: relative;
}

.hero-image {
  object-position: center;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 8, 5, 0.7) 0%, rgba(14, 8, 5, 0.05) 50%),
    linear-gradient(0deg, rgba(14, 8, 5, 0.82) 0%, rgba(14, 8, 5, 0.24) 38%, transparent 66%);
  inset: 0;
  position: absolute;
}

.hero-logo {
  left: 54%;
  position: absolute;
  text-align: center;
  top: 34%;
  transform: translate(-50%, -50%);
  width: max-content;
  z-index: 2;
}

.hero-logo-image {
  height: auto;
  width: clamp(350px, 38vw, 530px);
}

.hero-content {
  bottom: 6vh;
  left: 50%;
  max-width: 1080px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  z-index: 2;
}

.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #eed6d3;
}

.hero h1,
.intro h2,
.process h2,
.founder h2,
.philosophy h2,
.services h2,
.projects h2,
.documents h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: none;
}

.hero h1 > span,
.hero h1 > small {
  display: block;
}

.hero h1 > span {
  color: var(--red);
}

.hero h1 > small {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.45vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-top: 10px;
}

.hero-content > p:not(.eyebrow) {
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 690px;
}

.hero-content .text-link {
  margin-top: 24px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  gap: 16px;
  letter-spacing: 0.14em;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 180ms ease;
  width: 60%;
}

.text-link:hover::after {
  width: 100%;
}

.light-link {
  color: var(--white);
}

.scroll-cue {
  align-items: center;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  z-index: 2;
}

.scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  background: rgba(255, 255, 255, 0.85);
  height: 54px;
  width: 1px;
}

.section-pad {
  padding: clamp(92px, 11vw, 168px) clamp(24px, 7vw, 120px);
}

.intro {
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1.55fr);
}

.section-kicker {
  align-items: flex-start;
  display: flex;
  gap: 18px;
}

.section-kicker span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 13px;
}

.section-kicker p {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.intro h2 {
  font-size: clamp(44px, 6vw, 80px);
  max-width: 1000px;
}

.two-column-copy {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 84px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 62px;
  padding-top: 30px;
}

.two-column-copy p,
.process-copy > p:not(.eyebrow),
.founder-copy > p:not(.eyebrow),
.philosophy-copy > p:not(.eyebrow),
.projects-intro > p,
.contact-copy > p:not(.eyebrow) {
  color: #514b46;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.conversation-image {
  align-items: end;
  background: var(--white);
  display: grid;
  gap: clamp(40px, 9vw, 150px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  max-height: 820px;
  overflow: hidden;
  position: relative;
}

.portrait-frame img {
  object-position: center 42%;
}

.conversation-image blockquote {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: 0 0 7vw;
  max-width: 850px;
}

.process {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 130px);
  grid-template-columns: minmax(360px, 1.2fr) minmax(320px, 0.8fr);
}

.process-image {
  aspect-ratio: 3 / 2;
  box-shadow: 0 32px 80px rgba(47, 34, 26, 0.14);
  position: relative;
}

.process-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
  margin-bottom: 34px;
}

.process-copy > p:not(.eyebrow) + p {
  margin-top: 18px;
}

.founder {
  background: var(--wine);
  color: var(--white);
  display: grid;
  gap: clamp(42px, 6vw, 100px);
  grid-template-columns: minmax(110px, 0.35fr) minmax(330px, 0.9fr) minmax(300px, 0.75fr);
}

.light-kicker p {
  color: rgba(255, 255, 255, 0.82);
}

.founder-copy h2 {
  font-size: clamp(40px, 3.9vw, 58px);
  margin-bottom: 38px;
}

.founder-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
}

.founder-copy > p:not(.eyebrow) + p {
  margin-top: 20px;
}

.founder-copy .text-link {
  margin-top: 36px;
}

.founder-image {
  aspect-ratio: 2 / 3;
  min-height: 620px;
  position: relative;
}

.founder-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-column: 2 / 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 34px;
}

.founder-details strong {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.founder-details p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin: 0;
}

.founder-details p + p {
  margin-top: 14px;
}

.founder-manifesto {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 54px);
  font-weight: 400;
  grid-column: 2 / 4;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
  padding-top: clamp(40px, 5vw, 72px);
}

.founder-manifesto small {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 760px;
}

.philosophy {
  display: grid;
  gap: clamp(48px, 8vw, 130px);
  grid-template-columns: minmax(110px, 0.35fr) minmax(360px, 1fr) minmax(260px, 0.55fr);
}

.philosophy-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
  margin-bottom: 38px;
}

.philosophy-copy > p:not(.eyebrow) + p {
  margin-top: 18px;
}

.manifesto {
  align-self: end;
  border-left: 1px solid var(--line);
  padding: 20px 0 20px 42px;
}

.manifesto .brand-logo {
  width: min(100%, 250px);
}

.manifesto p {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 26px;
  margin: 40px 0 8px;
}

.manifesto small {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.services-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(180px, 0.45fr) minmax(420px, 1.55fr);
  margin-bottom: clamp(60px, 8vw, 110px);
}

.services h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  max-width: 980px;
}

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

.service-list article {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 1fr);
  padding: 38px 0;
  transition: padding 220ms ease;
}

.service-list article:hover {
  padding-left: 16px;
}

.service-list h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.service-list p {
  color: var(--muted);
  margin: 0;
}

.details-banner {
  aspect-ratio: 2.3 / 1;
  min-height: 520px;
  position: relative;
}

.projects {
  background: #171311;
  color: var(--white);
}

.projects-intro {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
}

.projects-intro .section-kicker {
  grid-column: 1 / -1;
}

.projects-intro h2 {
  font-size: clamp(46px, 5vw, 72px);
  margin: 0;
}

.projects-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

.project-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 130px);
}

.project-card {
  background: #211c19;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-4px);
}

.project-media {
  align-items: center;
  aspect-ratio: 16 / 8;
  background: #f5f2ed;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
}

.project-media img {
  height: 100%;
  max-height: 190px;
  object-fit: contain;
  width: 100%;
}

.project-card-copy {
  min-height: 270px;
  padding: clamp(26px, 3.4vw, 46px);
  position: relative;
}

.project-meta {
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card-copy > p {
  color: #d2aaa6;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 38px 0 12px;
  text-transform: uppercase;
}

.project-card h3,
.document-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.project-card h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.project-status {
  border: 1px solid rgba(255, 255, 255, 0.3);
  bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 6px 9px;
  position: absolute;
  right: clamp(26px, 3.4vw, 46px);
  text-transform: uppercase;
}

.event-reel {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: clamp(90px, 11vw, 160px);
  overflow: hidden;
  padding-top: clamp(34px, 4vw, 54px);
}

.event-reel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: event-reel-scroll 96s linear infinite;
}

.event-reel:hover .event-reel-track {
  animation-play-state: paused;
}

.event-reel-group {
  display: flex;
  flex: none;
  gap: 14px;
  padding-right: 14px;
}

.event-reel figure {
  flex: none;
  height: clamp(240px, 33vw, 520px);
  margin: 0;
  overflow: hidden;
  width: clamp(340px, 46vw, 720px);
}

.event-reel img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.event-reel figure:hover img {
  transform: scale(1.02);
}

@keyframes event-reel-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-reel {
    overflow-x: auto;
  }

  .event-reel-track {
    animation: none;
  }
}

.documents {
  background: var(--white);
}

.documents-heading {
  align-items: end;
  display: grid;
  gap: clamp(48px, 9vw, 140px);
  grid-template-columns: minmax(200px, 0.5fr) minmax(420px, 1.5fr);
}

.documents h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  max-width: 900px;
}

.document-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(66px, 8vw, 116px);
}

.document-card {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(240px, 1.25fr);
  min-height: 510px;
  overflow: hidden;
}

.document-preview {
  background: #e7e3de;
  overflow: hidden;
  position: relative;
}

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

.document-copy {
  align-content: start;
  display: grid;
  padding: clamp(28px, 4vw, 54px);
}

.document-copy > p {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.document-card h3 {
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.document-copy > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 26px;
}

.document-copy > a {
  align-self: end;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  margin-top: 46px;
  padding-top: 18px;
  text-transform: uppercase;
}

.trust {
  text-align: center;
}

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

.trust-grid div {
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
}

.trust-grid div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 16px;
  text-transform: uppercase;
}

.contact {
  background: var(--red);
  color: var(--white);
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
}

.contact .eyebrow {
  color: #ffd9d4;
}

.contact h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 30px;
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 30px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.contact-form label > span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0;
  color: white;
  outline: none;
  padding: 10px 0 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: white;
}

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

.contact-form button {
  background: var(--white);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  justify-self: start;
  letter-spacing: 0.08em;
  padding: 17px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: #eadbd2;
  transform: translateY(-2px);
}

.contact-form > small {
  align-self: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

footer {
  align-items: end;
  background: #171311;
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 54px clamp(24px, 7vw, 120px);
}

.footer-brand .brand-logo {
  width: 190px;
}

footer > p,
footer > a:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 0;
}

footer > p {
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .header-cta {
    justify-self: end;
  }

  .founder,
  .philosophy {
    grid-template-columns: 0.28fr 1fr;
  }

  .founder-image {
    grid-column: 2;
    min-height: 760px;
  }

  .founder-details,
  .founder-manifesto {
    grid-column: 2;
  }

  .manifesto {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .hero-image {
    object-position: 59% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(14, 8, 5, 0.84) 0%, rgba(14, 8, 5, 0.05) 85%);
  }

  .hero-logo {
    left: 54%;
    top: 30%;
  }

  .hero-logo-image {
    width: clamp(310px, 58vw, 470px);
  }

  .hero-content {
    bottom: 6vh;
    right: auto;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 68px);
  }

  .intro,
  .conversation-image,
  .process,
  .founder,
  .philosophy,
  .services-heading,
  .projects-intro,
  .documents-heading,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-copy,
  .process-copy,
  .founder-copy,
  .founder-details,
  .philosophy-copy,
  .services-heading > *,
  .projects-intro > *,
  .documents-heading > *,
  .contact-copy,
  .contact-form {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  blockquote,
  p,
  strong,
  small,
  a,
  span {
    overflow-wrap: break-word;
  }

  .section-kicker,
  .founder-image,
  .founder-details,
  .founder-manifesto,
  .manifesto {
    grid-column: auto;
  }

  .founder-details {
    grid-template-columns: 1fr;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .conversation-image blockquote {
    margin-bottom: 0;
  }

  .process-image {
    aspect-ratio: 1 / 1;
  }

  .founder-image {
    min-height: 0;
  }

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

  .service-list article p {
    grid-column: auto;
  }

  .details-banner {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .project-list,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .event-reel figure {
    height: clamp(220px, 58vw, 360px);
    width: clamp(300px, 82vw, 520px);
  }

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

  .trust-grid div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  footer > p,
  footer > a:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px;
  }

  .site-header .brand-logo {
    width: clamp(108px, 34vw, 132px);
  }

  .header-cta {
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
    min-width: 0;
  }

  .language-switch {
    font-size: 9px;
    gap: 4px;
  }

  .hero-content {
    bottom: 4svh;
    left: 20px;
    right: 20px;
    transform: none;
    width: auto;
  }

  .hero-logo {
    left: 53%;
    max-width: calc(100% - 40px);
    top: 29%;
  }

  .hero-logo-image {
    width: min(82vw, 380px);
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 14px;
  }

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

  .hero h1 > small {
    font-size: clamp(21px, 7vw, 30px);
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro h2,
  .process h2,
  .founder h2,
  .philosophy h2,
  .services h2,
  .projects h2,
  .documents h2,
  .contact h2 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .founder-copy h2,
  .philosophy-copy h2,
  .documents h2,
  .contact h2,
  .project-card h3,
  .document-card h3 {
    hyphens: auto;
  }

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

  .document-preview {
    aspect-ratio: 4 / 3;
  }

  .conversation-image blockquote {
    font-size: 36px;
  }

  .founder-image {
    min-height: 570px;
  }

  .manifesto {
    max-width: 100%;
    padding-left: 24px;
  }

  .service-list article {
    gap: 18px;
  }

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

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

  .project-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .project-status {
    bottom: 18px;
    right: 20px;
  }

  .document-copy {
    padding: 26px 22px;
  }

  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-cta {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero-content,
  .section-pad {
    left: auto;
    padding-left: 16px;
    padding-right: 16px;
    right: auto;
  }

  .hero-content {
    left: 16px;
    right: 16px;
  }

  .event-reel figure {
    width: calc(100vw - 48px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ===== 2026-08-13 responsive header + mobile text hotfix ===== */
.site-header {
  position: fixed;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(53, 23, 27, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  /* Keep the full site menu available on tablets and phones instead of hiding it. */
  .desktop-nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 820px) {
  html,
  body,
  main {
    overflow-x: hidden;
    width: 100%;
  }

  .site-header {
    row-gap: 10px;
  }

  .desktop-nav {
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 16px;
    justify-content: center;
    line-height: 1.25;
  }

  .desktop-nav a {
    flex: 0 0 auto;
  }

  .intro-copy,
  .process-copy,
  .founder-copy,
  .founder-details,
  .philosophy-copy,
  .services-heading,
  .projects-intro,
  .project-card,
  .project-card-copy,
  .documents-heading,
  .document-card,
  .document-copy,
  .contact-copy,
  .contact-form,
  .conversation-image blockquote,
  .founder-manifesto,
  .manifesto {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .intro h2,
  .process h2,
  .founder h2,
  .philosophy h2,
  .services h2,
  .projects h2,
  .documents h2,
  .contact h2,
  .project-card h3,
  .document-card h3,
  .conversation-image blockquote,
  .founder-manifesto {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px 12px;
  }

  .site-header .brand-logo {
    width: clamp(116px, 34vw, 142px);
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .language-switch {
    font-size: 9px;
    white-space: nowrap;
  }

  .desktop-nav {
    font-size: 8.5px;
    gap: 6px 11px;
    letter-spacing: 0.055em;
    padding-top: 1px;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro h2,
  .process h2,
  .founder h2,
  .philosophy h2,
  .services h2,
  .projects h2,
  .documents h2,
  .contact h2 {
    font-size: clamp(32px, 9.4vw, 38px);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .founder-copy h2 {
    font-size: clamp(31px, 8.9vw, 37px);
    line-height: 1.04;
  }

  .conversation-image blockquote {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.08;
  }

  .founder-manifesto,
  .project-card h3,
  .document-card h3 {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .hero {
    padding-top: 92px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .brand-logo {
    width: 112px;
  }

  .header-actions {
    gap: 7px;
  }

  .desktop-nav {
    font-size: 8px;
    gap: 5px 9px;
    letter-spacing: 0.035em;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .founder-copy h2,
  .intro h2,
  .process h2,
  .philosophy h2,
  .services h2,
  .projects h2,
  .documents h2,
  .contact h2 {
    font-size: clamp(30px, 8.8vw, 35px);
  }
}

section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 560px) {
  section[id] {
    scroll-margin-top: 125px;
  }
}
