/* ---------- Sheree Hartwell — Brand fonts ---------- */
@font-face {
  font-family: "Gistesy";
  src: url("/assets/fonts/Gistesy.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roxborough CF";
  src: url("/assets/fonts/RoxboroughCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-deep: #e9e9e7;
  --paper: #f5f5f4;
  --ink: #1a1a1a;
  --ink-soft: #2a2826;
  --muted: #7a6f60;
  --tan: #c9a87c;
  --tan-deep: #a67c4e;
  --hover-grey: #b4b4b4;
  --rule: rgba(26, 26, 26, 0.16);

  --font-display: "Roxborough CF", "Italiana", "Cormorant Garamond", serif;
  --font-signature: "Gistesy", "Allura", "Pinyon Script", cursive;
  --font-body: "Open Sans", system-ui, sans-serif;

  --tracking-caps: 0.28em;
  --tracking-caps-tight: 0.22em;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

/* ---------- Typography ---------- */
.caps {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
}
.caps-muted { color: var(--muted); }

.title-caps {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  line-height: 1;
}
.title-xxl { font-size: clamp(32px, 3.8vw, 60px); }
.title-xl  { font-size: clamp(22px, 2.6vw, 40px); }
.title-l   { font-size: clamp(18px, 2vw, 28px); }
.title-m   { font-size: clamp(14px, 1.3vw, 18px); }

.signature {
  font-family: var(--font-signature);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: var(--ink);
}

.body-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.body-caps {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(64px, 9vw, 140px) 0; position: relative; }
.divider { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: background 0.4s ease, border-color 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--rule);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-logo {
  font-family: var(--font-signature);
  font-size: 52px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.2,.8,.2,1), font-size 0.3s;
}
.nav.scrolled .nav-logo {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  font-size: 42px;
}
.nav-hamburger {
  /* Shifted in from the right edge so the icon sits against the plain wall
     of the hero photo instead of the busy area, where it disappears. */
  margin-right: clamp(12px, 5vw, 72px);
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s;
}
.nav-hamburger:hover { transform: scale(1.05); }
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
  text-align: center;
}
.menu-list a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
  display: inline-block;
  position: relative;
}
.menu-list a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -6px;
  height: 1px;
  background: var(--hover-grey);
  transition: left 0.3s, right 0.3s;
}
.menu-list a:hover { color: var(--hover-grey); }
.menu-list a:hover::after { left: 10%; right: 10%; }

.menu-signature {
  font-family: var(--font-signature);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--ink); }
.btn-tan { background: var(--tan); color: var(--ink); border-color: var(--tan); }
.btn-tan:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

.image-reveal { position: relative; overflow: hidden; }
.image-reveal img { transform: scale(1.06); transition: transform 1.6s cubic-bezier(.2,.8,.2,1); display: block; width: 100%; height: 100%; object-fit: cover; }
.image-reveal.in img { transform: scale(1); }
.image-reveal::after {
  content: ""; position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(.7,0,.2,1);
}
.image-reveal.in::after { transform: scaleX(0); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 8vw, 96px) var(--gutter) 32px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
/* .caps sets color: var(--ink), which is the same near-black as the footer's
   own background — inside the footer that renders the text invisible. The
   footer is a dark surface, so caps text here follows .footer's white. */
.footer .caps { color: var(--bg); }
.footer-min {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-min-left { display: flex; flex-direction: column; gap: 4px; }
.footer-socials {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-socials a {
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.footer-socials a:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--bg);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-title-split {
  position: absolute;
  top: 48%;
  left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  margin: 0;
  padding: 0 clamp(24px, 6vw, 100px) 0 clamp(80px, 16vw, 240px);
}
.hero-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 56px);
  /* 0.6em, not 0.24em, because the words used to be typed with real spaces
     between every letter — "S H E R E E". That read to search engines as
     fourteen separate letters rather than her name, so the spaces moved out of
     the content and into the styling. The negative right margin drops the
     trailing gap letter-spacing adds after the last letter, which would
     otherwise shift the words off centre. */
  letter-spacing: 0.6em;
  margin-right: -0.6em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.hero-scroll .caps { color: var(--ink) !important; opacity: 0.55; font-size: 10px; }
.hero-scroll-line {
  width: 1px; height: 40px; background: var(--ink); opacity: 0.35;
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.2; }
  50%      { transform: scaleY(1);   opacity: 0.5; }
}

/* Mobile/tablet: editorial name doesn't have room to flank Sheree — hide it,
   and promote the signature logo to always-visible top-left. */
@media (max-width: 820px) {
  .hero-title-split { display: none; }

  .nav-logo {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    font-size: 40px;
  }
  .nav.scrolled .nav-logo { font-size: 36px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(32px, 5vw, 80px);
}
.about-image { aspect-ratio: 4/5; background: var(--bg-deep); }
/* Desktop: photo bleeds to the viewport's left edge and stretches the full
   grid row so its bottom tracks the last bio paragraph. */
@media (min-width: 821px) {
  .about-image {
    aspect-ratio: auto;
    height: 100%;
    margin-left: calc(-1 * (max((100vw - var(--max)) / 2, 0px) + var(--gutter)));
  }
}
.about-prose { padding-top: 8px; }
.about-bio { margin-top: 18px; font-size: 13px; }
.about-bio:first-of-type { margin-top: 28px; }
/* No trailing margin: the photo's bottom edge aligns to the last line of bio text */
.about-bio:last-of-type { margin-bottom: 0; }
.about-email {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.2s;
}
.about-email:hover { opacity: 0.55; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties { background: var(--paper); }
.section.specialties { padding: clamp(44px, 6vw, 88px) 0; }
.specialties-head { text-align: center; margin-bottom: clamp(32px, 4.5vw, 56px); }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 20px 8px;
}
.specialty-icon-img {
  width: 88px; height: 88px;
  object-fit: contain;
}
.specialty-label {
  font-size: 13px;
  letter-spacing: 0.16em;
}

/* Mobile: 3 + 2 layout, second row centered under the first, compact icons */
@media (max-width: 820px) {
  .specialties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .specialty-item { flex: 0 0 30%; padding: 12px 4px; gap: 12px; }
  .specialty-icon-img { width: 56px; height: 56px; }
  .specialty-label { font-size: 11px; letter-spacing: 0.14em; }
}

/* ============================================================
   TESTIMONIALS (carousel)
   ============================================================ */
.testimonials { background: var(--bg); }
.t-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.t-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.t-subtitle {
  margin: 14px auto 0;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.t-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
}
.t-nav {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.t-nav:hover { background: var(--hover-grey); transform: scale(1.05); }
.t-nav svg { width: 18px; height: 18px; }

.t-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  min-width: 0;
}
.t-card {
  position: relative;
  padding: 72px 30px 36px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(30, 24, 16, 0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 360px;
  text-align: center;
  animation: fadeSlide 0.5s cubic-bezier(.2,.8,.2,1);
}
.t-card[data-variant="0"] { background: color-mix(in oklab, var(--bg-deep) 32%, var(--paper) 68%); }
.t-card[data-variant="1"] { background: var(--paper); }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-avatar {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 76px;
  border-radius: 999px;
  background: var(--hover-grey);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
}
.t-avatar:has(img) { background: transparent; }
.t-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 999px;
  /* Source PNGs carry a ~10% transparent margin around the photo circle;
     scaling crops it so the backing never shows as a grey ring */
  transform: scale(1.25);
}
.t-quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
  flex: 1;
}
.t-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(36px, 5vw, 56px);
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--rule);
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
  padding: 0;
}
.t-dot:hover { background: var(--muted); }
.t-dot.active { background: var(--ink); width: 24px; }

@media (max-width: 900px) {
  .t-cards { grid-template-columns: repeat(2, 1fr); }
  .t-cards > :nth-child(3) { display: none; }
}
@media (max-width: 640px) {
  .t-cards { grid-template-columns: 1fr; }
  .t-cards > :nth-child(2),
  .t-cards > :nth-child(3) { display: none; }
  .t-nav { width: 44px; height: 44px; }
}

/* ============================================================
   PRESS FEATURES
   ============================================================ */
.press-features { background: var(--paper); }
.pf-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.pf-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.pf-subtitle {
  margin: 14px auto 0;
  max-width: 580px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.pf-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(64px, 8vw, 96px);
}
.pf-spot-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pf-spot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(30, 24, 16, 0.08);
}
.pf-spot-image {
  aspect-ratio: 16/10;
  background: var(--bg-deep);
  overflow: hidden;
}
.pf-spot-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pf-spot-body { padding: 28px 28px 32px; }
.pf-spot-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.pf-spot-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}
/* Oversized arrow relative to its caps label — used on spot cards, article
   cards, and the contact submit button. */
.big-arrow {
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.12em;
  display: inline-block;
}

.pf-subhead { text-align: center; margin-bottom: 28px; }
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px);
}
.pf-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 24, 16, 0.07);
  border-color: transparent;
}
.pf-card-image {
  aspect-ratio: 5/4;
  background: var(--bg-deep);
  overflow: hidden;
}
.pf-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pf-card-title {
  margin: 24px 22px 12px;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex: 1;
}
.pf-card-meta {
  /* margin-top auto + flex:1 on the title pin every card's arrow row to the
     bottom edge so the arrows align across the Featured In grid. */
  margin: auto 22px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.pf-card:hover .pf-card-title { color: var(--ink); }

@media (max-width: 820px) {
  .pf-spotlight { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pf-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOCIALS
   ============================================================ */
.socials { background: var(--bg); }
.socials-head { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.socials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: 560px;
  margin: 0 auto;
}
.social-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.social-tile:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); }
.social-icon { width: 32px; height: 32px; color: currentColor; }
.social-icon svg { width: 100%; height: 100%; }
.social-label { font-size: 10px; letter-spacing: 0.18em; }

/* Mobile: two tiles up top, the odd tile (Spotify) centered beneath */
@media (max-width: 540px) {
  .socials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .social-tile { flex: 0 0 calc(50% - 6px); }
}

/* ============================================================
   CONTACT (with form)
   ============================================================ */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-image { aspect-ratio: 4/5; background: var(--bg-deep); }
.contact-text { padding-top: 12px; }
.contact-intro { margin-top: 22px; max-width: 480px; }
.contact-email {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.55; }
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  max-width: 480px;
}
.contact-field { display: grid; gap: 6px; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--rule);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--ink);
  background: var(--paper);
}
.contact-field .field-error {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #a13a1c;
}
.contact-submit { margin-top: 8px; justify-self: start; }
.contact-success {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--bg);
  border-left: 3px solid var(--tan-deep);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
