/* ============================================================
   Léna Ordronneau — v2 styles
   Extends styles.css + layout.css. Added pages: hero CTAs,
   manifesto, category strip, work index, categories grid,
   category detail, generic project, about, licensing, contact,
   footer.
   ============================================================ */

/* ===== runhead Contact CTA (black, blobby rounded square) ===== */
.runhead__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  isolation: isolate;
  overflow: visible;
  margin: 0 22px 0 28px;
}
.runhead__cta-label { position: relative; z-index: 2; }
.runhead__cta-blob {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--ink);
  border-radius: 14px;
  animation: nav-cta-blob 7s ease-in-out infinite;
  transition: scale 320ms cubic-bezier(0.34, 1.6, 0.64, 1);
}
.runhead__cta:hover .runhead__cta-blob { scale: 1.08 1.18; }
@keyframes nav-cta-blob {
  0%, 100% { border-radius: 14px 14px 14px 14px / 14px 14px 14px 14px; }
  20%      { border-radius: 22px 12px 18px 14px / 14px 20px 12px 18px; }
  40%      { border-radius: 12px 22px 14px 18px / 18px 12px 22px 14px; }
  60%      { border-radius: 18px 14px 22px 12px / 22px 14px 18px 12px; }
  80%      { border-radius: 14px 18px 12px 22px / 12px 18px 14px 22px; }
}
.hero__contact {
  position: absolute;
  top: clamp(70px, 9vh, 110px);
  right: var(--page-x);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, padding-right 220ms ease;
}
.hero__contact:hover { background: var(--ink); color: var(--paper); padding-right: 22px; }
.hero__contact-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 4px rgba(120, 114, 69, 0.18);
  animation: contact-pulse 2.4s ease-in-out infinite;
}
@keyframes contact-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(120, 114, 69, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(120, 114, 69, 0.06); }
}
.hero__lang {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  cursor: pointer;
}
.hero__lang .is-current { color: var(--ink); font-weight: 500; }
.hero__lang:hover { color: var(--ink); }

/* blob shrink on nav hover — transform stacks on top of the
   `scale` and `translate` properties driven by JS/keyframes,
   so we can transition it independently with a spring curve. */
.cursor-invert {
  transition: transform 420ms cubic-bezier(0.34, 1.8, 0.64, 1);
  transform-origin: 50% 50%;
}
html.cursor-shrink .cursor-invert {
  transform: scale(0.2);
}
.cursor-invert {
  position: fixed;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  translate: -9999px -9999px;
  will-change: translate, border-radius, rotate, scale;
  animation:
    cursor-blob 9s ease-in-out infinite,
    cursor-breathe 4.7s ease-in-out infinite;
}
@keyframes cursor-blob {
  0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; rotate: 0deg; }
  16%  { border-radius: 62% 38% 41% 59% / 53% 64% 36% 47%; rotate: 60deg; }
  33%  { border-radius: 38% 62% 67% 33% / 67% 33% 67% 33%; rotate: 130deg; }
  50%  { border-radius: 55% 45% 30% 70% / 40% 65% 35% 60%; rotate: 200deg; }
  66%  { border-radius: 45% 55% 60% 40% / 65% 40% 60% 35%; rotate: 270deg; }
  83%  { border-radius: 60% 40% 50% 50% / 35% 60% 40% 65%; rotate: 330deg; }
  100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; rotate: 360deg; }
}
@keyframes cursor-breathe {
  0%, 100% { scale: 1 1; }
  25%      { scale: 1.08 0.94; }
  50%      { scale: 0.96 1.06; }
  75%      { scale: 1.05 0.97; }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-invert { display: none; }
}
html.has-invert-cursor,
html.has-invert-cursor body,
html.has-invert-cursor *,
html.has-invert-cursor a,
html.has-invert-cursor button,
html.has-invert-cursor input,
html.has-invert-cursor textarea,
html.has-invert-cursor select { cursor: none !important; }

/* ===== runhead extras ===== */
.runhead__brand {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.20em;
  white-space: nowrap;
}
.runhead__crumb-sep { color: var(--hair); flex: 0 0 auto; }
.runhead__crumb-mid { color: var(--muted); flex: 0 0 auto; white-space: nowrap; }
.runhead__crumb-end {
  color: var(--ink);
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 28ch;
}
.runhead__left { min-width: 0; flex: 1 1 auto; padding-right: clamp(16px, 2.4vw, 32px); }
.runhead__nav { flex: 0 0 auto; }
.runhead__lang {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  padding: 8px 6px;
  cursor: pointer;
  margin-left: clamp(2px, 1vw, 8px);
}
.runhead__lang span { color: var(--muted); transition: color 200ms ease; }
.runhead__lang .is-current { color: var(--ink); }
.runhead__lang:hover span { color: var(--ink); }
.runhead__menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  padding: 6px 0;
  cursor: pointer;
}
.runhead__menu span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 1100px) {
  .runhead__crumb-sep,
  .runhead__crumb-mid,
  .runhead__crumb-end { display: none; }
}
@media (max-width: 820px) {
  .runhead__menu { display: flex; }
  .runhead__nav {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hair);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .runhead__nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .runhead__nav a {
    padding: 14px var(--page-x);
    border-top: 1px solid var(--hair);
    font-size: 13px;
  }
  .runhead__lang { display: none; }
}

/* ===== reveal entry transitions (v2) ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== hero v2 ===== */
.hero__eyebrow { margin-bottom: clamp(20px, 3vh, 32px); letter-spacing: 0.22em; }
.hero__lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 38ch;
  margin: clamp(20px, 3vh, 36px) auto 0;
}
.hero__lede i { color: var(--ink); font-style: italic; }
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(28px, 4vh, 44px);
  flex-wrap: wrap;
}

/* ===== buttons v2 ===== */
.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ===== manifesto ===== */
.manifesto {
  position: relative;
  padding: clamp(80px, 14vh, 180px) var(--page-x);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__rule {
  width: 1px;
  height: 56px;
  background: var(--ink);
  margin: 0 auto 36px;
  opacity: 0.5;
}
.manifesto__lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 22ch;
  margin: 18px auto 36px;
}
.manifesto__body {
  font-family: var(--ui);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto 28px;
  color: var(--ink);
  text-wrap: pretty;
}
.manifesto__sign { letter-spacing: 0.16em; }

/* ===== grid wrap head v2 ===== */
.grid-wrap__head-title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-top: 6px;
  color: var(--ink);
}

/* ===== category strip on home ===== */
.cat-strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vh, 120px) var(--page-x);
}
.cat-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.cat-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.cat-strip__list li { border-bottom: 1px solid var(--hair); }
.cat-strip__list a {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.6vh, 36px) 4px;
  transition: background 200ms ease, padding-left 200ms ease;
}
.cat-strip__list a:hover { background: var(--linen); padding-left: 16px; }
.cat-strip__num { color: var(--muted); font-family: var(--display); font-style: italic; font-size: 14px; letter-spacing: 0.1em; }
.cat-strip__label { font-size: clamp(28px, 3.4vw, 48px); font-weight: 300; letter-spacing: -0.005em; }
.cat-strip__count { color: var(--muted); }

/* ===== page heads ===== */
.page-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vh, 120px) var(--page-x) clamp(40px, 6vh, 70px);
  border-bottom: 1px solid var(--hair);
}
.page-head__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 16px 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.page-head__lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 50ch;
}

/* ===== filter bar (work) ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px var(--page-x);
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 1px solid var(--hair);
}
.chip {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 14px;
  border: 1px solid var(--hair);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip__count {
  font-feature-settings: "tnum";
  opacity: 0.6;
  font-weight: 400;
}

/* ===== work list (rows) ===== */
.work-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--maxw);
}
.work-row {
  display: grid;
  grid-template-columns: 60px 220px 1fr auto;
  gap: clamp(16px, 2.4vw, 36px);
  align-items: center;
  padding: clamp(20px, 2.6vh, 36px) var(--page-x);
  border-bottom: 1px solid var(--hair);
  cursor: pointer;
  transition: background 200ms ease;
}
.work-row:hover { background: var(--linen); }
.work-row__num {
  font-size: 36px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.work-row__img {
  aspect-ratio: 4 / 3;
  background: var(--linen);
  overflow: hidden;
}
.work-row__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.work-row:hover .work-row__img img { transform: scale(1.04); }
.work-row__title {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.work-row__tagline {
  font-size: clamp(14px, 1.1vw, 17px);
  max-width: 48ch;
  margin-bottom: 10px;
  color: var(--ink);
}
.work-row__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.work-row__cats { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-pill {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 8px;
  border: 1px solid var(--hair);
  color: var(--muted);
}
.work-row__arrow { white-space: nowrap; }
@media (max-width: 800px) {
  .work-row { grid-template-columns: 1fr; gap: 12px; }
  .work-row__img { width: 100%; max-width: 360px; }
  .work-row__num { font-size: 24px; }
}

/* ===== categories grid (5 cards) ===== */
.cat-grid {
  list-style: none;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--page-x);
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
}
.cat-grid > li:first-child { grid-column: 1 / -1; }
.cat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 40px);
  align-items: center;
  cursor: pointer;
  border-top: 1px solid var(--hair);
  padding-top: clamp(20px, 2.6vh, 36px);
}
.cat-grid > li:first-child .cat-card {
  grid-template-columns: 7fr 5fr;
}
.cat-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--linen);
  overflow: hidden;
}
.cat-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.cat-card:hover .cat-card__img-wrap img { transform: scale(1.04); }
.cat-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-weight: 200;
  font-size: 28px;
  color: var(--paper);
  mix-blend-mode: difference;
  letter-spacing: 0.04em;
}
.cat-card__title {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 8px 0 14px;
}
.cat-card__tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  margin-bottom: 14px;
  max-width: 32ch;
}
.cat-card__note { max-width: 36ch; margin-bottom: 16px; }
@media (max-width: 800px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card, .cat-grid > li:first-child .cat-card { grid-template-columns: 1fr; }
}

/* ===== category detail head ===== */
.cat-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vh, 90px) var(--page-x) clamp(40px, 6vh, 70px);
  border-bottom: 1px solid var(--hair);
}
.cat-head__back { margin-bottom: 32px; }
.cat-head__title {
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.018em;
  margin: 12px 0 20px;
  text-wrap: balance;
}
.cat-head__tag { max-width: 36ch; margin-bottom: 18px; }
.cat-head__note { max-width: 50ch; color: var(--muted); }

/* ===== piece grid (used on category + project pieces) ===== */
.piece-grid {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 4vh, 60px) var(--page-x) clamp(60px, 8vh, 100px);
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px) clamp(16px, 2vw, 28px);
}
.piece { cursor: pointer; }
.piece__img {
  aspect-ratio: 4 / 5;
  background: var(--linen);
  overflow: hidden;
}
.piece__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.piece:hover .piece__img img { transform: scale(1.04); }
.piece__caption { padding: 12px 2px 0; }
.piece__num {
  font-family: var(--ui);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.piece__title {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 4px;
}
@media (max-width: 800px) { .piece-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .piece-grid { grid-template-columns: 1fr; } }

/* ===== category next ===== */
.cat-next {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--page-x) clamp(60px, 8vh, 100px);
  border-top: 1px solid var(--hair);
  text-align: center;
}
.cat-next__link {
  display: inline-block;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  transition: opacity 180ms ease;
}
.cat-next__link:hover { opacity: 0.6; }

/* ===== generic project pieces ===== */
.proj-generic .proj__hero { height: clamp(360px, 70vh, 720px); }
.proj__pieces {
  padding: clamp(40px, 6vh, 80px) 0 0;
}

/* ===== about page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--page-x);
}
.about-grid__fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-grid__fig figcaption { margin-top: 12px; }
.about-grid__copy p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  margin: 0 0 1.1em;
  max-width: 56ch;
}
.about-grid__copy .lede {
  font-size: clamp(22px, 2.2vw, 32px);
  margin-bottom: 28px;
  max-width: 28ch;
}
.about-grid__bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.about-grid__bio ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
}
.about-grid__bio li { margin-bottom: 4px; color: var(--ink); }
.about-grid__ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__bio { grid-template-columns: 1fr; }
}

/* ===== licensing ladder ===== */
.ladder {
  list-style: none;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--page-x);
  max-width: 1100px;
}
.ladder__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 3vw, 60px);
  padding: clamp(36px, 5vh, 60px) 0;
  border-bottom: 1px solid var(--hair);
}
.ladder__step:last-child { border-bottom: 0; }
.ladder__num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-style: italic;
}
.ladder__body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.005em;
  margin: 0 0 16px;
}
.ladder__body p {
  margin: 0 0 14px;
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
}
.ladder__body .btn { margin-top: 14px; }

@media (max-width: 700px) {
  .ladder__step { grid-template-columns: 1fr; gap: 8px; }
}

/* ===== testimonial ===== */
.testimonial {
  background: var(--linen);
  padding: clamp(60px, 10vh, 140px) var(--page-x);
  text-align: center;
  border-top: 1px solid var(--hair);
}
.testimonial .lede { max-width: 32ch; margin: 0 auto 18px; }

/* ===== contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--page-x);
}
.contact-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--hair);
}
.contact-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 14px;
  line-height: 1.5;
}
.contact-list a { border-bottom: 1px solid var(--hair); padding-bottom: 1px; }
.contact-list a:hover { border-color: var(--ink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--linen);
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid var(--hair);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-family: var(--ui);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; margin-top: 6px; }
.contact-form__sent { padding: 20px 0; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== footer ===== */
.footer {
  background: var(--linen);
  border-top: 1px solid var(--hair);
  padding: clamp(40px, 6vh, 80px) var(--page-x) 24px;
  margin-top: clamp(40px, 6vh, 80px);
}
.footer__lockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hair);
}
.footer__name {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.footer__tag {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
}
.footer__cols .label { margin-bottom: 12px; }
.footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.9;
}
.footer__cols a:hover { color: var(--ink); border-bottom: 1px solid var(--ink); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 800px) {
  .footer__lockup { grid-template-columns: 1fr; }
  .footer__tag { text-align: left; }
  .footer__cols { grid-template-columns: 1fr; gap: 20px; }
  .footer__base { flex-direction: column; gap: 8px; }
}
