:root {
  --ink: #12231d;
  --ink-soft: #42524a;
  --paper: #f7f4ee;
  --paper-deep: #ebe5d9;
  --white: #fffdf8;
  --olive: #62705d;
  --wine: #6c2636;
  --brass: #b48b48;
  --line: rgba(18, 35, 29, 0.16);
  --shadow: 0 28px 90px rgba(18, 35, 29, 0.14);
  --display: "Silk Serif Light Italic", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Quattrocento Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav: Montserrat, ui-sans-serif, system-ui, sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "Silk Serif Light Italic";
  font-style: italic;
  font-weight: 400;
  src: url("assets/silkserif-lightitalic.woff") format("woff");
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--wine);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled="false"] {
  color: var(--white);
}

.site-header[data-scrolled="true"],
body.nav-open .site-header {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(18, 35, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--nav);
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
}

.site-header[data-scrolled="false"] .brand-mark {
  border-color: rgba(255, 253, 248, 0.9);
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: var(--ink-soft);
  font-family: var(--nav);
  font-size: 14px;
}

.site-header[data-scrolled="false"] .site-nav {
  color: rgba(255, 253, 248, 0.92);
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
}

.site-header[data-scrolled="false"] .language-switch {
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(18, 35, 29, 0.22);
}

.language-button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.site-header[data-scrolled="false"] .language-button {
  color: rgba(255, 253, 248, 0.82);
}

.language-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.site-header[data-scrolled="false"] .language-button.is-active {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  cursor: pointer;
}

.site-header[data-scrolled="false"] .nav-toggle {
  border-color: rgba(255, 253, 248, 0.44);
  background: rgba(18, 35, 29, 0.22);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.site-header[data-scrolled="false"] .nav-toggle span {
  background: var(--white);
}

body.nav-open .site-header .brand-mark {
  border-color: var(--ink);
}

body.nav-open .site-header .site-nav {
  color: var(--ink-soft);
}

body.nav-open .site-header .language-switch {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.68);
}

body.nav-open .site-header .language-button {
  color: var(--ink-soft);
}

body.nav-open .site-header .language-button.is-active {
  background: var(--ink);
  color: var(--white);
}

body.nav-open .site-header .nav-toggle {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

body.nav-open .site-header .nav-toggle span {
  background: var(--ink);
}

.section-pad {
  padding-right: clamp(22px, 5vw, 72px);
  padding-left: clamp(22px, 5vw, 72px);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: clamp(54px, 8vw, 112px);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--white);
}

.hero .eyebrow {
  color: rgba(255, 253, 248, 0.82);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: var(--nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 154px);
  font-style: italic;
}

.hero-surname {
  font-style: italic;
}

h2 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 82px);
}

h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.hero-role {
  margin-bottom: 20px;
  color: rgba(255, 253, 248, 0.86);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 31px);
  font-style: italic;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 1.35vw, 22px);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--nav);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.hero .button-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(255, 253, 248, 0.76);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 253, 248, 0.7);
  color: var(--white);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(18, 35, 29, 0.74) 0%, rgba(18, 35, 29, 0.58) 38%, rgba(18, 35, 29, 0.18) 66%, rgba(18, 35, 29, 0.04) 82%, rgba(18, 35, 29, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 35, 29, 0.44) 0%, rgba(18, 35, 29, 0.02) 48%, rgba(18, 35, 29, 0.22) 100%);
  content: "";
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 64%;
}

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

.intro-strip div {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 22px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-style: italic;
  text-align: center;
}

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

.about-section,
.work-section,
.opportunities-section,
.contact-section {
  scroll-margin-top: 92px;
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.about-section {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(28px, 3vw, 42px);
}

.work-section {
  padding-top: clamp(28px, 3vw, 42px);
}

.contact-layout,
.podcast-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.about-portrait {
  width: min(100%, 430px);
  margin: clamp(8px, 1vw, 18px) 0 0 auto;
  aspect-ratio: 0.74;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(18, 35, 29, 0.12);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.body-copy {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.3vw, 21px);
}

.body-copy p,
.section-heading-row p,
.podcast-layout p,
.opportunities-box p,
.contact-layout p {
  max-width: 720px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(26px, 5vw, 74px);
  margin-bottom: clamp(26px, 3vw, 42px);
}

.section-heading-row p {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.work-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(30px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.work-item p {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 20px);
}

.item-number {
  color: var(--brass);
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
}

.podcast-section {
  scroll-margin-top: 92px;
  background: var(--ink);
  color: var(--white);
}

.podcast-inner {
  padding-top: clamp(74px, 9vw, 118px);
  padding-bottom: clamp(74px, 9vw, 118px);
}

.podcast-section .section-kicker {
  color: #d8b56c;
}

.podcast-layout {
  align-items: stretch;
}

.podcast-layout p {
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(18px, 1.35vw, 22px);
}

.podcast-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.06);
}

.opportunities-box {
  max-width: 980px;
  padding: clamp(32px, 6vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.8), rgba(235, 229, 217, 0.65));
}

.opportunities-box p,
.contact-layout p {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.3vw, 21px);
}

.contact-links {
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--wine);
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(18, 35, 29, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(18, 35, 29, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 12px 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wine);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    height: calc(100svh - 74px);
    padding: 34px 24px;
    background: var(--paper);
    font-size: 22px;
  }

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

  .nav-toggle {
    display: block;
  }

  .hero,
  .section-heading-row,
  .about-layout,
  .about-copy,
  .contact-layout,
  .podcast-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: 116px;
    padding-bottom: 54px;
  }

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

  .hero-art {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .about-portrait {
    width: min(100%, 420px);
  }

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

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

@media (max-width: 640px) {
  .brand-name {
    display: none;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-role {
    max-width: 310px;
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .work-item {
    grid-template-columns: 1fr;
  }

  .opportunities-box,
  .contact-form,
  .podcast-panel {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
  font-family: var(--nav);
  font-size: 12px;
  font-weight: 600;
