/* ============================================================
   BLACK COW — Luxury Lifestyle Publication
   Prototype design system  ·  black / white / ivory + gold & silver
   Tokens here are carried verbatim into the WordPress theme (Phase 2)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* colour */
  --ink:      #0E0E0E;
  --ink-soft: #1c1c1c;
  --paper:    #FAF8F4;   /* ivory */
  --white:    #FFFFFF;
  --muted:    #6B6B6B;
  --muted-2:  #9a958c;
  --line:     #E7E3DB;
  --line-2:   #efece5;

  --gold:     #C9A24E;   /* accent gold — brighter, more metallic */
  --gold-deep:#8A6A24;   /* solid fallback for gold text on light */
  --gold-bright:#F1DC8F; /* metallic highlight */
  /* metallic sheen gradients (used as text-clip "foil" and as rules) */
  --gold-streak:      linear-gradient(100deg,#8A6A24 0%,#C9A24E 34%,#F6E7B8 50%,#C9A24E 66%,#8A6A24 100%);
  --foil-on-light:    linear-gradient(92deg,#7A5E1F 0%,#B98F2E 34%,#E3C879 50%,#B98F2E 66%,#7A5E1F 100%);
  --foil-on-dark:     linear-gradient(92deg,#C9A24E 0%,#EAD08A 46%,#FBF1CE 52%,#EAD08A 58%,#C9A24E 100%);
  --silver:   #C7CCD1;
  --silver-streak: linear-gradient(100deg,#8C9298 0%,#C7CCD1 40%,#F1F3F5 50%,#C7CCD1 60%,#8C9298 100%);

  /* type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap: 1240px;
  --wrap-wide: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
  --space:  clamp(64px, 9vw, 132px);   /* vertical section rhythm */

  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset-ish ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1.2em; }

/* ---------- Utility ---------- */
.wrap  { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: var(--wrap-wide); }
.section { padding-block: var(--space); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);                 /* fallback */
  background-image: var(--foil-on-light);  /* metallic foil */
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow.on-dark { color: var(--gold); background-image: var(--foil-on-dark); }
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .eyebrow { -webkit-text-fill-color: currentColor; }
}
.hairline { height: 1px; border: 0; background: var(--line); margin: 0; }
.streak {
  height: 2px; width: 56px; border: 0; border-radius: 2px;
  background: var(--gold-streak);
}
.visually-hidden {
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--ink); color:var(--white); padding:12px 18px;
}
.skip-link:focus { left:12px; top:12px; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 26px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--white);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); }

.link-more {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 3px; position: relative;
}
.link-more::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold-streak); transform: scaleX(.34); transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-more:hover::after { transform: scaleX(1); }
.link-more .arw { transition: transform .4s var(--ease); }
.link-more:hover .arw { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-condensed {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(0,0,0,.35);
}
.header-inner {
  height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  column-gap: clamp(18px, 2.5vw, 40px);
  transition: height .4s var(--ease);
}
.site-header.is-condensed .header-inner { height: 62px; }

.masthead {
  grid-column: 2; justify-self: center;
  display: inline-flex; align-items: center; gap: 12px; line-height: 1;
}
.masthead .mark { height: 38px; width: auto; display: block; transition: height .4s var(--ease); }
.site-header.is-condensed .masthead .mark { height: 31px; }
.masthead .brand-text { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.masthead .word {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(18px, 2vw, 23px); letter-spacing: .24em;
  padding-left: .24em; color: var(--ink); line-height: 1;
}
.masthead .tag {
  font-family: var(--sans); font-size: 8px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold-deep); line-height: 1;
}

.nav-primary { grid-column: 1; justify-self: start; }
.nav-primary ul { display: flex; flex-wrap: nowrap; gap: clamp(12px, 1vw, 16px); list-style: none; margin: 0; padding: 0; }
.nav-primary a {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-primary a::after {
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:100%;
  background: var(--gold-streak); transform: scaleX(0); transform-origin:left;
  transition: transform .35s var(--ease);
}
.nav-primary a:hover::after, .nav-primary a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 18px; }
.icon-btn {
  background: none; border: 0; padding: 6px; color: var(--ink); display: inline-flex;
  border-radius: 50%;
}
.icon-btn:hover { color: var(--gold-deep); }
.nav-toggle { display: none; }

/* mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 420px);
  background: var(--ink); color: var(--white);
  transform: translateX(100%); transition: transform .5s var(--ease);
  z-index: 130; padding: 100px var(--gutter) 40px; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav a {
  display: block; padding: 20px 0; font-family: var(--serif); font-size: 24px; color: var(--white);
}
.mobile-nav a:hover { color: var(--gold); }
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — home lead feature
   ============================================================ */
.hero {
  position: relative; min-height: min(86vh, 760px);
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
  background: var(--ink);
}
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.34) 0%, rgba(8,8,8,.14) 20%, rgba(8,8,8,.46) 48%, rgba(8,8,8,.80) 74%, rgba(8,8,8,.94) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(52px, 7vw, 104px); max-width: 900px; }
/* bright, saturated gold that pops over photography (solid, not foil) */
.hero__kicker {
  background: none; color: #F2C85E; -webkit-text-fill-color: #F2C85E;
  font-size: 12px; letter-spacing: .26em;
  text-shadow: 0 1px 14px rgba(0,0,0,.7), 0 0 2px rgba(0,0,0,.5);
  filter: none;
}
.hero h1 {
  color: var(--white); font-size: clamp(34px, 5vw, 64px); font-weight: 400;
  letter-spacing: -0.018em; margin: 18px 0 20px; max-width: 16ch; text-wrap: balance;
  text-shadow: 0 2px 34px rgba(0,0,0,.5);
}
.hero__meta, .hero__dek { text-shadow: 0 1px 20px rgba(0,0,0,.5); }
.hero__meta { display: flex; align-items: center; gap: 14px; font-size: 13px; letter-spacing: .04em; color: rgba(255,255,255,.9); }
.hero__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero__dek { font-size: clamp(16px,1.5vw,19px); color: rgba(255,255,255,.92); max-width: 60ch; margin-top: 14px; }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sec-head__title { font-size: clamp(26px, 3vw, 40px); font-weight: 400; }
.sec-head__lead { max-width: 46ch; }
.sec-head .streak { margin-bottom: 16px; }
.sec-head__left { min-width: 0; }

/* ============================================================
   CARDS + GRIDS
   ============================================================ */
.card { display: block; }
.card__media { position: relative; overflow: hidden; background: var(--line-2); aspect-ratio: 3 / 2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__kicker { margin: 18px 0 10px; }
.card__title { font-size: clamp(19px, 1.5vw, 23px); font-weight: 400; line-height: 1.16; }
.card__title a { background-image: linear-gradient(var(--ink),var(--ink)); background-size: 0 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .4s var(--ease); }
.card:hover .card__title a { background-size: 100% 1px; }
.card__meta { margin-top: 12px; font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.card__meta .by { color: var(--ink-soft); }
.card__dek { margin-top: 10px; color: var(--muted); font-size: 15px; max-width: 60ch; overflow-wrap: break-word; }

/* feature grid under hero */
.feature-grid { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(28px, 3vw, 52px); align-items: start; }
.feature-grid__side { display: grid; gap: clamp(24px,2.4vw,36px); align-content: start; }
.feature-grid__side .card { display: grid; grid-template-columns: 118px 1fr; gap: 18px; align-items: start; }
.feature-grid__side .card__media { aspect-ratio: 1/1; }
.feature-grid__side .card__kicker { margin-top: 0; }
.feature-grid__side .card__title { font-size: 17px; }
.feature-lead .card__media { aspect-ratio: 16/10; }
.feature-lead .card__title { font-size: clamp(24px,2.4vw,34px); margin-top: 6px; }

/* generic 3/4-up grid */
.grid { display: grid; gap: clamp(26px, 2.6vw, 44px); align-items: start; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* category rail */
.rail + .rail { margin-top: var(--space); }
.rail__head { display:flex; align-items:baseline; justify-content:space-between; gap:20px; margin-bottom: 34px; }
.rail__title { display:flex; align-items:center; gap:16px; font-size: clamp(22px,2.4vw,30px); }
.rail__title .num { font-family: var(--sans); font-size: 12px; font-weight:600; letter-spacing:.18em; color: var(--gold-deep); }

/* alternating band */
.band { background: var(--ink); color: var(--white); }
.band .sec-head__title, .band .rail__title, .band .card__title { color: var(--white); }
.band .card__title a { background-image: linear-gradient(var(--white),var(--white)); }
.band .card__meta { color: rgba(255,255,255,.6); }
.band .card__meta .by { color: rgba(255,255,255,.85); }
.band .link-more { color: var(--white); }
.band .hairline { background: rgba(255,255,255,.14); }

/* ============================================================
   NEWSLETTER band
   ============================================================ */
.newsletter { text-align: center; }
.newsletter__inner { max-width: 620px; margin-inline: auto; }
.newsletter h2 { font-size: clamp(28px,3.4vw,44px); font-weight: 300; margin-bottom: 16px; }
.newsletter p { color: var(--muted); margin-bottom: 30px; }
.band .newsletter p { color: rgba(255,255,255,.7); }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 15px 18px; border: 1px solid var(--line);
  background: var(--white); font: inherit; font-size: 15px; color: var(--ink);
}
.band .nl-form input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: var(--white); }
.nl-form input::placeholder { color: var(--muted-2); }
.band .nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   ARTICLE (single)
   ============================================================ */
.article-hero { padding-top: clamp(40px,6vw,84px); }
.article-hero__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.breadcrumb { font-size: 12px; letter-spacing: .04em; color: var(--muted); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { margin: 0 8px; color: var(--line); }
.article-title { font-size: clamp(32px, 4.6vw, 60px); font-weight: 300; margin: 16px 0 22px; }
.article-dek { font-family: var(--serif); font-style: italic; font-size: clamp(18px,1.9vw,23px); color: var(--muted); max-width: 60ch; margin: 0 auto 30px; line-height: 1.45; }
.byline { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); letter-spacing: .03em; }
.byline .avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.byline b { color: var(--ink); font-weight: 600; }
.article-figure { margin: clamp(36px,5vw,64px) 0; }
.article-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-figure figcaption { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }

.prose { max-width: 720px; margin-inline: auto; font-size: 18.5px; line-height: 1.72; }
.prose > p:first-of-type::first-letter {
  font-family: var(--serif); float: left; font-size: 4.4em; line-height: .82;
  padding: 6px 14px 0 0; color: var(--ink); font-weight: 400;
}
.prose h2 { font-size: clamp(24px,2.6vw,32px); font-weight: 400; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 22px; font-weight: 500; margin: 1.4em 0 .4em; font-family: var(--serif); }
.prose a { color: var(--gold-deep); box-shadow: inset 0 -1px 0 var(--gold); }
.prose a:hover { background: color-mix(in srgb, var(--gold) 14%, transparent); }
.prose blockquote {
  margin: 1.6em 0; padding: 6px 0 6px 30px; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 26px; line-height: 1.36; font-style: italic; color: var(--ink-soft);
}
.prose figure { margin: 2em 0; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }

/* author box */
.author-box {
  max-width: 720px; margin: clamp(48px,6vw,72px) auto 0;
  display: flex; gap: 22px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.author-box .name { font-family: var(--serif); font-size: 20px; }
.author-box .role { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin: 2px 0 8px; }
.author-box p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ============================================================
   CATEGORY hub header
   ============================================================ */
.cat-hero { padding-block: clamp(56px,7vw,110px) clamp(40px,5vw,64px); text-align: center; border-bottom: 1px solid var(--line); }
.cat-hero h1 { font-size: clamp(40px, 6vw, 78px); font-weight: 300; margin: 14px 0 20px; }
.cat-hero p { max-width: 60ch; margin: 0 auto; color: var(--muted); font-size: 17px; }
.cat-hero .streak { margin: 0 auto 6px; }

/* filter row */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.chip {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 40px; color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.chip:hover, .chip[aria-current="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ============================================================
   Simple page (about/contact)
   ============================================================ */
.page-hero { padding-block: clamp(60px,8vw,120px) clamp(30px,4vw,48px); }
.page-hero h1 { font-size: clamp(40px,6vw,76px); font-weight: 300; max-width: 16ch; }
.page-hero .lead { font-family: var(--serif); font-style: italic; font-size: clamp(19px,2.1vw,26px); color: var(--muted); max-width: 44ch; margin-top: 22px; }
.rich { max-width: 720px; font-size: 18px; line-height: 1.7; }
.rich h2 { font-size: 26px; margin: 1.4em 0 .4em; font-weight: 400; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin: 10px 0; }
.stat .n { font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 300; }
.stat .l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: start; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--white);
  font: inherit; font-size: 15px; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-detail { margin-bottom: 26px; }
.contact-detail .k { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.contact-detail .v { font-family: var(--serif); font-size: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(64px,8vw,104px); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(30px,4vw,60px); padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .footer-logo { width: clamp(180px, 16vw, 218px); height: auto; margin-bottom: 22px; }
.footer-brand .word { font-family: var(--serif); font-size: 30px; letter-spacing: .22em; color: var(--white); }
.footer-brand .streak { margin: 16px 0; }
.footer-brand p { max-width: 34ch; font-size: 14px; color: rgba(255,255,255,.6); }
.footer-col h4 { font-family: var(--sans); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0 40px; font-size: 12.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.social { display: flex; gap: 16px; }
.social a { color: rgba(255,255,255,.7); }
.social a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid__side { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .masthead { grid-column: 2; }
  .header-actions { grid-column: 3; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .feature-grid__side { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 20px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .nl-form { flex-direction: column; }
  .prose > p:first-of-type::first-letter { font-size: 3.4em; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---- Custom lead form (name / phone / email / message) ---- */
.bc-form__heading { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0 0 20px; }
.field .req { color: var(--gold-deep); }
.field .opt { color: var(--muted-2); text-transform: none; letter-spacing: 0; font-size: 11px; }
.field input:user-invalid, .field textarea:user-invalid { border-color: #b0402f; }

/* Honeypot: kept in the DOM and accessible tree for bots, hidden from humans.
   Not display:none — some bots skip those and won't reveal themselves. */
.bc-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto; width: 1px; height: 1px;
  overflow: hidden;
}

/* Success / error notices */
.bc-alert { margin: 0 0 24px; padding: 14px 18px; border-radius: 2px; font-size: 14px; line-height: 1.5; }
.bc-alert p { margin: 0; }
.bc-alert ul { margin: 8px 0 0; padding-left: 18px; }
.bc-alert li { margin: 2px 0; }
.bc-alert--ok  { background: #f2f6ef; border: 1px solid #cde0c2; color: #2f5122; }
.bc-alert--err { background: #fbf1ef; border: 1px solid #e6c5be; color: #8a3122; }
