/* ============================================================
   BLOOMS & BOTANICALS — design system v3
   Colour rule: the two business cards ARE the system.
     card 1 — butter yellow #FFFEC2 surface, brown #7A4900 ink
     card 2 — periwinkle #CBD2FF surface, red #FF3131 ink
   The page is built from alternating full-bleed COLOUR FIELDS of
   those two pairings, anchored by a brown field at the foot.
   There are no neutral grey/white/black surfaces anywhere.

   Each field sets its own ink, rule, muted and display tokens,
   so a component dropped into any field re-colours itself. To
   add a section, give it .field-yellow, .field-peri or
   .field-brown and write no other colours.

   Contrast (WCAG 2.1, measured):
     brown on butter ............ 7.27:1  body
     deep brown on butter ...... 10.10:1  body
     deep brown on periwinkle ... 7.10:1  body
     deep red on butter ......... 5.52:1  body
     deep red on periwinkle ..... 3.88:1  headings only (>=24px)
     butter on brown ............ 7.27:1  body
   Card red #FF3131 on periwinkle is 2.48:1 — it is a GRAPHIC
   colour only (fills, dots, rules), never text. Its accessible
   text counterpart is --red-deep.
   ============================================================ */

:root {
  /* the four card colours, exact */
  --yellow: #fffec2;
  --brown: #7a4900;
  --periwinkle: #cbd2ff;
  --red: #ff3131;

  /* derived, for contrast — same hues, darker */
  --brown-deep: #5c3700;
  --red-deep: #c81e1e;

  /* mood accents — card palette and its shades only */
  --mood-timeless: var(--brown-deep);
  --mood-vampy: var(--red-deep);
  --mood-pretty: var(--periwinkle);
  --mood-rustic: var(--brown);
  --mood-bold: var(--red);
  --mood-fun: var(--yellow);

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --radius: 2px;
}

/* ---------------- colour fields ----------------
   --display  headings (large type only)
   --muted    secondary body copy
   --strong   small emphatic type: eyebrows, active states
   --rule     hairlines and borders
   --focus    focus ring
------------------------------------------------- */
.field-yellow {
  background: var(--yellow);
  color: var(--brown);
  --display: var(--brown);
  --muted: rgba(122, 73, 0, 0.74);
  --strong: var(--red-deep);
  --rule: rgba(122, 73, 0, 0.24);
  --focus: var(--red-deep);
}

.field-peri {
  background: var(--periwinkle);
  color: var(--brown-deep);
  --display: var(--red-deep);
  --muted: rgba(92, 55, 0, 0.76);
  --strong: var(--brown-deep);
  --rule: rgba(92, 55, 0, 0.26);
  --focus: var(--brown-deep);
}

.field-brown {
  background: var(--brown);
  color: var(--yellow);
  --display: var(--yellow);
  --muted: rgba(255, 254, 194, 0.76);
  --strong: var(--yellow);
  --rule: rgba(255, 254, 194, 0.26);
  --focus: var(--yellow);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--yellow);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

  /* the page's default field is card 1 */
  --display: var(--brown);
  --muted: rgba(122, 73, 0, 0.74);
  --strong: var(--red-deep);
  --rule: rgba(122, 73, 0, 0.24);
  --focus: var(--red-deep);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

/* only h1/h2 reach display size, so only they take the display
   colour — h3/h4 stay at body ink where contrast is stricter */
h1, h2 { color: var(--display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--strong);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-light { color: var(--yellow); }
.btn-light:hover { background: var(--yellow); color: var(--brown); }
.btn-dark { color: var(--brown); }
.btn-dark:hover { background: var(--brown); color: var(--yellow); }
.btn-accent {
  background: var(--red-deep);
  color: #fff;
  border-color: var(--red-deep);
}
.btn-accent:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--yellow);
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ---------------- header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  color: var(--brown);
  transition: background 0.35s ease, padding 0.35s ease, color 0.35s ease, box-shadow .35s ease;
}
.site-header.is-solid {
  background: rgba(255, 254, 194, 0.93);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 rgba(122, 73, 0, 0.22);
}

/* every surface is a light colour field now, so the header ink is
   always brown; .on-light stays as a no-op so existing markup and
   any page added later keep working */
.site-header.on-light { color: var(--brown); }
.site-header.on-light.is-solid { background: rgba(255, 254, 194, 0.93); }

.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.wordmark span { color: var(--red-deep); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 40px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  width: 32px; height: 22px;
  position: relative;
  z-index: 110;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span { top: 10px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--brown);
  color: var(--yellow);
  padding: 72px var(--gutter) 32px;

  --display: var(--yellow);
  --muted: rgba(255, 254, 194, 0.76);
  --strong: var(--yellow);
  --rule: rgba(255, 254, 194, 0.26);
  --focus: var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer-grid .wordmark { color: var(--yellow); font-size: 1.4rem; margin-bottom: 14px; }
.footer-grid .wordmark span { color: var(--periwinkle); }
.footer-grid p { color: var(--muted); max-width: 32ch; margin: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 254, 194, 0.68);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span { display: block; margin-bottom: 10px; color: rgba(255, 254, 194, 0.9); }
.footer-col a:hover { color: var(--periwinkle); }
.footer-social { display: flex; align-items: center; gap: 8px; }
.footer-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255, 254, 194, 0.62);
  flex-wrap: wrap;
  gap: 12px;
}
.mood-dots { display: flex; gap: 6px; }
.mood-dots span { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ---------------- reveal-on-scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- page hero (interior pages) ---------------- */
.page-hero {
  padding: 168px var(--gutter) 64px;
  display: grid;
  gap: 20px;
  max-width: 760px;
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 56ch; }

/* ---------------- home: hero — card 1 field ---------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--yellow);
  color: var(--brown);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 140px var(--gutter) 80px;
}
.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: var(--brown);
}
.hero-copy .tagline {
  font-size: 1.15rem;
  max-width: 40ch;
  color: rgba(122, 73, 0, 0.82);
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 6px; }
.hero-social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; letter-spacing: 0.03em; color: rgba(122, 73, 0, 0.85);
}
.hero-social svg { width: 16px; height: 16px; }
.hero-social:hover { color: var(--red-deep); }
.hero-figure {
  position: relative;
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* butter wash blends the photo into the field instead of a grey scrim */
.hero-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255, 254, 194, 0.62) 0%, rgba(255, 254, 194, 0) 38%);
}

/* ---------------- home: mood strip — card 2 field ----------------
   .mood-strip carries .container in the markup; the field must bleed
   full width, so the max-width moves from the section to its children */
.mood-strip {
  max-width: none;
  padding: 120px var(--gutter);
  background: var(--periwinkle);
  color: var(--brown-deep);

  --display: var(--red-deep);
  --muted: rgba(92, 55, 0, 0.76);
  --strong: var(--brown-deep);
  --rule: rgba(92, 55, 0, 0.26);
  --focus: var(--brown-deep);
}
.mood-strip > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.mood-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.mood-strip-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 14ch; }
.mood-strip-head p { max-width: 34ch; color: var(--muted); }

.mood-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mood-chip {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.mood-chip:hover {
  border-color: var(--brown-deep);
  transform: translateY(-4px);
  background: rgba(255, 254, 194, 0.55);
}
.mood-chip .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--mood-color, var(--red)); }
.mood-chip .name { font-family: var(--font-display); font-size: 1.05rem; color: var(--brown-deep); }
.mood-chip .desc { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* ---------------- subscription band — card 1 field ---------------- */
.subscription-band {
  background: var(--yellow);
  color: var(--brown);
  padding: 96px var(--gutter);
  text-align: center;

  --display: var(--brown);
  --muted: rgba(122, 73, 0, 0.74);
  --strong: var(--red-deep);
  --rule: rgba(122, 73, 0, 0.24);
  --focus: var(--red-deep);
}
.subscription-band .eyebrow { color: var(--red-deep); }
.subscription-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 14px; }
.subscription-band .stay-tuned {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 16px;
  color: rgba(122, 73, 0, 0.82);
}

/* ---------------- CTA band — card 2 field ---------------- */
.cta-band {
  background: var(--periwinkle);
  color: var(--brown-deep);
  padding: 100px var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;

  --display: var(--red-deep);
  --muted: rgba(92, 55, 0, 0.76);
  --strong: var(--brown-deep);
  --rule: rgba(92, 55, 0, 0.26);
  --focus: var(--brown-deep);
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; }
.cta-band p { max-width: 46ch; color: var(--muted); }

/* ---------------- gallery: shared intro ---------------- */
.gallery-intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 168px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}
.gallery-intro .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--red-deep);
  margin: 18px 0 0;
}
.gallery-intro h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-top: 14px; }
.gallery-intro p { color: var(--muted); max-width: 48ch; }

.section-head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 90px var(--gutter) 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-top: 10px; }
.section-head p { max-width: 40ch; color: var(--muted); }

/* a field applied to a whole gallery section keeps its inner
   max-width wrappers, so only the padding needs restoring */
.field-peri > .section-head,
.field-yellow > .section-head { padding-top: 90px; }

/* ---------------- gallery: signature styles (mood cards) ---------------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--rule);
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: transparent;
  color: inherit;
  transition: all 0.2s ease;
}
.filter-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mood-color, currentColor); }
.filter-chip:hover { border-color: currentColor; }
.filter-chip.is-active {
  background: var(--brown);
  color: var(--yellow);
  border-color: var(--brown);
}
.filter-chip.is-active .dot { background: var(--mood-color, var(--yellow)); }

.gallery-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--brown-deep);
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  scroll-margin-top: 120px;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
/* brown-tinted scrim rather than black — dark enough for butter text
   over any photograph, but still inside the palette */
.gallery-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40, 24, 0, 0.86) 0%, rgba(40, 24, 0, 0.05) 55%);
}
.gallery-card .card-copy {
  position: absolute; left: 22px; right: 22px; bottom: 20px;
  color: var(--yellow);
}
.gallery-card .card-copy .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mood-color, var(--red)); margin-bottom: 10px; }
.gallery-card .card-copy .name { font-family: var(--font-display); font-size: 1.35rem; }
.gallery-card .card-copy .desc { font-size: 0.8rem; color: rgba(255, 254, 194, 0.85); margin-top: 4px; }

.gallery-card.is-soon {
  background: var(--periwinkle);
  border: 1px dashed rgba(92, 55, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.gallery-card.is-soon .soon-copy { text-align: center; color: rgba(92, 55, 0, 0.8); padding: 24px; }
.gallery-card.is-soon .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mood-color); margin: 0 auto 14px; }
.gallery-card.is-soon .name { font-family: var(--font-display); font-size: 1.2rem; color: var(--brown-deep); }
.gallery-card.is-soon .desc { font-size: 0.78rem; margin-top: 6px; }

.gallery-card.is-hidden { display: none; }

/* ---------------- gallery: flat photo grid ("From the Studio") ---------------- */
.photo-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-grid button {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(122, 73, 0, 0.16);
  scroll-margin-top: 120px;
}
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-grid button:hover img { transform: scale(1.06); }

/* lightbox — deep brown rather than black, so the overlay still
   reads as part of the brand */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(32, 19, 0, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px var(--gutter);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox-frame { position: relative; }
.lightbox img {
  max-height: 78vh;
  margin: 0 auto;
  border-radius: var(--radius);
}
.lightbox-meta { color: var(--yellow); margin-top: 20px; }
.lightbox-meta .name { font-family: var(--font-display); font-size: 1.4rem; }
.lightbox-meta .count { font-size: 0.78rem; color: rgba(255, 254, 194, 0.7); margin-top: 6px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 254, 194, 0.12);
  border: 1px solid rgba(255, 254, 194, 0.3);
  color: var(--yellow);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 254, 194, 0.26); }
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 18px; height: 18px; }

/* ---------------- about ---------------- */
.about-split {
  max-width: 1440px;
  margin: 0 auto;
  padding: 168px var(--gutter) 120px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-split figure { border-radius: var(--radius); overflow: hidden; position: sticky; top: 120px; }
.about-split figure img { aspect-ratio: 4/5; object-fit: cover; }
.about-copy h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin: 16px 0 20px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; max-width: 62ch; }
.about-copy .role { font-family: var(--font-display); font-style: italic; color: var(--red-deep); font-size: 1.05rem; margin-bottom: 8px; }

/* the inquiry band anchors the About page in brown */
.inquiry {
  background: var(--brown);
  color: var(--yellow);
  padding: 110px var(--gutter);

  --display: var(--yellow);
  --muted: rgba(255, 254, 194, 0.76);
  --strong: var(--yellow);
  --rule: rgba(255, 254, 194, 0.26);
  --focus: var(--yellow);
}
.inquiry-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.inquiry-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.inquiry-head p { color: var(--muted); margin-top: 14px; }

/* ---------------- contact ---------------- */
.contact-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 168px var(--gutter) 140px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: start;
}
.contact-copy .eyebrow { margin-bottom: 18px; }
.contact-copy h1 { font-size: clamp(2.4rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--muted); margin-bottom: 32px; max-width: 44ch; }
.contact-social {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: inherit; margin-bottom: 40px;
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
}
.contact-social svg { width: 16px; height: 16px; }
.contact-social:hover { color: var(--red-deep); border-color: var(--red-deep); }
.contact-figure { border-radius: var(--radius); overflow: hidden; position: sticky; top: 120px; }
.contact-figure img { aspect-ratio: 4/5; object-fit: cover; }

/* ---------------- forms (shared) ----------------
   fields inherit their field's tokens, so the same markup works on
   butter, periwinkle and brown without an .on-dark variant doing
   colour work of its own */
.form-grid { display: grid; gap: 22px; max-width: 560px; }
.form-grid.on-dark { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.95rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 2px;
  color: inherit;
  border-radius: 0;
}
.field select option { color: #3a2200; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: currentColor; }
.field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: -2px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.checkbox-row input { margin-top: 4px; accent-color: var(--red-deep); }
.on-dark .checkbox-row input { accent-color: var(--periwinkle); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none;
  padding: 16px 18px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 0.88rem;
  border-radius: var(--radius);
}
.on-dark .form-success { color: var(--periwinkle); border-color: var(--periwinkle); }
.form-success.is-visible { display: block; }

/* submit failed — same box as the success note, in the accessible text red.
   On the brown inquiry band red would drop to 2.2:1, so it flips to butter
   there and stays distinct from the periwinkle success note. */
.form-error {
  display: none;
  padding: 16px 18px;
  border: 1px solid currentColor;
  border-left-width: 4px;
  color: var(--red-deep);
  font-size: 0.88rem;
  border-radius: var(--radius);
}
.on-dark .form-error { color: var(--yellow); }
.form-error.is-visible { display: block; }

/* honeypot — off-screen for people, still fillable by a bot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* the Turnstile iframe sizes itself; this only keeps it off the field above */
.cf-turnstile { min-height: 65px; }

/* a button on the brown inquiry band needs the reverse fill */
.on-dark .btn-accent {
  background: var(--yellow);
  color: var(--brown);
  border-color: var(--yellow);
}
.on-dark .btn-accent:hover {
  background: var(--periwinkle);
  border-color: var(--periwinkle);
  color: var(--brown-deep);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-split figure, .contact-figure { position: static; order: -1; max-height: 380px; }
  .contact-figure img, .about-split figure img { aspect-ratio: 16/9; }
  .gallery-grid, .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .mood-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .main-nav ul {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--brown);
    color: var(--yellow);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px var(--gutter);
    gap: 28px;
    transition: right 0.4s ease;
  }
  .main-nav ul a { color: var(--yellow); font-size: 1rem; }
  .main-nav.is-open ul { right: 0; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-figure { height: 56vh; order: -1; }
  .hero-copy { padding: 48px var(--gutter) 64px; }

  .mood-strip { padding: 90px var(--gutter); }
  .mood-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-intro { grid-template-columns: 1fr; gap: 24px; padding-top: 140px; }
  .section-head { padding-top: 64px; }
  .form-row { grid-template-columns: 1fr; }

  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: -48px; right: 4px; }
  .lightbox-inner { padding: 0 12px; }
}

/* butter yellow and periwinkle are pale enough to disappear as dots
   on their own field, so every mood dot carries a hairline ring */
.mood-chip .dot,
.filter-chip .dot,
.mood-dots span,
.gallery-card.is-soon .dot { box-shadow: inset 0 0 0 1px rgba(92, 55, 0, 0.32); }
.site-footer .mood-dots span { box-shadow: inset 0 0 0 1px rgba(255, 254, 194, 0.45); }
