/* ==========================================================================
   Hazel & Hide — site stylesheet
   Palette: paper #F7F1EA · ink #2A2018 · terracotta #B66A4A · olive #5C6A3E · surface #FFFFFF
   Type:    Fraunces (serif headlines) · Inter (sans body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --paper: #F7F1EA;
  --ink: #2A2018;
  --ink-soft: #5b5045;
  --terracotta: #B66A4A;
  --terracotta-dark: #a05a3d;
  --olive: #5C6A3E;
  --olive-dark: #46532f;
  --surface: #FFFFFF;
  --line: rgba(42, 32, 24, 0.12);
  --line-strong: rgba(42, 32, 24, 0.24);
  --shadow-soft: 0 1px 2px rgba(42,32,24,.04), 0 8px 24px rgba(42,32,24,.06);
  --shadow-lift: 0 2px 4px rgba(42,32,24,.06), 0 20px 40px rgba(42,32,24,.10);
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 200ms ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .serif, .pull {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
p  { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.muted { color: var(--ink-soft); }
.italic { font-style: italic; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1480px; width: 100%; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), border-color var(--transition);
}
.site-header.is-overlay {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-overlay .nav__brand,
.site-header.is-overlay .nav__links a,
.site-header.is-overlay .nav__toggle { color: var(--paper); }
.site-header.is-overlay .nav__brand small { color: rgba(247, 241, 234, 0.7); }
.site-header.is-overlay .nav__links a:hover { color: rgba(247, 241, 234, 0.7); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.nav__brand small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--terracotta);
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links a { display: block; padding: 14px 0; font-size: 16px; color: var(--ink) !important; }
  .nav__links a[aria-current="page"] { color: var(--terracotta) !important; }
  .nav__toggle { display: inline-flex; align-items: center; gap: 6px; }
  .nav__brand small { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--terracotta-dark); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover { background: #000; }
.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}
.btn--text:hover { color: var(--terracotta); border-color: var(--terracotta); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--small { padding: 10px 18px; font-size: 13px; }

/* ---------- Hero (split cover) ---------- */
.hero {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  min-height: clamp(560px, 86vh, 880px);
}
.hero__media {
  position: relative;
  order: 2;
  min-height: 100%;
  background: var(--ink-soft);
}
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__inner {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(56px, 7vw, 112px);
  padding-inline-start: clamp(4px, 0.4vw, 12px);
  padding-inline-end: clamp(40px, 4.5vw, 80px);
  background: var(--paper);
}
.hero__inner .eyebrow { color: var(--ink-soft); }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 76px);
  color: var(--ink);
  max-width: 14ch;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 18px 0 28px;
  font-weight: 500;
  font-style: normal;
}
.hero p.lede {
  max-width: 38ch;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__inner { order: 1; padding: 48px 24px 40px; }
  .hero__media { order: 2; aspect-ratio: 4 / 3; }
  .hero h1 { max-width: 16ch; }
}

/* ---------- Section primitives ---------- */
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section--paper  { background: var(--paper); }
.section--surface{ background: var(--surface); }
.section--ink    { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section__head h2 { margin: 8px 0 0; }
.section__head a { font-size: 14px; text-decoration: none; }
.section__head a:hover { color: var(--terracotta); }

/* ---------- Lookbook strip (homepage) ---------- */
.strip3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.strip3 a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  aspect-ratio: 4 / 5;
  background: #e7ddd0;
}
.strip3 img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.strip3 a:hover img { transform: scale(1.04); }
.strip3 figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
@media (max-width: 720px) {
  .strip3 { grid-template-columns: 1fr; }
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 24px 14px; } }
@media (max-width: 420px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ede2d2;
  margin-bottom: 14px;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity var(--transition);
}
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__category {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 4px;
}
.product-card__price {
  font-size: 14px;
  color: var(--ink-soft);
  font-feature-settings: 'tnum';
}
.product-card__view {
  display: inline-block;
  font-size: 13px;
  margin-top: 8px;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ---------- Filter chips ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.filters button {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- Visit panel ---------- */
.visit {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: var(--shadow-soft);
}
.visit h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 8px 0 16px; }
.visit__address { font-family: var(--serif); font-size: 22px; line-height: 1.3; margin: 0 0 24px; font-style: italic; }
.visit__hours { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; margin: 0 0 28px; }
.visit__hours dt { font-weight: 500; }
.visit__hours dd { margin: 0; color: var(--ink-soft); font-feature-settings: 'tnum'; }
.visit__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}
.visit__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .visit { grid-template-columns: 1fr; padding: 28px; }
  .visit__photo { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Lookbook page (magazine spread) ----------
   Each look is a full-bleed "spread": image on one side, story copy on the
   other. Spreads alternate image-left / image-right to mimic turning a
   magazine page. Backgrounds also alternate (paper / surface) to give a
   page-break rhythm down the page. */
.lookbook {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: clamp(8px, 1.5vw, 16px);
}

.spread {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}
.spread:nth-child(odd)  { background: var(--paper);   }
.spread:nth-child(even) { background: var(--surface); }
.spread + .spread { border-top: 1px solid var(--line); }

.spread--reverse .spread__media { order: 2; }
.spread--reverse .spread__copy  { order: 1; }

/* Folio number — "01 / 06" in the top corner of each spread */
.spread__folio {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left:  var(--gutter);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-feature-settings: 'tnum';
}
.spread--reverse .spread__folio { left: auto; right: var(--gutter); }

.spread__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #2a2620;
  overflow: hidden;
  border-radius: var(--radius);
}
.spread__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms ease;
}
.spread:hover .spread__media img { transform: scale(1.02); }

.spread__copy {
  max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spread--reverse .spread__copy { margin-left: auto; }

.spread__num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.spread__num::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-soft);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.spread__head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.spread__mood {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
  color: var(--olive);
  margin: 0;
  padding: 0;
  border: 0;
}

.spread__note {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.spread__note-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 8px;
}

.spread__pieces {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.spread__pieces span { white-space: nowrap; }
.spread__pieces span + span::before {
  content: '·';
  margin-right: 14px;
  margin-left: -8px;
  color: var(--line-strong);
}

.spread__cta {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.spread__cta:hover { color: var(--terracotta); border-color: var(--terracotta); }

@media (max-width: 860px) {
  .spread { grid-template-columns: 1fr; gap: 32px; padding-block: 56px; }
  .spread--reverse .spread__media { order: 0; }
  .spread--reverse .spread__copy  { order: 0; margin-left: 0; }
  .spread__copy { max-width: none; }
  .spread__folio { top: 18px; }
  .spread--reverse .spread__folio { right: var(--gutter); left: auto; }
  .spread__media { aspect-ratio: 4 / 5; }
}

/* ---------- Product detail ---------- */
.product {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(32px, 5vw, 64px);
  align-items: start;
}
.product__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.product__gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #ede2d2;
}
.product__gallery .lifestyle {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  height: 100%;
}
.product__info { position: sticky; top: 100px; }
.product__cat {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 8px;
}
.product__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.product__price {
  font-size: 18px;
  color: var(--ink);
  font-feature-settings: 'tnum';
  margin: 0 0 24px;
}
.product__lede { font-size: 16px; line-height: 1.65; margin-bottom: 24px; }
.product__details {
  border-top: 1px solid var(--line);
  margin: 0 0 24px;
}
.product__details details { border-bottom: 1px solid var(--line); }
.product__details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.product__details summary::-webkit-details-marker { display: none; }
.product__details summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  transition: transform var(--transition);
}
.product__details details[open] summary::after { content: '−'; }
.product__details .body {
  padding: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.buy-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 8px;
  box-shadow: var(--shadow-soft);
}
.buy-panel p { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; }
@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; }
  .product__info { position: static; }
  .product__gallery .lifestyle { aspect-ratio: 4 / 5; }
}

/* ---------- About page ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding-block: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ede2d2;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about h1 {
  font-size: clamp(36px, 4.4vw, 52px);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.about p { font-size: 17px; line-height: 1.7; }
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  color: var(--olive);
  border-top: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
  padding: 28px 0;
  margin: 32px 0;
}
.pull--ink { color: var(--ink); border-color: var(--line-strong); }
.pull cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
}
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ---------- Visit page ---------- */
.visit-page {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 88px);
  padding-block: clamp(40px, 6vw, 80px);
  align-items: start;
}
.visit-page h1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 52px);
  margin-bottom: 24px;
}
.visit-page h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 32px 0 8px;
  font-weight: 500;
}
.visit-page .hours { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; margin: 0 0 16px; }
.visit-page .hours dt { font-weight: 500; }
.visit-page .hours dd { margin: 0; color: var(--ink-soft); font-feature-settings: 'tnum'; }
.visit-page .closed { color: var(--ink-soft); font-style: italic; }
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: #d8cfc1;
}
#map { width: 100%; height: 100%; }
@media (max-width: 820px) { .visit-page { grid-template-columns: 1fr; } }

/* ---------- Events ---------- */
.event-list { display: flex; flex-direction: column; gap: 0; }
.event {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event__date {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.event__date .day {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--terracotta);
  font-style: normal;
  font-weight: 400;
}
.event__date .mo {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
}
.event h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 0 0 8px;
}
.event p { font-size: 15px; color: var(--ink-soft); margin: 0; max-width: 56ch; }
.event__time {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .event { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .event__date .day { font-size: 36px; }
}

/* ---------- Staff picks ---------- */
.picker {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-block: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
}
.picker:first-of-type { border-top: 0; }
.picker__person { position: sticky; top: 100px; align-self: start; }
.picker__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ede2d2;
}
.picker__avatar img { width: 100%; height: 100%; object-fit: cover; }
.picker__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 4px;
  line-height: 1.1;
}
.picker__role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 16px;
}
.picker__note { font-size: 15px; color: var(--ink-soft); }
.picker__picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .picker { grid-template-columns: 1fr; }
  .picker__person { position: static; display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; }
  .picker__avatar { margin-bottom: 0; }
  .picker__picks { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1080px) {
  .picker__picks { grid-template-columns: 1fr 1fr; }
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  padding-block: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact h1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 52px);
  margin-bottom: 20px;
}
.contact__lede { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; }
.contact__email a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.contact__email a:hover { color: var(--terracotta); border-color: var(--terracotta); }
.contact__details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.contact__details strong { display: block; font-weight: 500; margin-bottom: 4px; }

.form { background: var(--surface); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req { color: var(--terracotta); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(42,32,24,0.08);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__status { margin-top: 12px; font-size: 14px; }
.form__status--ok    { color: var(--olive); }
.form__status--error { color: var(--terracotta-dark); }
@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
  .form { padding: 24px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
  margin-top: clamp(56px, 8vw, 112px);
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--terracotta); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 241, 234, 0.15);
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 241, 234, 0.6);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer__brand { font-family: var(--serif); font-size: 28px; margin-bottom: 16px; }
.footer__tag { font-size: 14px; color: rgba(247, 241, 234, 0.7); max-width: 32ch; line-height: 1.6; }
.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(247, 241, 234, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.no-margin { margin: 0; }
.hide-mobile { }
@media (max-width: 720px) { .hide-mobile { display: none; } }

/* ---------- Page header (small) ---------- */
.page-head {
  padding: clamp(48px, 7vw, 96px) 0 clamp(24px, 3vw, 48px);
}
.page-head .eyebrow { display: block; margin-bottom: 12px; }
.page-head h1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 16ch;
}
.page-head p {
  max-width: 56ch;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.page-head--center { text-align: center; }
.page-head--center h1 { margin-inline: auto; }
.page-head--center p { margin-inline: auto; }

/* ---------- A11y / focus ---------- */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
