/* Bricktime Construction LLC — exterior restoration
   Design system: warm masonry palette, heritage serif display, clean sans UI */

:root {
  --ink: #171310;
  --ink-soft: #2B241E;
  --brick: #A4482A;
  --brick-dk: #85361D;
  --sand: #E7DCCC;
  --sand-lt: #F3EBE0;
  --paper: #FBF8F3;
  --muted: #6C6255;
  --line: #DFD5C6;
  --white: #fff;

  --maxw: 1200px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --r: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(23,19,16,.06), 0 2px 8px rgba(23,19,16,.05);
  --shadow: 0 4px 12px rgba(23,19,16,.08), 0 14px 38px rgba(23,19,16,.09);
  --shadow-lg: 0 8px 24px rgba(23,19,16,.11), 0 30px 70px rgba(23,19,16,.14);

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brick-dk); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .55em;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.09rem; line-height: 1.3; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--sand { background: var(--sand-lt); }
.section--ink { background: var(--ink); color: #D9D1C6; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- eyebrow / heads ---------- */
.eyebrow {
  font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brick); margin: 0 0 .85rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brick); flex: none; }
.section--ink .eyebrow { color: #D98A5F; }
.section--ink .eyebrow::before { background: #D98A5F; }

.head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }
.section--ink .lede { color: #ADA396; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--brick); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font: 600 1rem/1 var(--sans);
  padding: 1.02rem 1.7rem; border-radius: 100px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--brick-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { --bg: var(--white); border-color: var(--ink); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--light:hover { --bg: var(--sand-lt); }
.btn--onink { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.32); box-shadow: none; }
.btn--onink:hover { --bg: rgba(255,255,255,.1); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,243,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 1.4rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .68rem; text-decoration: none; margin-right: auto; flex: none; }
.brand__mk { width: 38px; height: 38px; flex: none; }
.brand__tx { display: flex; flex-direction: column; line-height: 1.05; }
.brand__nm { font-family: var(--serif); font-weight: 700; font-size: 1.31rem; color: var(--ink); letter-spacing: -.02em; }
.brand__sub { font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .95rem;
  padding: .55rem .78rem; border-radius: 8px; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover { background: var(--sand-lt); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brick); font-weight: 650; }
/* the in-nav CTA is for the mobile drawer only — the header bar already has one */
.nav > .btn { display: none; }

.hdr__cta { display: flex; align-items: center; gap: .7rem; flex: none; }
.hdr__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--ink); text-decoration: none; font-size: .97rem; white-space: nowrap;
}
.hdr__tel:hover { color: var(--brick); }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white);
  border-radius: 10px; cursor: pointer; padding: 0; place-items: center; flex: none;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: grid; }
  .hdr__cta .btn { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .6rem var(--gut) 1.6rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease;
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav > .btn { display: inline-flex; margin-top: 1rem; border-bottom: 0; }
}
@media (max-width: 560px) { .hdr__tel span { display: none; } }

/* ---------- hero ----------
   Split layout: the source photography is portrait phone work, so we frame it
   rather than crop it into a letterbox where the subject disappears. */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70rem 40rem at 82% 12%, rgba(164,72,42,.20), transparent 62%),
    radial-gradient(50rem 34rem at 4% 92%, rgba(231,220,204,.07), transparent 60%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(3.2rem, 7vw, 5.6rem);
}
.hero__in { max-width: 36rem; }
.hero__fig { position: relative; }
.hero__fig picture { display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__fig img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(23,19,16,.82); backdrop-filter: blur(8px);
  color: #E7DCCC; font-size: .84rem; font-weight: 600;
  padding: .7rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; padding-block: clamp(2.6rem, 8vw, 4rem); }
  .hero__fig { order: -1; max-width: 30rem; }
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 em { font-style: normal; color: #E8A177; }
.hero__lede { font-size: clamp(1.08rem, 1.9vw, 1.3rem); color: #CFC6BA; margin-bottom: 2rem; max-width: 40ch; }
.hero__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.9rem; padding: 0; }
.hero__tags li {
  list-style: none; font-size: .83rem; font-weight: 600; color: #E0D8CD;
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: .38rem .85rem;
  background: rgba(255,255,255,.05);
}

/* ---------- trust bar ---------- */
.trust { background: var(--ink-soft); color: #CEC5B8; border-top: 1px solid rgba(255,255,255,.09); }
.trust__in { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.trust__i {
  padding: 1.45rem 1.1rem 1.45rem 0; display: flex; gap: .8rem; align-items: flex-start;
  border-left: 1px solid rgba(255,255,255,.1); padding-left: 1.3rem;
}
.trust__i:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 900px) { .trust__i { border-left: 0; padding-left: 0; } }
.trust__i svg { flex: none; margin-top: 2px; color: #D98A5F; }
.trust__i b { color: #fff; display: block; font-size: .96rem; font-weight: 650; }
.trust__i span { font-size: .84rem; color: #9C9285; }

/* ---------- service cards ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.7rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .grid--2 { grid-template-columns: 1fr; } }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); }

.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #CBBEA9; }
.svc__img { aspect-ratio: 3/2; overflow: hidden; background: var(--sand); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__img img { transform: scale(1.045); }
.svc__b { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc__b h3 { margin-bottom: .5rem; }
.svc__b p { color: var(--muted); font-size: .96rem; margin-bottom: 1.1rem; }
.svc__list { list-style: none; margin: 0 0 1.3rem; padding: 0; font-size: .92rem; }
.svc__list li { padding-left: 1.35rem; position: relative; margin-bottom: .4rem; color: var(--ink-soft); }
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: .54em; width: 7px; height: 7px;
  background: var(--brick); border-radius: 2px;
}
.svc__more { margin-top: auto; font-weight: 650; color: var(--brick-dk); text-decoration: none; font-size: .95rem; display: inline-flex; gap: .4rem; align-items: center; }
.svc__more:hover { gap: .65rem; }
.svc__more::after { content: "→"; transition: transform .2s; }

/* ---------- before/after sequence ---------- */
.seq { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.seq--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.seq figure { margin: 0; }
.seq__img { position: relative; border-radius: var(--r); overflow: hidden; background: var(--sand); aspect-ratio: 4/5; }
.seq__img img { width: 100%; height: 100%; object-fit: cover; }
.seq__step {
  position: absolute; top: .85rem; left: .85rem;
  background: rgba(23,19,16,.88); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.seq figcaption { margin-top: .85rem; font-size: .93rem; color: var(--muted); }
.seq figcaption b { color: var(--ink); display: block; font-weight: 650; font-family: var(--serif); font-size: 1.05rem; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gal__i {
  position: relative; border: 0; padding: 0; background: var(--sand); cursor: zoom-in;
  border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; display: block; width: 100%;
}
.gal__i img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gal__i:hover img { transform: scale(1.05); }
.gal__cap {
  position: absolute; inset: auto 0 0; padding: 2.2rem .9rem .8rem; text-align: left;
  background: linear-gradient(transparent, rgba(23,19,16,.85));
  color: #fff; font-size: .87rem; font-weight: 600; opacity: 0; transition: opacity .25s;
}
.gal__i:hover .gal__cap, .gal__i:focus-visible .gal__cap { opacity: 1; }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.filters button {
  font: 600 .9rem var(--sans); padding: .58rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink-soft); cursor: pointer;
  transition: all .18s;
}
.filters button:hover { border-color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 300; background: rgba(12,10,8,.985);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 1.4rem;
  opacity: 0; pointer-events: none; transition: opacity .22s;
}
.lb[data-open="true"] { opacity: 1; pointer-events: auto; }
.lb img { max-width: min(1100px, 94vw); max-height: 82vh; border-radius: 8px; object-fit: contain; }
.lb__cap { color: #CFC6BA; text-align: center; margin-top: 1rem; font-size: .95rem; }
.lb__x {
  position: absolute; top: 1rem; right: 1rem; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.lb__x:hover { background: rgba(255,255,255,.24); }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
  border-radius: 50%; background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 1.4rem; cursor: pointer;
}
.lb__nav:hover { background: rgba(255,255,255,.24); }
.lb__nav--p { left: 1rem; } .lb__nav--n { right: 1rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
/* article + sidebar: give the reading column the room it needs */
.split--article { grid-template-columns: minmax(0, 1.75fr) minmax(280px, 1fr); align-items: start; }
.split--article .cbox { position: sticky; top: 96px; }
@media (max-width: 900px) { .split--article { grid-template-columns: 1fr; } .split--article .cbox { position: static; } }
.split__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- why cards (unnumbered, distinct from the numbered process) ---------- */
.whys { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); overflow: hidden; }
.wcard { background: var(--ink); padding: 1.7rem 1.6rem; }
.wcard h4 { display: flex; gap: .6rem; align-items: baseline; margin-bottom: .55rem; }
.wcard h4::before { content: ""; width: 9px; height: 9px; flex: none; background: var(--brick); border-radius: 2px; }
.wcard p { font-size: .93rem; color: #A69C8F; margin: 0; }

/* ---------- process ---------- */
.steps { counter-reset: s; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--brick); line-height: 1;
}
.step::after { content: ""; position: absolute; top: 2.55rem; left: 0; width: 34px; height: 2px; background: var(--line); }
.step h4 { margin-bottom: .4rem; }
.step p { font-size: .94rem; color: var(--muted); }
.section--ink .step p { color: #A69C8F; }
.section--ink .step::after { background: rgba(255,255,255,.2); }

/* ---------- areas ---------- */
.areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.area {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.25rem 1.35rem;
}
.area b { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); display: block; margin-bottom: .3rem; }
.area span { font-size: .87rem; color: var(--muted); line-height: 1.5; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details {
  border-bottom: 1px solid var(--line); padding: .3rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.6rem 1.15rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.22rem); font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--brick); font-family: var(--sans); font-weight: 300; transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 2.6rem 1.3rem 0; color: var(--muted); margin: 0; }

/* ---------- contact / form ---------- */
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: clamp(2rem, 4vw, 3.4rem); align-items: start; }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 650; color: var(--ink); }
.field .req { color: var(--brick); }
.field input, .field select, .field textarea {
  font: 400 1rem var(--sans); color: var(--ink);
  padding: .88rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: var(--white);
  width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(164,72,42,.14);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .84rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cbox { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.2rem); }
.cline { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cline:last-child { border-bottom: 0; padding-bottom: 0; }
.cline svg { flex: none; color: var(--brick); margin-top: 3px; }
.cline b { display: block; font-size: .79rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 700; margin-bottom: .15rem; }
.cline a, .cline span { color: var(--ink); font-weight: 600; text-decoration: none; font-size: 1.02rem; font-style: normal; }
.cline a:hover { color: var(--brick); }

/* ---------- CTA band ---------- */
.cta { background: var(--brick); color: #fff; }
.cta h2 { color: #fff; }
.cta p { color: #F6DDD1; }
.cta__in { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2rem; align-items: center; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: #9E9487; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .93rem; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.4rem; margin-bottom: 3rem; }
@media (max-width: 880px) { .ftr__grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
.ftr h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: .6rem; }
.ftr a { color: #9E9487; text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr__brand .brand__nm { color: #fff; }
.ftr__brand .brand__sub { color: #7E7466; }
.ftr__about { margin-top: 1.1rem; max-width: 34ch; line-height: 1.6; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .86rem; color: #7E7466;
}

/* ---------- page hero (inner pages) ---------- */
.phero { background: var(--ink); color: #CFC6BA; position: relative; overflow: hidden; }
.phero__img { position: absolute; inset: 0; }
.phero__img img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(23,19,16,.92), rgba(23,19,16,.6)); }
.phero__in { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5rem); max-width: 46rem; }
.phero h1 { color: #fff; }
.phero p { color: #C3BAAE; font-size: clamp(1.02rem, 1.6vw, 1.17rem); max-width: 46ch; }

.crumbs { font-size: .85rem; color: #8E8477; margin-bottom: 1.1rem; }
.crumbs a { color: #B3A99C; text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span { margin-inline: .45rem; opacity: .5; }

/* ---------- prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4rem; }
.prose ul li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px;
  background: var(--brick); border-radius: 2px;
}

.callout {
  background: var(--sand-lt); border-left: 3px solid var(--brick); border-radius: 0 var(--r) var(--r) 0;
  padding: 1.3rem 1.5rem; margin: 1.8rem 0; font-size: .97rem;
}
.callout b { color: var(--ink); }

/* ---------- TODO flag (removed before launch) ---------- */
.todo {
  background: #FFF4D6; border: 1px dashed #C99A1E; color: #6B5310;
  padding: .18rem .5rem; border-radius: 5px; font-size: .85em; font-weight: 650;
  font-family: var(--sans); display: inline-block;
}
.todo-box {
  background: #FFF9E8; border: 1px dashed #C99A1E; color: #6B5310;
  padding: 1rem 1.2rem; border-radius: 10px; margin: 1.2rem 0; font-size: .92rem;
}
.todo-box b { color: #4F3D0B; }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media print { .hdr, .ftr, .cta, .lb { display: none; } }

/* ---------- form submit feedback ---------- */
.form__status {
  font-size: .92rem; padding: .85rem 1rem; border-radius: 10px; margin: 0;
  background: var(--sand-lt); border: 1px solid var(--line); color: var(--ink-soft);
}
.form__status--err { background: #FCEEEA; border-color: #E4B3A4; color: #7A2E15; }
.form__done {
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--brick);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.2rem);
}
.form__done h3 { margin-bottom: .5rem; }
.form__done p { color: var(--muted); }
.form__done .btn { margin-top: .6rem; }
