/* ==========================================================================
   Eventus Law — site stylesheet
   Faithful translation of the approved design (Variation B + bio pages).
   Design tokens are sampled from the brand mark; edit with care.
   ========================================================================== */

:root {
  /* Palette */
  --sand: #E9E1D6;          /* primary page background */
  --sand-2: #F4EEE4;        /* alternate section background */
  --sand-3: #DED4C6;        /* muted border */
  --cream: #FBF7EF;         /* lightest */
  --teal: #00606F;          /* brand ink — deep teal */
  --teal-2: #004953;        /* deeper */
  --teal-3: #7FA8AE;        /* muted teal */
  --ink: #1F1B16;           /* body text */
  --ink-2: #4A443B;         /* secondary text */
  --ink-3: #7A7266;         /* tertiary text */
  --rule: #C8BEAE;          /* hairline rule */

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Spacing — edge padding grows on wide screens to cap & center content
     at ~1280px while colored section bands stay full-bleed */
  --edge: max(clamp(24px, 4vw, 72px), calc((100vw - 1280px) / 2));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

.hairline { height: 1px; background: var(--rule); border: 0; margin: 0; }
.hairline--teal { background: var(--teal-3); opacity: 0.6; }

/* Eventus wordmark — rebuilt in CSS to match the signature */
.eventus-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--teal);
  user-select: none;
}
.eventus-mark .word {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.14em;
  font-size: 28px;
}
.eventus-mark .rule {
  width: 70%;
  height: 1px;
  background: currentColor;
  margin: 6px 0 6px;
  opacity: 0.6;
}
.eventus-mark .sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.eventus-mark.sm .word { font-size: 20px; }
.eventus-mark.sm .sub { font-size: 7px; }
/* Header marks run slightly larger than the design artboard's `sm` size */
.site-header .eventus-mark.sm .word,
.bio-header .eventus-mark.sm .word { font-size: 24px; }
.site-header .eventus-mark.sm .sub,
.bio-header .eventus-mark.sm .sub { font-size: 8px; }
.eventus-mark--sand { color: var(--sand); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--sand);
  border: 0;
  cursor: pointer;
  transition: background .2s;
}
.btn:hover { background: var(--teal-2); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--sand);
  border-bottom: 1px solid var(--rule);
  padding: 16px var(--edge);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.site-nav a:hover { color: var(--teal); }
.site-header .btn { padding: 10px 18px; font-size: 11px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  padding: 10px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--teal);
  transition: transform .2s, opacity .2s;
}

/* Back link used on bio pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.back-link .chev {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(-135deg);
  display: inline-block;
}

/* ==========================================================================
   Sections (shared rhythm)
   ========================================================================== */
.section {
  padding: 96px var(--edge);
  scroll-margin-top: 92px;
}
.section--alt { background: var(--sand-2); }
.section--rule { border-top: 1px solid var(--rule); }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.8vw, 56px);
  letter-spacing: -0.015em;
  margin: 16px 0 0;
  line-height: 1.05;
  color: var(--ink);
}
.section-h2 em { color: var(--teal); }

.eyebrow-rule {
  border: 0;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
  width: 48px;
  margin: 18px 0 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 96px var(--edge) 112px;
  scroll-margin-top: 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 6.4vw, 112px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
}
.hero h1 em { color: var(--teal); }
.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 40px 0 0;
  max-width: 460px;
  text-wrap: pretty;
}
.hero-media {
  aspect-ratio: 3 / 4;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  display: block;
}

/* ==========================================================================
   The firm (about)
   ========================================================================== */
.about-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.8vw, 56px);
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 720px;
}
.about-h2 em { color: var(--teal); }
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 620px;
  text-wrap: pretty;
}
.about-copy p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Practice
   ========================================================================== */
.practice-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.practice-row:first-child { border-top: 1px solid var(--rule); }
.practice-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.14em;
}
.practice-k {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.practice-d {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ==========================================================================
   Matters — deal tombstones
   ========================================================================== */
.matters-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.matters-note {
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  max-width: 320px;
  text-align: right;
  line-height: 1.55;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}
.tombstone {
  display: block;
  height: 100%;
  color: inherit;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
a.tombstone:hover,
a.tombstone:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(31,35,33,0.38);
}
.tombstone-card {
  background: var(--cream);
  border: 1px solid rgba(0, 96, 111, 0.2);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  height: 100%;
}
.tombstone-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  margin-bottom: 22px;
}
.tombstone-logo img {
  max-width: 210px;
  object-fit: contain;
  display: block;
}
.tombstone-card .hairline { margin: 0 0 18px; }
.tombstone-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-align: center;
  margin-bottom: 18px;
  flex: 1;
}
.tombstone-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.01em;
  color: var(--teal);
  line-height: 1;
  text-align: center;
  margin-bottom: 14px;
}
.tombstone-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ==========================================================================
   People
   ========================================================================== */
.people-head { margin-bottom: 56px; }
.people-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0;
  padding-top: 32px;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.person-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--cream);
  border: 1px solid var(--rule);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.person-card:hover,
.person-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(31,35,33,0.38);
}
.person-photo {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.person-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.person-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.person-role {
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.person-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.person-contact a { color: var(--ink-2); overflow-wrap: anywhere; }
.person-contact a:hover { color: var(--teal); }
.person-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid rgba(0, 96, 111, 0.33);
  padding-bottom: 4px;
}
.person-more .arrow {
  transition: transform .3s ease;
  display: inline-block;
}
.person-card:hover .person-more { border-bottom-color: var(--teal); }
.person-card:hover .person-more .arrow { transform: translateX(3px); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-note {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 24px 0 0;
  max-width: 340px;
  text-wrap: pretty;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-item {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}
.contact-value a {
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 96, 111, 0.33);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 40px var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-top: 1px solid var(--rule);
}
.footer-legal {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.8;
}

/* ==========================================================================
   Bio pages
   ========================================================================== */
.bio-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(233, 225, 214, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 16px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bio-hero {
  padding: 80px var(--edge) 56px;
  border-bottom: 1px solid var(--rule);
}
.bio-hero-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: end;
}
.bio-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.bio-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.bio-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 96px);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 0.98;
  color: var(--ink);
}
.bio-focus {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  color: var(--teal);
  margin: 24px 0 0;
  max-width: 560px;
  font-style: italic;
}
.bio-details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 48px;
  align-items: start;
}
.bio-details dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 3px;
}
.bio-details dd { margin: 0; }
.bio-direct {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
}
.bio-direct a { color: var(--ink); overflow-wrap: anywhere; }
.bio-direct a:hover { color: var(--teal); }
.bio-admitted {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}

.bio-section {
  padding: 72px var(--edge);
  border-bottom: 1px solid var(--rule);
}
.bio-section-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  align-items: start;
}
.bio-copy { max-width: 720px; }
.bio-lede {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.bio-copy > p:not(.bio-lede) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
  text-wrap: pretty;
}

.testimonials {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonials-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.testimonial {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--teal);
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.bio-deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.others-label { margin-bottom: 28px; }
.others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.other-person {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.other-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
}
.other-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.other-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.other-role {
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.other-focus {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 8px;
}

.bio-footer {
  padding: 56px var(--edge) 40px;
  background: var(--teal);
  color: var(--sand);
}
.bio-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.bio-footer h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  margin: 0;
  line-height: 1.1;
}
.bio-footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-3);
  margin-bottom: 8px;
}
.bio-footer-value { font-family: var(--sans); font-size: 13px; }
.bio-footer-value a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  overflow-wrap: anywhere;
}
.bio-footer .hairline {
  background: var(--teal-3);
  opacity: 0.35;
}
.bio-footer-base {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-top: 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-3);
}

/* ==========================================================================
   Error page
   ========================================================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 96px var(--edge);
}
.error-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 24px;
}
.error-page p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 40px;
  max-width: 460px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-grid { gap: 48px; }
  .section-grid { gap: 48px; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .others-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-footer-grid { grid-template-columns: 1fr 1fr; }
  .bio-footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 64px var(--edge); }
  .hero { padding: 56px var(--edge) 72px; }

  /* Header: collapse nav behind a toggle */
  .site-header { grid-template-columns: auto 1fr auto auto; gap: 16px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 14px var(--edge);
    border-top: 1px solid var(--sand-3);
  }
  .site-nav a:first-child { border-top: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-media img { object-position: center 60%; }

  .section-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-h2 { margin-top: 12px; }

  .practice-row { grid-template-columns: 48px 1fr; }
  .practice-d { grid-column: 2; }

  .matters-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .matters-note { text-align: left; }

  .bio-hero { padding: 48px var(--edge) 40px; }
  .bio-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-photo { max-width: 320px; }
  .bio-section { padding: 56px var(--edge); }
  .bio-section-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-deals-grid { grid-template-columns: 1fr; }
  .bio-details { grid-template-columns: 1fr; gap: 6px; }
  .bio-details dd { margin-bottom: 14px; }
}

@media (max-width: 560px) {
  .deals-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .others-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bio-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal { text-align: left; }
  .bio-footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
