/* =============================================================
   Belle's Camp Texas — bellescamptexas.com
   Brand-matched to the jar label: warm cream field, matte-black
   ink, antique-gold keyline, copper accents, peaked-shield motif.
   ============================================================= */

:root {
  --black:      #1C1B18;   /* primary ink, shield edge            */
  --cream:      #F4EAD2;   /* label field / page background       */
  --cream-hi:   #FAF3E2;   /* lighter panels                      */
  --gold:       #B58A34;   /* keyline, diamonds, rules            */
  --gold-hi:    #D8B968;
  --gold-deep:  #8A6522;
  --copper:     #9C5A32;   /* links, italic accents               */

  --ink-soft:   rgba(28, 27, 24, 0.72);
  --ink-faint:  rgba(28, 27, 24, 0.14);

  --f-display:  "Cinzel", Georgia, serif;
  --f-accent:   "Fraunces", Georgia, serif;
  --f-body:     "EB Garamond", Georgia, serif;
  --f-util:     "Zilla Slab", "Courier New", monospace;

  --measure: 62ch;
  --edge: clamp(1.25rem, 5vw, 5rem);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--f-body);
  font-size: clamp(1.02rem, 0.55vw + 0.95rem, 1.22rem);
  line-height: 1.72;
  /* subtle dot texture, exactly like the label field */
  background-image: radial-gradient(var(--ink-faint) 0.8px, transparent 0.9px);
  background-size: 14px 14px;
  background-attachment: fixed;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* accessible focus */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- shared type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 700; margin: 0; line-height: 1.12; }
.eyebrow {
  font-family: var(--f-util);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-deep);
}
.script {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
}

/* Gold-rule eyebrow, straight from the back label:  — LABEL — */
.rule-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.rule-label::before,
.rule-label::after {
  content: "";
  height: 1px;
  width: clamp(1.5rem, 6vw, 3.5rem);
  background: var(--gold);
}
.rule-label span {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  color: var(--black);
}

/* Diamond motif ( ◆ RAW HONEY ◆ ) */
.diamond { color: var(--gold); }

.wrap { width: min(100% - 2.5rem, 1080px); margin-inline: auto; }
.narrow { max-width: 60ch; margin-inline: auto; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem var(--edge);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-faint);
}
.brand-lockup { display: flex; align-items: center; gap: 0.6rem; color: var(--black); }
.brand-lockup .mark { width: 34px; height: 34px; }
.brand-lockup .mark svg { width: 100%; height: 100%; color: var(--black); }
.brand-lockup .wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.98rem;
  text-transform: uppercase;
  line-height: 1;
}
.brand-lockup .wordmark small {
  display: block;
  font-family: var(--f-util);
  font-weight: 500;
  letter-spacing: 0.42em;
  font-size: 0.58rem;
  color: var(--gold-deep);
  margin-top: 3px;
}
.site-nav { display: flex; gap: clamp(1rem, 3vw, 2.2rem); align-items: center; }
.site-nav a {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--black);
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--copper); text-decoration: none; }
.site-nav .nav-cta {
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.site-nav .nav-cta:hover { background: var(--black); color: var(--cream); }
.nav-hide { }
/* Below this width the section links crowd, so collapse to just the CTA
   (the floating "Get a Jar" button + scrolling cover navigation there). */
@media (max-width: 940px) {
  .nav-hide { display: none; }
}

/* =============================================================
   HERO — the peaked-shield label, recreated
   ============================================================= */
.hero {
  padding: clamp(2rem, 6vw, 4.5rem) var(--edge) clamp(3rem, 7vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-shield {
  position: relative;
  width: min(90vw, 540px);
  aspect-ratio: 220 / 306;
  container-type: inline-size;
  filter: drop-shadow(0 22px 40px rgba(28, 27, 24, 0.22));
}
.hero-shield .frame { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-shield .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22% 17% 15%;
  text-align: center;
}
.hero-logo { width: 56%; margin-top: 0; }
.hero-logo svg, .hero-logo img { width: 100%; height: auto; color: var(--black); }
/* Desktop: give the skull logo more presence on the larger shield */
@media (min-width: 700px) {
  .hero-logo { width: 67%; }
}

.hero-rawhoney {
  display: flex;
  align-items: center;
  gap: 4cqw;
  margin-top: 5cqw;
}
.hero-rawhoney .diamond { font-size: 2.7cqw; }
.hero-rawhoney h1 {
  font-size: 7.7cqw;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.hero-triplet {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.17em;
  font-size: 3.2cqw;
  margin-top: 4cqw;
  color: var(--black);
}
.hero-triplet .star { color: var(--gold); }
.hero-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 4.1cqw;
  color: var(--black);
  margin-top: 4.5cqw;
  line-height: 1.35;
}
.hero-hairline {
  width: 40%;
  height: 1px;
  background: var(--gold);
  margin: 4cqw auto 0;
}
.hero-est {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 15%;              /* anchored to shield height so it clears the gold keyline */
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 2.4cqw;
  color: var(--gold-deep);
}
.hero-est::before {
  content: "\0025C6";
  display: block;
  color: var(--gold);
  font-size: 2.1cqw;
  letter-spacing: 0;
  margin: 0 auto 3cqw;
}
.hero-scan {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 2.5cqw;
  color: var(--gold-deep);
  margin-top: 3cqw;
}

/* hero actions below the shield */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
.btn {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-solid { background: var(--black); color: var(--cream); }
.btn-solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--cream); }

/* =============================================================
   STATS STRIP
   ============================================================= */
.stats {
  border-block: 1.5px solid var(--black);
  background: var(--cream-hi);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat { padding: clamp(1.4rem, 3vw, 2.2rem) 1rem; }
.stat + .stat { border-left: 1px solid var(--ink-faint); }
.stat .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  line-height: 1.08;
}
.stat .cap {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; }                        /* reset single-row dividers */
  .stat:nth-child(even) { border-left: 1px solid var(--ink-faint); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--ink-faint); }
}
@media (max-width: 560px) {
  .stats .wrap { grid-template-columns: 1fr; }
  .stat:nth-child(even) { border-left: none; }
  .stat + .stat { border-top: 1px solid var(--ink-faint); }
}

/* =============================================================
   SECTION scaffolding
   ============================================================= */
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { text-align: center; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.02em;
}
.lead { font-size: 1.14em; }
.prose p { margin: 0 0 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.prose.narrow { text-align: center; }

/* engraved bee accent flanking a heading */
.bee-flank {
  width: clamp(46px, 8vw, 74px);
  color: var(--black);
  opacity: 0.9;
}

/* =============================================================
   STORY — flanked by engraved bees
   ============================================================= */
.story { background: var(--cream); }
.story-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 1.6rem;
}
.story-heading .bee-flank.flip { transform: scaleX(-1); }

/* =============================================================
   CRAFT — three cards
   ============================================================= */
.craft { background: var(--cream-hi); border-block: 1.5px solid var(--black); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5.5px var(--ink-faint);
}
.card .card-icon { width: 46px; height: 46px; color: var(--gold-deep); margin-bottom: 0.9rem; }
.card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.card p { margin: 0; font-size: 0.98em; color: var(--ink-soft); }

/* =============================================================
   BEHIND THE NAME — Colorado heritage
   ============================================================= */
.name-sec { background: var(--cream); }
.name-sec .prose { margin-top: clamp(1.6rem, 4vw, 2.4rem); }
.name-sec strong { font-weight: 600; }

/* Colorado -> Texas locator */
.route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2.5vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.route .loc {
  font-family: var(--f-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  white-space: nowrap;
}
.route .link {
  position: relative;
  width: clamp(60px, 12vw, 150px);
  border-top: 1.5px dotted var(--gold);
  align-self: center;
}
.route .link .d {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  color: var(--gold);
  padding: 0 7px;
  font-size: 0.8rem;
}
@media (max-width: 480px) {
  .route .link { display: none; }
}

/* Historic photos — framed like archival prints */
.name-photos {
  margin-top: clamp(2.4rem, 6vw, 3.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  align-items: center;
}
figure.vintage { margin: 0; width: 100%; }
figure.vintage img {
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid var(--black);
  border-radius: 4px;
  box-shadow: 0 0 0 5px var(--cream-hi), 0 0 0 6.5px var(--gold),
              0 16px 34px rgba(28, 27, 24, 0.20);
  filter: sepia(0.22) saturate(1.05);   /* warm the B&W toward the palette */
}
figure.vintage.pano { width: 100%; }
figure.vintage:not(.pano) { max-width: 620px; }   /* the camp photo sits narrower */
figure.vintage figcaption {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  text-align: center;
  margin-top: 1rem;
}

/* Gold-horn print — small, click to enlarge (keep true color, no sepia) */
figure.vintage.goldhorn { max-width: 300px; }
figure.vintage.goldhorn .zoomable {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
figure.vintage.goldhorn img { filter: none; }
.goldhorn .zoom-hint {
  display: block;
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  color: var(--gold-deep);
  margin-top: 0.7rem;
}
.goldhorn .zoomable:hover .zoom-hint,
.goldhorn .zoomable:focus-visible .zoom-hint {
  color: var(--copper);
  text-decoration: underline;
}

/* Lightbox (fit-to-screen by default; click image to zoom in and scroll/pan) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 27, 24, 0.94);
  overflow: auto;
  overscroll-behavior: contain;
}
body.lb-open { overflow: hidden; }               /* lock background scroll */
body.lb-open .site-header { visibility: hidden; } /* keep the sticky header from showing through */
.lightbox.open { display: flex; align-items: center; justify-content: center; }
.lightbox.open.zoomed { display: block; }          /* let the enlarged image scroll */
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border: 3px solid var(--cream);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
  cursor: zoom-in;
}
.lightbox.zoomed .lightbox-img {
  max-width: none;
  max-height: none;
  width: clamp(1436px, 320vw, 2600px);            /* full-res minimum, larger on big screens */
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: zoom-out;
}
.lightbox-close {
  position: fixed;
  top: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(28, 27, 24, 0.6);
  border: 1.5px solid var(--cream);
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease, color 0.15s ease;
}
.lightbox-close:hover { background: var(--cream); color: var(--black); }
.lightbox-hint {
  position: fixed;
  bottom: clamp(0.6rem, 2.5vw, 1.2rem);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  pointer-events: none;
}
.lightbox.zoomed .lightbox-hint { display: none; }

/* =============================================================
   FLOATING "GET A JAR" CTA — right side, appears on scroll
   ============================================================= */
.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 4vw, 2.2rem);
  z-index: 60;
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--cream);
  border: 1.5px solid var(--black);
  box-shadow: 0 8px 22px rgba(28, 27, 24, 0.28);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.18s ease, border-color 0.18s ease;
}
.floating-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  text-decoration: none;
}
body.lb-open .floating-cta { display: none; }
@media (prefers-reduced-motion: reduce) {
  .floating-cta { transition: opacity 0.3s ease; transform: none; }
}

/* Pull-quote — the closing line */
.name-quote {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.05rem);
  line-height: 1.4;
  text-align: center;
  color: var(--black);
  max-width: 26ch;
  margin: clamp(2.6rem, 6vw, 4rem) auto 0;
  padding-top: 2.2rem;
  position: relative;
}
.name-quote::before {
  content: "\0025C6";
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-style: normal;
  margin-bottom: 1.3rem;
}

/* This Season placard — the current harvest's floral sources (update each season) */
.season {
  max-width: 660px;
  margin: clamp(2rem, 5vw, 3.2rem) auto 0;
  text-align: center;
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 8px;
  box-shadow: 0 0 0 5px var(--cream-hi), 0 0 0 6.5px var(--gold);
  padding: clamp(1.5rem, 3.5vw, 2.2rem) clamp(1.4rem, 4vw, 2.6rem);
}
.season-label {
  display: block;
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.season p { margin: 0; color: var(--ink-soft); }

/* =============================================================
   BRAND — the BTC mark
   ============================================================= */
.brand-sec { background: var(--black); color: var(--cream); }
.brand-sec .dot-fix { }
.brand-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 760px) { .brand-grid { grid-template-columns: 1fr; text-align: center; } }
.brand-mark {
  color: var(--cream);
  width: min(100%, 320px);
  margin-inline: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.4));
}
.brand-sec .eyebrow { color: var(--gold-hi); }
.brand-sec h2 { color: var(--cream); font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-block: 0.4rem 1.2rem; }
.brand-sec p { color: color-mix(in srgb, var(--cream) 88%, transparent); }
.brand-sec .rule-label span { color: var(--cream); }
.brand-sec .rule-label::before, .brand-sec .rule-label::after { background: var(--gold-hi); }
.brand-sec .inline-btc {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -0.4em;
  color: var(--gold-hi);
}

/* =============================================================
   HONEY FAQ — accordion
   ============================================================= */
.faq-sec { background: var(--cream-hi); border-block: 1.5px solid var(--black); }
.faq-sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--copper);
  margin-top: 0.5rem;
}
.faq { max-width: 760px; margin: clamp(1.8rem, 4vw, 2.6rem) auto 0; text-align: left; }
.faq-item { border-top: 1px solid var(--ink-faint); }
.faq-item:last-child { border-bottom: 1px solid var(--ink-faint); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.15rem 0.2rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--black);
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--gold-deep);
  font-size: 1.5rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--copper); }
.faq-a { padding: 0 0.2rem 1.25rem; }
.faq-a p { margin: 0; color: var(--ink-soft); max-width: 68ch; }

/* =============================================================
   BUY / CONTACT
   ============================================================= */
.contact { background: var(--cream); text-align: center; }
.contact .panel {
  background: var(--cream-hi);
  border: 1.5px solid var(--black);
  border-radius: 8px;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6.5px var(--gold);
  padding: clamp(2rem, 6vw, 3.5rem);
  max-width: 720px;
  margin-inline: auto;
}
.contact .panel h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.contact .panel p { margin: 1rem auto 1.8rem; max-width: 46ch; color: var(--ink-soft); }
.contact .handle {
  font-family: var(--f-util);
  letter-spacing: 0.08em;
  margin-top: 1.6rem;
  font-size: 0.95rem;
}
.contact .handle a { font-weight: 600; }

/* ---------- contact form ---------- */
.bc-form {
  max-width: 440px;
  margin: 1.9rem auto 0;
  text-align: left;
}
.bc-form .field { margin-bottom: 1rem; }
.bc-form label {
  display: block;
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.bc-form input,
.bc-form textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1.02rem;
  color: var(--black);
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 5px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bc-form textarea { resize: vertical; min-height: 118px; line-height: 1.5; }
.bc-form input:focus,
.bc-form textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 32%, transparent);
}
.bc-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.bc-form .cf-turnstile {
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
  min-height: 65px;
}
.bc-form .form-submit {
  width: 100%;
  margin-top: 0.4rem;
  cursor: pointer;
}
.bc-form .form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.bc-form .form-status {
  margin: 0.9rem 0 0;
  font-family: var(--f-util);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  min-height: 1.2em;
  text-align: center;
}
.bc-form .form-status.ok  { color: var(--gold-deep); font-weight: 600; }
.bc-form .form-status.err { color: #9c3a2f; }
.bc-form.sent .field,
.bc-form.sent .form-submit { display: none; }
.bc-form.sent .form-status { font-size: 1.05rem; margin-top: 0; }

/* ---------- social icon row (contact + footer) ---------- */
.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.social-label {
  font-family: var(--f-util);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold-deep);
}
.social-icons { display: flex; gap: 0.8rem; }
.social-icons a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.social-icons a:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-2px);
  text-decoration: none;
}
.social-icons .s-ico { width: 20px; height: 20px; display: block; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--black);
  color: color-mix(in srgb, var(--cream) 82%, transparent);
  padding: clamp(2.5rem, 6vw, 4rem) var(--edge) 2.5rem;
  text-align: center;
  font-size: 0.9rem;
}
.site-footer .foot-mark { width: 120px; margin: 0 auto 1.3rem; color: var(--cream); }
.site-footer .foot-tag {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.site-footer .foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  justify-content: center;
  font-family: var(--f-util);
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.site-footer .foot-meta a { color: var(--gold-hi); }
.site-footer .social { margin-top: 0; margin-bottom: 1.5rem; }
.site-footer .social-icons a {
  border-color: color-mix(in srgb, var(--cream) 45%, transparent);
  color: var(--cream);
}
.site-footer .social-icons a:hover {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  color: var(--black);
}
.site-footer .cottage {
  max-width: 54ch;
  margin: 0 auto 1.2rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}
.site-footer .copyright {
  font-family: var(--f-util);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}

/* =============================================================
   MOTION — gentle, respectful
   ============================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .social-icons a:hover { transform: none; }
}
