/* ==========================================================================
   GRAZING HOUR — chef-driven grazing & event catering, Los Angeles
   --------------------------------------------------------------------------
   Design tokens live in :root. Change colors / fonts / spacing here and the
   whole site follows.
   ========================================================================== */

:root {
  /* Color */
  --paper:      #FBF9F4;   /* warm white — page background */
  --paper-deep: #F3EEE3;   /* alternate section background */
  --ink:        #211D16;   /* near-black warm ink */
  --ink-soft:   #5C5546;   /* secondary text */
  --accent:     #BC4A20;   /* persimmon — CTAs, accents */
  --accent-deep: #A03D18;  /* hover state for accent */
  --olive:      #57603C;   /* deep olive — secondary accent */
  --line:       rgba(33, 29, 22, 0.16);
  --ink-on-photo: #FCFAF5;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --text-xs: 0.72rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem);
  --text-2xl: clamp(2.2rem, 1.6rem + 3vw, 4.2rem);
  --text-hero: clamp(2.75rem, 1.9rem + 4.6vw, 6rem);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 9rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Fonts (self-hosted variable fonts — no external requests)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-full-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-full-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* The hidden attribute must win over any display rule set below. */
[hidden] { display: none !important; }

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

button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--paper); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--ink-on-photo); }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.1rem;
}
.section--ink .eyebrow { color: #E8A487; }

.display {
  font-family: var(--font-display);
  font-weight: 480;
  font-variation-settings: "opsz" 72;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h1.display { font-size: var(--text-hero); }
h2.display { font-size: var(--text-2xl); }
h3.display { font-size: var(--text-xl); }

.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38em;
}
.section--ink .lede { color: rgba(252, 250, 245, 0.78); }

.measure { max-width: 62ch; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: #A03D18; }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #3A342A; }

.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--ghost-light { border-color: rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  list-style: none;
}
.nav__links a:not(.btn) {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:not(.btn):hover { border-color: var(--accent); color: var(--accent); }
.nav__links a[aria-current="page"] { border-color: var(--ink); }

.nav__links .btn { padding: 0.65rem 1.4rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 2.6rem;
  height: 2.6rem;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav__links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links li:first-child { border-top: 0; }
  .nav__links a:not(.btn) { display: block; padding: 1rem 0; font-size: 0.85rem; }
  .nav__links li:last-child { border-top: 0; padding-top: 1rem; }
  .nav__links .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--ink-on-photo);
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(18, 15, 11, 0.5), rgba(18, 15, 11, 0) 65%),
    linear-gradient(to top, rgba(18, 15, 11, 0.78) 0%, rgba(18, 15, 11, 0.25) 55%, rgba(18, 15, 11, 0.35) 100%);
}
.hero__content {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero__content .display { max-width: 12em; }
.hero__content .lede { color: rgba(252, 250, 245, 0.85); margin-block: 1.4rem 2.2rem; }
.hero .eyebrow { color: #EFB79E; }

.hero--page { min-height: 52vh; }
.hero--page.hero--short { min-height: 40vh; }

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 0.85rem;
  background: var(--paper);
}
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--ink-soft);
}
.ticker span::after {
  content: "·";
  color: var(--accent);
  margin-left: 3rem;
  font-style: normal;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Split layout (text + image)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split--rev > :first-child { order: 2; }
.split__media img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
}
/* Portrait slot: keeps a tall crop no matter the source photo's shape.
   Used for the chef photo on the About page. */
.split__media--tall img {
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: none;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
}

/* --------------------------------------------------------------------------
   Feature band (full-bleed photo with text held to one side)
   -------------------------------------------------------------------------- */
.feature-band {
  position: relative;
  isolation: isolate;
  color: var(--ink-on-photo);
  min-height: min(78vh, 700px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.feature-band__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to left,
    rgba(18, 15, 11, 0.9) 0%,
    rgba(18, 15, 11, 0.82) 34%,
    rgba(18, 15, 11, 0.42) 62%,
    rgba(18, 15, 11, 0.34) 100%
  );
}
.feature-band__inner { display: flex; justify-content: flex-end; }
.feature-band__content { max-width: 34rem; }
.feature-band .lede { color: rgba(252, 250, 245, 0.82); margin-top: 1.4rem; }
.feature-band .eyebrow { color: #E8A487; }

/* On narrow screens the photo crops hard, so flatten the scrim and go full width */
@media (max-width: 860px) {
  .feature-band::after {
    background: linear-gradient(
      to top,
      rgba(18, 15, 11, 0.88) 0%,
      rgba(18, 15, 11, 0.74) 60%,
      rgba(18, 15, 11, 0.66) 100%
    );
  }
  .feature-band__inner { justify-content: flex-start; }
  .feature-band__content { max-width: none; }
}

/* --------------------------------------------------------------------------
   Offering cards
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.cards--two { grid-template-columns: repeat(2, 1fr); }
.cards--two .card { aspect-ratio: 4 / 3.4; }
@media (max-width: 900px) { .cards, .cards--two { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--ink-on-photo);
  isolation: isolate;
}
.card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(18, 15, 11, 0.72), rgba(18, 15, 11, 0.05) 60%);
  transition: background 0.4s var(--ease);
}
.card:hover img { transform: scale(1.045); }
.card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.3rem, 2.5vw, 2rem);
}
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.card__body p { font-size: var(--text-sm); color: rgba(252, 250, 245, 0.82); max-width: 26em; }
.card__cue {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Editorial gallery grid
   -------------------------------------------------------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.mosaic figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.mosaic figure:hover img { transform: scale(1.035); }
.m-7 { grid-column: span 7; aspect-ratio: 4 / 3; }
.m-5 { grid-column: span 5; aspect-ratio: 4 / 4.2; }
.m-4 { grid-column: span 4; aspect-ratio: 1 / 1.15; }
.m-6 { grid-column: span 6; aspect-ratio: 4 / 3; }
.m-8 { grid-column: span 8; aspect-ratio: 16 / 9; }
@media (max-width: 720px) {
  .m-7, .m-5, .m-4, .m-6, .m-8 { grid-column: span 12; aspect-ratio: 4 / 3; }
}

/* --------------------------------------------------------------------------
   Event list
   -------------------------------------------------------------------------- */
.event-list { list-style: none; border-top: 1px solid var(--line); }
.event-list li { border-bottom: 1px solid var(--line); }
.event-list a,
.event-list .event-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.1rem, 2.4vw, 1.7rem) 0;
  transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
}
.event-list a:hover { padding-left: 1rem; color: var(--accent); }
.event-list .event-row__name {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.3rem);
  line-height: 1.1;
}
.event-list .event-row__note {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  text-align: right;
  max-width: 22em;
  /* Keeps a lone word from dropping to its own line. Notes are written to
     fit two lines at this width, so keep them under about 90 characters. */
  text-wrap: pretty;
}
@media (max-width: 640px) {
  .event-list a, .event-list .event-row { flex-direction: column; gap: 0.3rem; }
  .event-list .event-row__note { text-align: left; }
}

/* --------------------------------------------------------------------------
   Menu / pricing
   -------------------------------------------------------------------------- */
.menu-block { border-top: 2px solid var(--ink); padding-top: 1.6rem; }
.menu-block + .menu-block { margin-top: calc(var(--section) * 0.55); }
.menu-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-bottom: 2rem;
}
.menu-block__head p { color: var(--ink-soft); font-size: var(--text-sm); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.price-card--feature { background: var(--ink); color: var(--ink-on-photo); border-color: var(--ink); }
.price-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-card--feature .price-card__label { color: #E8A487; }
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem);
  line-height: 1.05;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}
.price-card__price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.price-card--feature .price-card__price small { color: rgba(252,250,245,0.65); }
.price-card__min { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.price-card--feature .price-card__min { color: rgba(252,250,245,0.65); }
.price-card p.desc { color: var(--ink-soft); font-size: var(--text-sm); line-height: 1.65; }
.price-card--feature p.desc { color: rgba(252,250,245,0.8); }
.price-card ul {
  list-style: none;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  columns: 2;
  gap: 1.5rem;
}
.price-card--feature ul { color: rgba(252,250,245,0.8); }
.price-card ul li { padding: 0.28rem 0; break-inside: avoid; }
.price-card ul li::before { content: "— "; color: var(--accent); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 560px) { .price-card ul { columns: 1; } }

/* Simple price table (boards, individual, add-ons) */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 1.05rem 0.5rem 1.05rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.price-table th[scope="col"] {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.6rem;
}
.price-table td.name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.7rem);
  font-weight: 480;
  width: 40%;
}
.price-table td.price {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
  white-space: nowrap;
}
.price-table td.meta { color: var(--ink-soft); font-size: var(--text-sm); }
@media (max-width: 640px) {
  .price-table td.meta { display: none; }
  .price-table td.name { width: auto; }
}

/* --------------------------------------------------------------------------
   Gallery page
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.9s var(--ease);
}
.gallery-item--wide img { aspect-ratio: 3 / 2; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(18, 15, 11, 0.55);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }
.gallery-item.is-hidden { display: none; }

/* --------------------------------------------------------------------------
   Inquiry form
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.6rem;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field .hint { font-size: var(--text-xs); letter-spacing: 0.02em; text-transform: none; color: var(--ink-soft); margin-top: 0.4rem; }

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 0.4rem;
}

.form-note {
  margin-top: 1.4rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
}

.form-success {
  border: 1px solid var(--olive);
  background: color-mix(in srgb, var(--olive) 8%, #fff);
  border-radius: var(--radius);
  padding: 2rem;
  display: none;
}
.form-success.is-visible { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.4rem; }

.form-error {
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, #fff);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.6rem;
  font-size: var(--text-sm);
  display: none;
}
.form-error.is-visible { display: block; }
.form-error a { text-decoration: underline; color: var(--accent); }

/* Spam honeypot: hidden from people, visible to bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  color: var(--ink-on-photo);
  isolation: isolate;
  padding-block: clamp(5rem, 12vw, 10rem);
  text-align: center;
}
.cta-band__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 15, 11, 0.62);
}
.cta-band .display { max-width: 18em; margin-inline: auto; }
.cta-band .btn { margin-top: 2.2rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(252, 250, 245, 0.75);
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
  font-size: var(--text-sm);
}
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(252, 250, 245, 0.15);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; font-size: 1.6rem; }
.footer-brand p { max-width: 30em; margin-top: 0.8rem; }
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 250, 245, 0.5);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 0.25rem 0; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(252, 250, 245, 0.5);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   Page intro headers (non-photo)
   -------------------------------------------------------------------------- */
.page-head { padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-head .display { max-width: 16em; }
.page-head .lede { margin-top: 1.4rem; }

/* Stat / fact strip */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.2rem;
}
.fact-strip h4 {
  font-family: var(--font-display);
  font-weight: 520;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.fact-strip p { font-size: var(--text-sm); color: var(--ink-soft); }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1.4rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }
