/* =====================================================================
   Iron Sky Tattoo Studio, Bingley. Bespoke build by ShiftWeb.
   Concept: where iron meets sky. A heavy charcoal-iron ground under a
   cold pale horizon, lit by a forge-ember accent. Signature motif is the
   horizon rule that runs through the site, and the "six on the horizon"
   roster. Industrial signage type (Oswald) over a technical mono eyebrow.
   ===================================================================== */

:root {
  --iron:      #14161a;   /* near-black charcoal iron */
  --iron-2:    #1c2027;   /* raised iron panel */
  --iron-3:    #262b33;   /* brushed steel panel */
  --steel:     #6b7480;   /* mid steel */
  --steel-lt:  #98a3af;   /* light steel text on dark */
  --sky:       #c3ccd6;   /* cold pale sky */
  --sky-lt:    #e7ebef;   /* horizon light / pale steel-white */
  --paper:     #eef0f2;   /* light section base */
  --paper-2:   #e0e4e8;
  --ember:     #d1652c;   /* forge ember, hot iron */
  --ember-lt:  #e88445;
  --ember-dk:  #a94d1e;
  --line:      rgba(152,163,175,.22);
  --line-dk:   rgba(20,22,26,.14);

  --ff-display: "Oswald", "Arial Narrow", sans-serif;
  --ff-mono: "Space Mono", ui-monospace, "Courier New", monospace;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --r: 3px;                /* hard industrial radius */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--iron);
  color: var(--sky);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--sky-lt);
}
h1 { font-size: clamp(2.9rem, 8vw, 6.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; }
p { margin: 0 0 1.1em; }
strong { color: var(--sky-lt); font-weight: 600; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.narrow { width: min(760px, 92%); margin-inline: auto; }

section { padding: clamp(56px, 8vw, 118px) 0; position: relative; }

/* ---- technical mono eyebrow ---- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ember-lt);
  margin: 0 0 1.1em;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--ember);
  display: inline-block;
}
.eyebrow.steel { color: var(--steel-lt); }
.eyebrow.steel::before { background: var(--steel); }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--sky); }
.muted { color: var(--steel-lt); }

/* =================== SKIP + DEMO RIBBON =================== */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ember); color: #fff; padding: 10px 16px; z-index: 1000;
  font-family: var(--ff-mono); font-size: .8rem;
}
.skip-link:focus { left: 8px; top: 8px; }

.demo-ribbon {
  background: var(--iron-2);
  border-bottom: 1px solid var(--line);
  color: var(--steel-lt);
  font-size: .82rem;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--ff-body);
}
.demo-ribbon strong { color: var(--ember-lt); }

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(20,22,26,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand .mark { width: 40px; height: 40px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; font-family: var(--ff-display); text-transform: uppercase; }
.brand-name b { font-size: 1.24rem; font-weight: 700; letter-spacing: .06em; color: var(--sky-lt); }
.brand-name small { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .32em; color: var(--steel-lt); margin-top: 4px; }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.site-nav a {
  text-decoration: none; color: var(--steel-lt);
  font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 13px; border-radius: var(--r); transition: color .2s, background .2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--sky-lt); background: rgba(255,255,255,.04); }
.nav-cta { color: var(--iron) !important; background: var(--ember) !important; font-weight: 700; }
.nav-cta:hover { background: var(--ember-lt) !important; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r); width: 46px; height: 42px; cursor: pointer; padding: 0; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--sky); display: block; transition: .25s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--iron-2); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .site-nav.open { max-height: 460px; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 14px; gap: 4px; }
  .site-nav a { padding: 13px; font-size: .82rem; }
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 26px; border-radius: var(--r); text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s, background .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-ember { background: var(--ember); color: var(--iron); font-weight: 700; }
.btn-ember:hover { background: var(--ember-lt); }
.btn-steel { background: transparent; color: var(--sky-lt); border-color: var(--steel); }
.btn-steel:hover { border-color: var(--sky-lt); background: rgba(255,255,255,.04); }
.btn-dark { background: var(--iron); color: var(--sky-lt); }
.btn-dark:hover { background: var(--iron-2); }

/* =================== HORIZON RULE (signature) =================== */
.horizon {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--steel) 12%, var(--ember) 50%, var(--steel) 88%, transparent);
  opacity: .5;
}
.horizon-tag {
  display: flex; align-items: center; gap: 16px; padding: 30px 0;
}
.horizon-tag .line { flex: 1; height: 1px; background: var(--line); }
.horizon-tag .dot { width: 7px; height: 7px; background: var(--ember); border-radius: 50%; flex: none; box-shadow: 0 0 14px 2px rgba(209,101,44,.6); }
.horizon-tag .txt { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--steel-lt); }

/* =================== HERO =================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--iron); }
.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 70% 8%, rgba(232,132,69,.16), transparent 46%),
    linear-gradient(180deg, #2b323b 0%, #20252d 34%, #16181c 62%, #101216 100%);
}
/* the cold horizon band of light */
.hero-sky::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 30%;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(195,204,214,.10) 60%, rgba(195,204,214,.02));
  filter: blur(2px);
}
/* brushed-steel ground */
.hero-ground {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%; z-index: 1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 2px, transparent 2px 5px),
    linear-gradient(180deg, #1a1d22, #0e0f12);
  border-top: 1px solid rgba(195,204,214,.25);
  box-shadow: 0 -1px 30px rgba(209,101,44,.12);
}
.stars-layer { position: absolute; inset: 0; z-index: 0; }
.stars-layer i {
  position: absolute; width: 2px; height: 2px; background: var(--sky-lt); border-radius: 50%;
  opacity: .0; animation: twinkle 6s ease-in-out infinite;
}
.stars-layer i.warm { background: var(--ember-lt); }
@keyframes twinkle { 0%,100% { opacity: .1; } 50% { opacity: .8; } }

.hero-inner { position: relative; z-index: 3; width: min(var(--wrap), 92%); margin-inline: auto; padding-bottom: clamp(60px, 12vh, 130px); padding-top: 90px; }
.hero .eyebrow { color: var(--ember-lt); }
.hero h1 { color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.5); max-width: 15ch; }
.hero h1 .glow { color: var(--ember-lt); }
.hero-lede { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--sky); max-width: 46ch; margin-top: 8px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.tag { font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel-lt); border: 1px solid var(--line); border-radius: 40px; padding: 7px 14px; }
.tag::before { content: "+ "; color: var(--ember); }

.scroll-cue { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 4; font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--steel-lt); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--ember), transparent); }

/* =================== SPLIT / SLOTS =================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 74px); align-items: center; }
.split.flip .split-media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.flip .split-media { order: 0; } }

.slot {
  position: relative; background: var(--iron-3); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 240px;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 10px, transparent 10px 20px);
}
.slot img { width: 100%; height: 100%; object-fit: cover; }
.slot-label {
  position: absolute; inset: auto 12px 12px auto; z-index: 2;
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel-lt); background: rgba(20,22,26,.72); border: 1px solid var(--line);
  padding: 5px 9px; border-radius: var(--r); text-align: right; line-height: 1.5;
}
.slot .rivet { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: radial-gradient(var(--steel-lt), var(--iron)); }
.slot .rivet.tl { top: 10px; left: 10px; } .slot .rivet.tr { top: 10px; right: 10px; }
.slot .rivet.bl { bottom: 10px; left: 10px; } .slot .rivet.br { bottom: 10px; right: 10px; }
.ar-portrait { aspect-ratio: 4/5; }
.ar-wide { aspect-ratio: 16/10; }
.ar-square { aspect-ratio: 1/1; }

/* =================== SECTION HEADS =================== */
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-num { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .2em; color: var(--steel); display: flex; gap: 12px; align-items: baseline; margin-bottom: 10px; }
.section-num b { color: var(--ember); font-size: .8rem; }

/* =================== PANELS =================== */
.band-panel { background: var(--iron-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-steel { background: linear-gradient(180deg, var(--iron-2), var(--iron)); }
.band-light { background: var(--paper); color: #2a2f36; }
.band-light h1,.band-light h2,.band-light h3 { color: #1a1d22; }
.band-light .muted { color: #5a626c; }
.band-light .lead { color: #384049; }
.band-light .eyebrow { color: var(--ember-dk); }
.band-light .eyebrow::before { background: var(--ember-dk); }

/* =================== PILLARS (what we do) =================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--line); background: var(--iron-2); transition: background .25s; position: relative; }
.pillar:last-child { border-right: 0; }
@media (max-width: 820px) { .pillar { border-right: 0; border-bottom: 1px solid var(--line); } .pillar:last-child { border-bottom: 0; } }
.pillar:hover { background: var(--iron-3); }
.pillar .n { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .2em; color: var(--ember); }
.pillar h3 { margin: 16px 0 10px; }
.pillar .go { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ember-lt); text-decoration: none; display: inline-flex; gap: 8px; margin-top: 8px; }
.pillar .go::after { content: "\2192"; transition: transform .2s; }
.pillar:hover .go::after { transform: translateX(5px); }

/* =================== SIX ON THE HORIZON (roster) =================== */
.roster-horizon { position: relative; padding-top: 26px; }
.roster-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 960px) { .roster-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .roster-grid { grid-template-columns: repeat(2, 1fr); } }
.artist-plate {
  background: var(--iron-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s, border-color .2s;
}
.artist-plate:hover { transform: translateY(-4px); border-color: var(--ember); }
.artist-plate .pic { aspect-ratio: 3/4; background: var(--iron-3); position: relative; display: flex; align-items: center; justify-content: center; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 10px, transparent 10px 20px); }
.artist-plate .pic img { width: 100%; height: 100%; object-fit: cover; }
.artist-plate .pic .ph { font-family: var(--ff-mono); font-size: .56rem; letter-spacing: .12em; color: var(--steel); text-align: center; text-transform: uppercase; }
.artist-plate .no { position: absolute; top: 8px; left: 8px; font-family: var(--ff-mono); font-size: .64rem; color: var(--ember-lt); background: rgba(20,22,26,.7); padding: 3px 7px; border-radius: 2px; }
.artist-plate .meta { padding: 13px 14px 16px; }
.artist-plate .meta b { font-family: var(--ff-display); text-transform: uppercase; font-weight: 600; font-size: 1.06rem; color: var(--sky-lt); letter-spacing: .02em; display: block; }
.artist-plate .meta span { font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .1em; color: var(--steel-lt); text-transform: uppercase; }

/* larger artist cards (artists page) */
.artist-row { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 54px); align-items: center; padding: clamp(30px,4vw,52px) 0; border-bottom: 1px solid var(--line); }
.artist-row:last-child { border-bottom: 0; }
@media (max-width: 720px) { .artist-row { grid-template-columns: 1fr; } }
.artist-row .portrait { aspect-ratio: 4/5; }
.artist-row .a-no { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .2em; color: var(--ember); margin-bottom: 8px; }
.artist-row h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 6px; }
.artist-row .handle { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .08em; color: var(--steel-lt); margin-bottom: 16px; }
.artist-row .styles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.artist-row .styles span { font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); border: 1px solid var(--line); padding: 5px 11px; border-radius: 30px; }

/* =================== FLASH WALL (gallery marquee) =================== */
.flashwall { overflow: hidden; padding: 8px 0; }
.flash-track { display: flex; gap: 16px; width: max-content; animation: roll 46s linear infinite; }
.flashwall:hover .flash-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .flash-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }
.flash-plate {
  width: 220px; flex: none; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden;
  background: var(--iron-3); border: 1px solid var(--line); position: relative;
  display: flex; align-items: flex-end; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px);
}
.flash-plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.flash-plate .cap { position: relative; z-index: 2; font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sky-lt); background: linear-gradient(transparent, rgba(20,22,26,.85)); width: 100%; padding: 24px 12px 10px; }
@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================== LEDGER (stats) =================== */
.ledger { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (max-width: 720px) { .ledger { grid-template-columns: repeat(2, 1fr); } }
.ledger .cell { background: var(--iron-2); padding: clamp(22px,3vw,34px) 20px; text-align: center; }
.ledger b { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--ember-lt); display: block; line-height: 1; }
.ledger span { font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-lt); margin-top: 10px; display: block; }

/* =================== REVIEWS (etched plates) =================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--iron-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; position: relative;
}
.review .stars { color: var(--ember); letter-spacing: 3px; font-size: .9rem; margin-bottom: 12px; }
.review p { font-size: 1.02rem; color: var(--sky-lt); font-style: italic; }
.review cite { font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel-lt); font-style: normal; }
.review::before { content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 2px; background: var(--ember); opacity: .5; }

/* =================== CTA BAND =================== */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; }

/* =================== ONELINE STATEMENT =================== */
.oneline { text-align: center; background: var(--band, var(--iron)); }
.oneline .big { font-family: var(--ff-display); text-transform: uppercase; font-weight: 600; font-size: clamp(1.7rem, 4.5vw, 3.4rem); color: var(--sky-lt); max-width: 20ch; margin: 0 auto .5em; line-height: 1.06; }
.oneline .big em { color: var(--ember-lt); font-style: normal; }

/* =================== INFO / VISIT =================== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--iron-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.info-card h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 10px; }
.info-card .k { font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ember-lt); }
.info-card p { margin: 3px 0 14px; }
.info-card a { color: var(--sky-lt); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--ff-mono); font-size: .82rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d { color: var(--steel-lt); letter-spacing: .08em; text-transform: uppercase; }
.hours-list .t { color: var(--sky-lt); }

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.steps li::before { content: counter(s, decimal-leading-zero); font-family: var(--ff-mono); font-size: .9rem; color: var(--ember); border: 1px solid var(--line); border-radius: var(--r); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }
.steps li h4 { font-family: var(--ff-body); text-transform: none; font-size: 1.05rem; color: var(--sky-lt); margin: 6px 0 4px; }
.steps li p { margin: 0; color: var(--steel-lt); }

.map-embed { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; filter: grayscale(1) contrast(1.05) brightness(.82); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

.callout { background: var(--iron-2); border: 1px solid var(--line); border-left: 3px solid var(--ember); border-radius: var(--r); padding: 20px 24px; }
.callout .k { font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ember-lt); display: block; margin-bottom: 6px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; padding: 16px 0; font-family: var(--ff-display); text-transform: uppercase; font-weight: 500; font-size: 1.12rem; color: var(--sky-lt); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ember); font-family: var(--ff-mono); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--steel-lt); padding-bottom: 16px; margin: 0; }

/* =================== PAGE HERO (inner) =================== */
.page-hero { position: relative; padding: clamp(80px, 12vh, 150px) 0 clamp(44px, 6vw, 74px); overflow: hidden; background: linear-gradient(180deg, #23282f, #16181c); border-bottom: 1px solid rgba(195,204,214,.2); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--ember), transparent); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; }
.page-hero p { max-width: 52ch; color: var(--sky); }

/* =================== FOOTER =================== */
.site-footer { background: #0e0f12; border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 78px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .mark { width: 38px; height: 38px; }
.footer-brand b { font-family: var(--ff-display); text-transform: uppercase; font-weight: 700; letter-spacing: .06em; font-size: 1.2rem; color: var(--sky-lt); }
.site-footer p { color: var(--steel-lt); font-size: .92rem; }
.site-footer h4 { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ember-lt); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--steel-lt); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--sky-lt); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .06em; color: var(--steel); }
.footer-bottom a { color: var(--ember-lt); text-decoration: none; }

/* =================== REVEAL =================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* aftercare list */
.care-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 720px){ .care-grid { grid-template-columns: 1fr; } }
.care-grid .info-card ul { margin: 0; padding-left: 18px; color: var(--steel-lt); }
.care-grid .info-card ul li { margin-bottom: 7px; }
