/* ============================================================
   blosam stylesheet
   Warm editorial minimalism: linen, charcoal, hairlines,
   oversized serif display, quiet terracotta accents.
============================================================ */
:root {
  --cream:      #faf7f0;
  --linen:      #f2ecdf;
  --sand:       #e6dcc8;
  --charcoal:   #434341;
  --ink-soft:   #6f6c65;
  /* #ab5938, one step darker than the original #b45f3d: that value sat
     at 4.23:1 on cream and missed AA for the small italic accents. */
  --terracotta: #ab5938;
  --white:      #fffdf9;
  --hairline:   rgba(67, 67, 65, .18);

  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "Karla", -apple-system, sans-serif;

  --pad: clamp(1.25rem, 4.5vw, 4.5rem);
  --maxw: 1440px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

/* subtle linen grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.26 0 0 0 0 0.26 0 0 0 0 0.25 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); letter-spacing: -0.01em; }

a { color: inherit; }

/* micro-label */
.ed-num {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}
.ed-num-light { color: var(--sand); }

/* editorial text link */
.text-link {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: .25rem;
  transition: color .25s ease, border-color .25s ease;
}
.text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- announcement ---------- */
.announce {
  background: var(--charcoal);
  text-align: center;
  padding: .5rem 1rem;
  position: relative;
  z-index: 5;
}
.announce a {
  color: var(--cream);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.announce a:hover { color: var(--sand); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: .85rem var(--pad);
  border-bottom: 1px solid var(--hairline);
}
/* The tinted blur lives on a pseudo-element rather than on .site-header
   itself: backdrop-filter on an ancestor would make the header the
   containing block for the fixed-position mobile menu, trapping the
   panel inside the header's own box instead of filling the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: -1px; left: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand-logo { height: 50px; width: auto; }
.site-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.site-nav a:hover { color: var(--terracotta); }
.header-shop {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: .15rem;
  transition: color .25s ease, border-color .25s ease;
}
.header-shop:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* keep the mark above the mobile menu overlay */
.brand { position: relative; z-index: 70; display: block; }

/* the Shop link that lives inside the mobile menu (desktop uses .header-shop) */
.nav-shop { display: none; }

/* ---------- hamburger ---------- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 70;
  background: none;
  border: none;
  cursor: pointer;
  padding: .6rem .35rem;
  margin-right: -.35rem;
  line-height: 0;
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 26px; height: 1.5px;
  background: var(--charcoal);
  transition: background .2s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px; height: 1.5px;
  background: var(--charcoal);
  transition: transform .3s ease;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after  { top: 7px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(7px)  rotate(45deg); }
.nav-open .nav-toggle-bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding-top: 0; }

/* Full-bleed film hero: the wildflower footage fills the stage and a
   cream wash keeps the headline zone near-solid, thinning rightward so
   the film shows through. The 406px source upscales soft at this size;
   under the veil and grain that reads as a wash, not a defect. */
.hero-stage {
  position: relative;
  min-height: clamp(30rem, 82vh, 50rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  margin: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(.72) contrast(.94) brightness(1.04) sepia(.08);
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--cream) 96%, transparent) 0%,
    color-mix(in srgb, var(--cream) 88%, transparent) 34%,
    color-mix(in srgb, var(--cream) 52%, transparent) 62%,
    color-mix(in srgb, var(--cream) 24%, transparent) 100%);
  pointer-events: none;
}
.hero-top {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero-kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(3.2rem, 9.5vw, 8.5rem);
  letter-spacing: -0.02em;
  line-height: .98;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero-meta {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  padding: 1.4rem var(--pad) 0;
  border-top: 1px solid var(--hairline);
}
.hero-meta span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta .text-link { margin-left: auto; }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: .85rem 0;
  background: var(--linen);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 36s linear infinite;
  align-items: center;
  white-space: nowrap;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ticker-track i { font-style: normal; color: var(--terracotta); font-size: .8rem; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- editorial sections ---------- */
.ed-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) var(--pad);
}
.ed-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ed-lede { color: var(--ink-soft); margin-top: 1.2rem; max-width: 38rem; }
.ed-foot { margin-top: 3rem; }

/* ---------- rail (horizontal gallery) ---------- */
.rail {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  margin: 0 calc(-1 * var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail-item {
  flex: 0 0 auto;
  width: clamp(240px, 27vw, 380px);
  scroll-snap-align: start;
  text-decoration: none;
}
.rail-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity .4s ease;
}
.rail-item:hover img { opacity: .88; }
.rail-item figure {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--hairline);
  margin-top: .9rem;
}
.rail-item figure em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.rail-item figure span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.rail-hint {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .4rem;
}

/* ---------- morse code necklace ---------- */
.morse { background: var(--linen); max-width: none; }
.morse-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;   /* headline tops align with the card, no floating */
}
.morse-text { padding-top: .6rem; }
.morse-text h2 { margin-bottom: 1.2rem; }
.morse-text .ed-lede { margin-bottom: 0; }
.morse-demo {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
}
.morse-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .6rem;
}
.morse-input {
  width: 100%;
  padding: .75rem .9rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 0;
  outline: none;
}
.morse-input:focus { border-color: var(--charcoal); }
.morse-len { display: flex; gap: .5rem; margin-top: .7rem; }
.morse-len button {
  flex: 1 1 0;
  padding: .55rem .8rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
  border-radius: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.morse-len button:hover { border-color: var(--charcoal); color: var(--charcoal); }
.morse-len button.is-on { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.morse-strand {
  display: flex; justify-content: center; align-items: center;
  margin-top: 1.2rem;
  padding: 1rem .5rem 1.1rem;
  border-top: 1px solid var(--hairline);
  min-height: 3.4rem;
  overflow: hidden;            /* never wraps: the track scales to fit */
}
.morse-track { display: inline-flex; align-items: center; gap: .9rem; white-space: nowrap; transform-origin: center center; }
.morse-letter { display: inline-flex; align-items: center; gap: .3rem; }
.morse-bead { display: inline-block; border-radius: 999px; background: #c9a24a; box-shadow: inset 0 -1px 1px rgba(0,0,0,.16), 0 1px 1px rgba(0,0,0,.12); }
.morse-bead.dot { width: 12px; height: 12px; }
.morse-bead.dash { width: 26px; height: 5px; }
.morse-space { display: inline-block; width: 1.4rem; }
.morse-price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: .9rem;
  border-top: 1px solid var(--hairline);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}
.morse-price b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: 0; text-transform: none; color: var(--charcoal); }
.morse-cta {
  display: block;
  margin-top: 1.1rem;
  padding: .95rem 1.2rem;
  text-align: center;
  background: var(--charcoal);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.morse-cta:hover { background: var(--terracotta); color: var(--cream); }
.morse-carry {
  margin-top: .7rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- creed ---------- */
.creed {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.creed-col {
  border-top: 1px solid var(--charcoal);
  padding-top: 1.4rem;
}
.creed-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: .8rem;
}
.creed-col h3 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.creed-col p:last-child { color: var(--ink-soft); font-size: .95rem; }

/* ---------- story ---------- */
.story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: start;
}
.story-img { max-width: 480px; }
.story-img img { width: 100%; }
.story-img figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
  padding-top: .8rem;
  border-top: 1px solid var(--hairline);
  margin-top: .9rem;
}
.story-text { padding-top: clamp(0rem, 3vw, 2.5rem); }
.story-text h2 { margin-bottom: 1.6rem; max-width: 16ch; }
.story-text p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 34rem; }
.story-text .text-link { display: inline-block; margin-top: .8rem; }

/* ---------- drops ---------- */
.drops {
  background: var(--charcoal);
  color: var(--cream);
}
.drops-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
/* height:auto lets the width/height attributes act as an aspect-ratio hint
   (reserving space, no layout shift) instead of a literal 1280px height */
.drops-media video { width: 100%; height: auto; display: block; }
.drops-text { max-width: 36rem; }
.drops-text h2 { color: var(--white); margin-bottom: 1.4rem; }
.drops-text > p { color: var(--sand); }
.drop-form {
  display: flex;
  gap: .7rem;
  margin: 2.2rem 0 1.2rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.drop-form input[type="email"] {
  flex: 1 1 240px;
  padding: .75rem .9rem;
  border: 1px solid color-mix(in srgb, var(--cream) 55%, transparent);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease;
}
.drop-form input[type="email"]::placeholder { color: color-mix(in srgb, var(--cream) 55%, transparent); }
.drop-form input[type="email"]:focus { border-color: var(--cream); }
.drop-form button {
  background: var(--cream);
  border: 1px solid var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .78rem 1.4rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.drop-form button:hover { background: var(--sand); border-color: var(--sand); }
.hidden-field { display: none; }
.drops-social { font-size: .9rem; color: var(--sand); }
.drops-social a { color: var(--cream); font-weight: 700; text-decoration-color: var(--terracotta); }
.drops-social a:hover { color: var(--sand); }

/* ---------- markets table ---------- */
.mkt-table { border-bottom: 1px solid var(--hairline); }
.mkt-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.4fr) minmax(0, 1fr) 130px;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline);
  transition: background .25s ease;
}
.mkt-row:hover { background: color-mix(in srgb, var(--linen) 60%, transparent); }
.mkt-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
}
.mkt-name { font-family: var(--serif); font-size: 1.25rem; }
.mkt-name a {
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.mkt-name a:hover { color: var(--terracotta); }
.mkt-place { color: var(--ink-soft); font-size: .95rem; }
.mkt-time {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}
.mkt-note { color: var(--ink-soft); font-size: .95rem; margin-top: 2rem; }
/* [hidden] alone loses to .mkt-row's display:grid, so make it explicit */
.mkt-row[hidden], .mkt-table[hidden], .mkt-empty[hidden] { display: none; }
.mkt-empty {
  color: var(--ink-soft);
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.mkt-empty a { font-weight: 700; text-decoration-color: var(--terracotta); }
.mkt-note a { font-weight: 700; text-decoration-color: var(--terracotta); }

/* ---------- parties & custom ---------- */
.svc-party {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 68rem;
  border-top: 1px solid var(--charcoal);
  padding-top: 1.6rem;
  align-items: start;
}
.svc-party-text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: .9rem;
}
.svc-party-text p {
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 34rem;
  margin-bottom: 1rem;
}
.svc-party-text p.svc-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--charcoal);
  margin: 1.3rem 0 1.5rem;
}
.svc-area {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.svc-occasions {
  list-style: none;
  border-bottom: 1px solid var(--hairline);
  margin-top: .3rem;
}
.svc-occasions li {
  border-top: 1px solid var(--hairline);
  padding: .6rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.svc-card {
  border-top: 1px solid var(--charcoal);
  padding-top: 1.4rem;
}
.svc-custom { max-width: 34rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.svc-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .7rem;
}
.svc-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 30rem;
  margin-bottom: 1.4rem;
}

/* ---------- contact ---------- */
.contact { background: var(--linen); max-width: none; }
.contact > * { max-width: var(--maxw); margin-inline: auto; }
.contact-form {
  max-width: 38rem;
  /* the .contact > * recentering would float the form away from the
     left-aligned heading; pin it back to the text column */
  margin-inline: 0;
  display: grid;
  gap: 1.4rem;
}
.cf-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.cf-field { display: grid; gap: .45rem; }
.cf-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: .7rem .85rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 0;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--charcoal);
  transition: border-color .2s ease;
}
.cf-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23434341' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; }
.cf-field textarea { resize: vertical; min-height: 7rem; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--charcoal); outline: none; }
.cf-field input:focus-visible,
.cf-field select:focus-visible,
.cf-field textarea:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.contact-form button {
  justify-self: start;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: .8rem 1.6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.contact-form button:hover { background: var(--terracotta); }

/* ---------- markets: schedule + booth photo ---------- */
.mkt-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.mkt-booth { margin: 0; max-width: 400px; justify-self: end; }
.mkt-booth img { width: 100%; height: auto; }
.mkt-booth figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
  padding-top: .8rem;
  border-top: 1px solid var(--hairline);
  margin-top: .9rem;
}

/* ---------- faq ---------- */
.faq .ed-head { margin-bottom: 1rem; }
.faq-list { max-width: 52rem; border-bottom: 1px solid var(--hairline); }
.faq-list details { border-top: 1px solid var(--hairline); }
.faq-list summary {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  transition: color .25s ease;
}
.faq-list summary:hover { color: var(--terracotta); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform .3s ease;
  flex: 0 0 auto;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  color: var(--ink-soft);
  padding-bottom: 1.6rem;
  max-width: 44rem;
}
.faq-list details a { font-weight: 700; text-decoration-color: var(--terracotta); }

/* ---------- follow ---------- */
.follow {
  border-top: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
}
.tulip-divider {
  width: 46px;
  color: var(--terracotta);
  margin: 0 auto 1.6rem;
  display: block;
}
.follow h2 { margin-bottom: .8rem; }
.follow p { color: var(--ink-soft); }
.follow-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.follow-links a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: .3rem;
  transition: color .25s ease, border-color .25s ease;
}
.follow-links a:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 3rem var(--pad) 2.2rem;
  background: var(--charcoal);
  color: var(--cream);
}
.site-footer .footer-logo { filter: invert(1); }
.footer-logo { height: 66px; width: auto; margin: 0 auto 1.6rem; }
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.site-footer nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer nav a:hover { color: var(--sand); }
.site-footer p { font-size: .78rem; letter-spacing: .06em; color: var(--cream); opacity: .65; }
.footer-credit { margin-top: .5rem; font-size: .7rem; }
.footer-credit a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-underline-offset: 3px;
}
.footer-credit a:hover { color: var(--sand); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- a11y helpers ---------- */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
/* the email field sits on charcoal, so it needs a light ring */
.drop-form input[type="email"]:focus-visible,
.drop-form button:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 100;
  transform: translate(-50%, -130%);
  background: var(--charcoal);
  color: var(--cream);
  padding: .7rem 1.4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- thanks page ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: .25rem;
  transition: color .25s ease, border-color .25s ease;
}
.btn:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  /* full-screen menu panel */
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 5rem var(--pad) var(--pad);
    background: var(--cream);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    overflow-y: auto;
  }
  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav a {
    width: 100%;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.6rem, 7.5vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    padding: .75rem 0;
    border-bottom: 1px solid var(--hairline);
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-shop {
    display: block;
    color: var(--terracotta);
    padding-top: 1.5rem;
  }
  html.nav-open { overflow: hidden; }

  .nav-toggle { display: block; margin-left: 1.1rem; }
  .header-shop { margin-left: auto; transition: opacity .2s ease; }
  .nav-open .header-shop { opacity: 0; pointer-events: none; }
  .brand-logo { height: 42px; }
  .creed { grid-template-columns: 1fr; gap: 2.2rem; }
  .story { grid-template-columns: 1fr; }
  .story-img { max-width: 100%; }
  .drops-inner { grid-template-columns: 1fr; }
  .drops-media { max-width: 340px; }
  /* two tidy columns: date over time on the left, name over place on the right */
  .mkt-row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: .3rem 1.2rem;
  }
  .hero-stage { min-height: min(76vh, 34rem); align-items: flex-end; }
  .hero-top { padding-bottom: 2.2rem; }
  .hero-video::after {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--cream) 42%, transparent) 0%,
      color-mix(in srgb, var(--cream) 66%, transparent) 55%,
      color-mix(in srgb, var(--cream) 94%, transparent) 100%);
  }
  .mkt-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .mkt-booth { justify-self: start; }
  .morse-grid { grid-template-columns: 1fr; gap: 2rem; }
  .morse-cta { font-size: .74rem; letter-spacing: .1em; line-height: 1.45; padding: .85rem 1rem; }
  .svc-party { grid-template-columns: 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .mkt-date  { grid-column: 1; grid-row: 1; }
  .mkt-time  { grid-column: 1; grid-row: 2; text-align: left; }
  .mkt-name  { grid-column: 2; grid-row: 1; }
  .mkt-place { grid-column: 2; grid-row: 2; }
  .hero-meta .text-link { margin-left: 0; }
}
