:root {
  --wine: #b51d2e;
  --wine-deep: #7a121e;
  --wine-soft: #d64a58;
  --ink: #141210;
  --paper: #f3eee6;
  --paper-2: #e8dfd1;
  --cream: #faf7f1;
  --muted: #5c564e;
  --line: color-mix(in srgb, var(--ink) 12%, transparent);
  --max: 1160px;
  --header: 4.75rem;
  --radius: 18px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--wine);
  color: white;
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: #0e0c0c;
  color: #f4efe7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  height: 2.7rem;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  opacity: 0.78;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
}

.hero {
  background: #0e0c0c;
  color: var(--paper);
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  background: var(--wine);
  z-index: 0;
}

.hero::before {
  width: 52px;
  height: 118px;
  left: 0;
  top: 0;
}

.hero::after {
  width: 88px;
  height: 118px;
  left: 52px;
  top: 0;
  background: var(--wine-deep);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: min(46rem, calc(100svh - var(--header)));
  padding: 4.5rem 0 4.75rem;
}

.hero-grid > :first-child {
  min-width: 0;
  padding-right: 0.5rem;
}

.kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--wine-soft);
  margin-bottom: 1.2rem;
}

.kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: currentColor;
}

.display {
  font-size: clamp(2.35rem, 5.4vw, 4.5rem);
  max-width: 11ch;
}

.lede {
  max-width: 38rem;
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: rgba(243, 238, 230, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 640;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--wine);
  color: white;
}

.btn-primary:hover {
  background: #c42536;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-self: center;
}

.collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  background: #1b1818;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage .tall {
  grid-row: span 2;
  min-height: 460px;
}

.collage figcaption {
  position: absolute;
  inset: auto 0.8rem 0.8rem;
  font-size: 0.8rem;
}

section {
  padding: 4.5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-bottom: 2.4rem;
  align-items: end;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p,
.prose p + p {
  margin-top: 0.9rem;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.card {
  grid-column: span 2;
  background: var(--cream);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 18, 16, 0.12);
}

.card-media {
  aspect-ratio: 3 / 4;
  background: #1a1515;
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.card-media img.pos-face,
.portrait img.pos-face {
  object-position: 50% 50%;
}

.mono {
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, var(--wine-deep), #1a0d10 55%, #0e0c0c);
  color: var(--paper);
}

.mono span {
  font-family: var(--serif);
  font-size: 4.2rem;
  letter-spacing: -0.06em;
}

.card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.role {
  color: var(--wine-deep);
  font-weight: 650;
  font-size: 0.92rem;
}

.card-body p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.more {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 650;
  font-size: 0.92rem;
}

.approach {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 16ch;
}

.site-footer {
  background: #0e0c0c;
  color: rgba(243, 238, 230, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: var(--paper);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--wine-deep);
}

.person {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
}

.portrait {
  border-radius: 24px;
  overflow: hidden;
  background: #1a1515;
  position: sticky;
  top: calc(var(--header) + 1rem);
}

.portrait img,
.portrait .mono {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.prose {
  max-width: 42rem;
}

.prose h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.prose .role {
  margin: 0.5rem 0 1.4rem;
  font-size: 1.05rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.3rem 0 1.6rem;
}

.chips span {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-box {
  margin-top: 1.8rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.contact-box a {
  color: var(--wine-deep);
  font-weight: 650;
}

.facts {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.facts dt {
  font-weight: 700;
}

.facts dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.split-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.info-card,
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  width: 100%;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

button.btn {
  cursor: pointer;
  border: 0;
  font: inherit;
}

button.btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 650;
}

.form-status.is-ok {
  color: #2f5d32;
}

.form-status.is-err {
  color: var(--wine-deep);
}

.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.book img {
  width: 100%;
  height: auto;
  min-height: 220px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.book div {
  padding: 1.5rem 1.5rem 1.7rem;
}

.areas {
  margin-top: 2rem;
}

.areas h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 1.8rem 0 0.55rem;
}

.areas > p {
  margin-bottom: 0.4rem;
}

.areas article {
  padding: 0.95rem 0 0.15rem;
  border-top: 1px solid var(--line);
}

.areas article:first-of-type,
.areas h2 + article {
  border-top: 1px solid var(--line);
}

.areas h3 {
  font-size: 1.12rem;
  margin-bottom: 0.3rem;
}

.legal {
  max-width: 46rem;
  padding-bottom: 4rem;
}

.legal h1 {
  margin-bottom: 1rem;
}

.legal h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.5rem;
}

.notice {
  padding: 0.85rem 1rem;
  background: #efe4c8;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .person,
  .split-contact,
  .book,
  .footer-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero::after {
    height: 86px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .collage .tall {
    min-height: 280px;
    grid-row: auto;
  }

  .portrait {
    position: static;
  }

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

  .card {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    inset: var(--header) 0 auto;
    background: #0e0c0c;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.4rem;
    gap: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0.2rem;
    font-size: 1.1rem;
  }

  .team-grid,
  .collage {
    grid-template-columns: 1fr;
  }

  .display {
    max-width: none;
  }
}

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

  .card {
    transition: none;
  }
}
