/* ==========================================================================
   M.J. BLINDS LTD — shared design system
   Family-run made-to-measure blinds · Tyldesley · est. 1983
   Rules (from the logo, do not change):
     Red is the dark. White is the light. Gold is hardware and keylines only.
     Gold is ALWAYS a gradient (never a flat fill). Never flood-fill gold.
   ========================================================================== */

:root {
  /* --- brand --- */
  --oxblood:   #8F0000;
  --oxblood-d: #6E0000;
  --oxblood-l: #A81208;
  --paper:     #FFFFFF;
  --bone:      #F6F1E9;
  --ink:       #1A0A0A;
  --gold-lo:   #D79A18;
  --gold-hi:   #FFEF25;

  /* gold is ONLY ever this gradient — brass hardware + keylines */
  --gold:        linear-gradient(180deg, var(--gold-hi), var(--gold-lo));
  --gold-hair:   linear-gradient(90deg, var(--gold-lo), var(--gold-hi), var(--gold-lo));

  /* derived neutrals (warm, tied to ink) */
  --ink-70:  rgba(26, 10, 10, 0.72);
  --ink-55:  rgba(26, 10, 10, 0.55);
  --ink-12:  rgba(26, 10, 10, 0.12);
  --ink-08:  rgba(26, 10, 10, 0.08);
  --paper-70: rgba(255, 255, 255, 0.74);
  --paper-55: rgba(255, 255, 255, 0.55);
  --bone-line: #E6DCCB;

  /* --- type --- */
  --f-fascia:  "Archivo Narrow", "Arial Narrow", system-ui, sans-serif;
  --f-display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --f-body:    "Newsreader", Georgia, "Times New Roman", serif;
  --f-mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* --- space --- */
  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sec: clamp(3.75rem, 8vw, 7rem);   /* section vertical rhythm */

  /* --- radius / shadow --- */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --shadow: 0 1px 2px rgba(26,10,10,.06), 0 18px 40px -26px rgba(26,10,10,.45);
  --shadow-bar: 0 -6px 20px -8px rgba(26,10,10,.30);

  /* --- motion --- */
  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t: 260ms cubic-bezier(.22,1,.36,1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.125rem;          /* 18px base for 35–70 eyes */
  line-height: 1.62;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--oxblood);
  outline-offset: 3px;
  border-radius: 3px;
}
.on-dark :focus-visible, .hero :focus-visible, [data-dark] :focus-visible {
  outline-color: var(--gold-hi);
}
.skip {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 8px;
  z-index: 200; transition: top var(--t-fast); font-family: var(--f-fascia); letter-spacing:.06em; text-transform:uppercase;
}
.skip:focus { top: 0; }

/* --------------------------------------------------------------- typography */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); letter-spacing: -.01em; }
h4 { font-size: 1.16rem; letter-spacing: 0; }
p { max-width: 64ch; }
strong { font-weight: 620; }
em { font-style: italic; }

.fascia {   /* signwriting caps — Archivo Narrow */
  font-family: var(--f-fascia);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
}
.eyebrow {
  font-family: var(--f-fascia);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--oxblood-l);
  display: inline-flex; align-items: center; gap: .6rem;
}
.on-dark .eyebrow { color: var(--gold-hi); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold); flex: none;
}
.label {   /* DM Mono — specs, measurements, meta */
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--ink-55);
  text-transform: uppercase;
}
.lead { font-size: clamp(1.18rem, 2vw, 1.4rem); line-height: 1.5; color: var(--ink-70); }

/* ------------------------------------------------------------------ layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--bone { background: var(--bone); }
.section--ink  { background: var(--ink); color: #F3EAE2; }
.section--ox {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--oxblood-l) 0%, transparent 55%),
    linear-gradient(160deg, var(--oxblood) 0%, var(--oxblood-d) 100%);
  color: #fff;
}
.section--ox, .section--ink { --local-dark: 1; }
.section--ox p, .section--ink p { color: rgba(255,255,255,.86); max-width: 60ch; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.stack > * + * { margin-top: 1.05rem; }

/* keyline — the gold hairline used as a "brass" rule between bands */
.keyline { height: 3px; border: 0; background: var(--gold-hair); opacity: .9; }
.keyline--thin { height: 2px; }

/* --------------------------------------------------------------- buttons */
.btn {
  --bg: var(--oxblood); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .85rem 1.5rem;
  font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; font-size: 1rem;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bd); border-radius: var(--r-sm);
  cursor: pointer; transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  text-align: center; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--oxblood); --fg:#fff; box-shadow: var(--shadow); }
.btn--primary:hover { --bg: var(--oxblood-d); }
.btn--light { --bg: var(--paper); --fg: var(--oxblood); }        /* solid CTA on dark bands */
.btn--light:hover { --bg: var(--bone); }
/* gold keyline button — gold appears ONLY as the border gradient, never a fill */
.btn--keyline {
  background: transparent; color: #fff; border: 0; position: relative;
  padding: calc(.85rem + 2px) calc(1.5rem + 2px);
}
.btn--keyline::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-sm); padding: 2px;
  background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.btn--keyline:hover { background: rgba(255,255,255,.08); }
.btn--ghost { background: transparent; color: var(--oxblood); --bd: var(--ink-12); }
.btn--ghost:hover { --bd: var(--oxblood); background: var(--bone); }
.btn--block { width: 100%; }
.btn__ico { width: 20px; height: 20px; flex: none; }

/* --------------------------------------------------------------- header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, var(--oxblood), var(--oxblood-d));
  color: #fff;
  border-bottom: 3px solid transparent;
  border-image: var(--gold-hair) 1;
}
.header__bar { display: flex; align-items: center; gap: 1rem; min-height: 70px; }
.brand { display: flex; align-items: baseline; gap: .55rem; margin-right: auto; }
.brand__mark {
  font-family: var(--f-fascia); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: #fff; white-space: nowrap;
}
.brand__mark b { color: var(--gold-hi); font-weight: 700; }
.brand__est { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .18em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .09em; font-weight: 600;
  font-size: .92rem; padding: .55rem .7rem; border-radius: 6px; color: rgba(255,255,255,.92);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav a:hover, .nav a[aria-current="page"] { background: rgba(255,255,255,.12); color: #fff; }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 0 var(--gold-hi); }
.header__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-fascia); font-weight: 700; letter-spacing: .04em; font-size: 1.05rem;
  padding: .5rem .9rem; border-radius: 6px;
  background: rgba(255,255,255,.1);
}
.header__phone::before { content:""; width: 18px; height: 18px; background: var(--gold); -webkit-mask: var(--ico-phone) center/contain no-repeat; mask: var(--ico-phone) center/contain no-repeat; }
.burger {
  display: none; background: rgba(255,255,255,.12); border: 0; color:#fff; width: 48px; height: 48px;
  border-radius: 8px; align-items: center; justify-content: center; cursor: pointer;
}
.burger svg { width: 24px; height: 24px; }

/* mobile nav panel */
.mobile-nav { display: none; }
@media (max-width: 900px) {
  .nav, .header__phone { display: none; }
  .burger { display: inline-flex; }
  .mobile-nav {
    display: block; background: var(--oxblood-d); color: #fff;
    border-bottom: 3px solid transparent; border-image: var(--gold-hair) 1;
    max-height: 0; overflow: hidden; transition: max-height var(--t);
  }
  .mobile-nav[data-open="true"] { max-height: 80vh; overflow: auto; }
  .mobile-nav ul { list-style: none; padding: .5rem var(--gut) 1.2rem; }
  .mobile-nav a {
    display: block; padding: .85rem .2rem; font-family: var(--f-fascia); text-transform: uppercase;
    letter-spacing: .08em; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.12);
  }
}

/* --------------------------------------------------------------- mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; grid-template-columns: 1.1fr .9fr;
  box-shadow: var(--shadow-bar);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 58px; font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}
.callbar__call { background: linear-gradient(180deg, var(--oxblood), var(--oxblood-d)); color: #fff; }
.callbar__book { background: var(--ink); color: #fff; border-left: 2px solid transparent; border-image: var(--gold) 1; }
.callbar svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .callbar { display: grid; }
  body { padding-bottom: 58px; }
}

/* --------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__eyebrow { color: var(--gold-hi); }
.hero h1 { color: #fff; text-wrap: balance; }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content:""; position:absolute; left:0; right:0; bottom: .04em; height: 5px; background: var(--gold); border-radius: 3px; }
.hero__sub { color: rgba(255,255,255,.9); font-size: clamp(1.1rem, 1.8vw, 1.3rem); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.hero__art { position: relative; }
.hero__art .window-svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); }
.hero__scrim { position: absolute; inset: 0; pointer-events: none; }
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 340px; margin-inline: auto; }
}

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; align-items: center;
  padding-block: 1rem; border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 1.5rem;
}
.trust li { list-style: none; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: rgba(255,255,255,.92); }
.trust li::before { content:""; width: 16px; height: 16px; flex: none; background: var(--gold); -webkit-mask: var(--ico-check) center/contain no-repeat; mask: var(--ico-check) center/contain no-repeat; }

/* --------------------------------------------------------------- section head */
.shead { max-width: 60ch; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.shead.center { margin-inline: auto; }
.shead h2 { margin-top: .5rem; text-wrap: balance; }
.shead p { margin-top: .8rem; color: var(--ink-70); }
.section--ox .shead p, .section--ink .shead p { color: rgba(255,255,255,.85); }

/* --------------------------------------------------------------- blind grid */
.blindgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 900px) { .blindgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blindgrid { grid-template-columns: 1fr; } }
.blindcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--bone-line); border-radius: var(--r);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.blindcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--oxblood); }
.blindcard__art {
  aspect-ratio: 4 / 3; background: var(--bone);
  display: grid; place-items: center; padding: 1.1rem; border-bottom: 1px solid var(--bone-line);
  position: relative;
}
.blindcard__art::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--gold-hair); opacity:.7; }
.blindcard__art svg { width: 100%; height: 100%; }
.blindcard__body { padding: 1.05rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.blindcard__body h3 { font-size: 1.28rem; }
.blindcard__body p { font-size: 1rem; color: var(--ink-70); line-height: 1.45; flex: 1; }
.blindcard__more { font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--oxblood); display: inline-flex; align-items: center; gap: .4rem; margin-top: .3rem; }
.blindcard__more::after { content:"→"; transition: transform var(--t-fast); }
.blindcard:hover .blindcard__more::after { transform: translateX(4px); }
.blindcard__link { position: absolute; inset: 0; z-index: 1; } /* whole card clickable */

/* --------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 2rem); counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 1rem; }
.step__n {
  font-family: var(--f-mono); font-weight: 500; font-size: 1rem;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: var(--oxblood); background: var(--paper); border: 2px solid transparent;
  position: relative; margin-bottom: 1rem;
}
.step__n::before { content:""; position: absolute; inset: -2px; border-radius: 50%; padding: 2px; background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.section--ox .step__n { background: var(--oxblood-d); color: #fff; }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-70); font-size: 1.02rem; }
.section--ox .step p { color: rgba(255,255,255,.86); }

/* --------------------------------------------------------------- feature list / guarantee */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
@media (max-width: 680px) { .features { grid-template-columns: 1fr; } }
.feature { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.feature__ico { width: 40px; height: 40px; border-radius: 10px; background: var(--bone); display: grid; place-items: center; flex: none; }
.section--ox .feature__ico { background: rgba(255,255,255,.1); }
.feature__ico svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: .15rem; }
.feature p { font-size: 1rem; color: var(--ink-70); }
.section--ox .feature p { color: rgba(255,255,255,.82); }

.guarantee-badge {
  display: inline-grid; place-items: center; text-align: center; gap: .1rem;
  width: 128px; height: 128px; border-radius: 50%; flex: none;
  background: var(--oxblood-d); position: relative; color: #fff;
}
.guarantee-badge::before { content:""; position:absolute; inset: 6px; border-radius: 50%; padding: 2px; background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.guarantee-badge b { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; }
.guarantee-badge span { font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; }

/* --------------------------------------------------------------- chips (areas) */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; }
.chip {
  font-family: var(--f-mono); font-size: .86rem; letter-spacing: .01em;
  padding: .5rem .9rem; border-radius: 999px; background: var(--paper);
  border: 1px solid var(--bone-line); color: var(--ink-70);
}
.section--ox .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.chip--strong { border-color: var(--oxblood); color: var(--oxblood); font-weight: 500; }

/* --------------------------------------------------------------- testimonials */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.5rem); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--paper); border: 1px solid var(--bone-line); border-radius: var(--r); padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.review__stars { display: inline-flex; gap: 2px; }
.review__stars svg { width: 20px; height: 20px; }
.review blockquote { font-size: 1.08rem; line-height: 1.5; }
.review figcaption { font-family: var(--f-mono); font-size: .82rem; color: var(--ink-55); margin-top: auto; }
.review figcaption b { color: var(--ink); font-family: var(--f-body); font-weight: 620; font-size: 1rem; display: block; }

/* --------------------------------------------------------------- form */
.formwrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; }
@media (max-width: 860px) { .formwrap { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1rem; background: var(--paper); border: 1px solid var(--bone-line); border-radius: var(--r-lg); padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--ink-70); }
.field label .req { color: var(--oxblood-l); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--ink-12); border-radius: var(--r-sm);
  background: var(--bone); font-family: var(--f-body); font-size: 1.05rem; transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--oxblood); background: var(--paper); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field--2 { grid-template-columns: 1fr 1fr; display: grid; gap: 1rem; }
@media (max-width: 480px){ .field--2 { grid-template-columns: 1fr; } }
.form__note { font-family: var(--f-mono); font-size: .78rem; color: var(--ink-55); }
.form__status { font-size: 1rem; padding: .8rem 1rem; border-radius: var(--r-sm); display: none; }
.form__status[data-state="ok"] { display: block; background: #eef7ef; border: 1px solid #bcdcc0; color: #1c5b2b; }
.form__status[data-state="err"] { display: block; background: #fbecea; border: 1px solid #e6b7b1; color: #8a1c12; }
.contact-list { list-style: none; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.contact-list .ico { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--bone); flex: none; }
.section--ox .contact-list .ico { background: rgba(255,255,255,.1); }
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list .k { font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--ink-55); }
.section--ox .contact-list .k { color: rgba(255,255,255,.7); }
.contact-list .v { font-size: 1.2rem; font-family: var(--f-mono); }
.contact-list .v a { border-bottom: 2px solid transparent; border-image: var(--gold) 1; }

/* the phone-as-headline (G3) */
.phone-display { font-family: var(--f-display); font-weight: 800; font-variant-numeric: tabular-nums; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.01em; line-height: 1.05; display: inline-block; }
.phone-display--dark { color: #fff; }

/* --------------------------------------------------------------- footer */
.footer { background: var(--ink); color: rgba(255,255,255,.8); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-block: clamp(2.5rem,5vw,4rem); }
@media (max-width: 820px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__top { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--f-fascia); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; color: #fff; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--gold-hi); }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer__brand .brand__mark { color: #fff; font-size: 1.4rem; }
.footer__brand p { font-size: 1rem; color: rgba(255,255,255,.62); }
.footer__legal { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between; font-family: var(--f-mono); font-size: .78rem; color: rgba(255,255,255,.55); }

/* Turbo IT attribution pill */
.turbo-pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-family: var(--f-mono); font-size: .74rem; color: rgba(255,255,255,.7);
}
.turbo-pill b { color: #fff; font-weight: 500; }
.turbo-pill:hover { border-color: var(--gold-lo); color: #fff; }

/* --------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t), transform var(--t); }
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- misc */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }
.card { background: var(--paper); border: 1px solid var(--bone-line); border-radius: var(--r); padding: clamp(1.2rem,2.5vw,1.8rem); }
.overline-rule { display:flex; align-items:center; gap: 1rem; }
.overline-rule::after { content:""; flex:1; height:2px; background: var(--gold-hair); opacity:.6; }

/* reduced motion + no-JS failsafe */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media (scripting: none) { .reveal { opacity: 1; transform: none; } }

/* icon masks (data-URIs) so gold gradient can paint through mask */
:root {
  --ico-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.3 1z'/%3E%3C/svg%3E");
  --ico-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
