/* ==========================================================================
   Nestor Auto Repair LLC — styles.css
   Edit the colours in :root and the whole site follows.
   ========================================================================== */

:root {
  --ink:        #0e0f11;   /* near-black — header, footer */
  --ink-2:      #16181c;   /* graphite — dark content bands */
  --ink-soft:   #22262c;   /* raised surfaces on dark */

  --red:        #d81f2a;   /* primary red — buttons, rules, accents */
  --red-deep:   #a3111c;   /* hover and links on light */
  --red-bright: #ff3b45;   /* red on dark backgrounds */

  --paper:      #f5f6f7;   /* page background */
  --panel:      #e8eaed;   /* light band */
  --steel:      #5f666f;   /* secondary text */
  --line:       #d6dae0;   /* hairlines on light */
  --cream:      #f3f5f7;   /* text on dark */
  --cream-soft: #c8ced6;   /* body text on dark */

  --display: "Archivo", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --gut: 1.25rem;
  --section: 4.5rem;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 1.0625rem; line-height: 1.66; font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 78px;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 700;
  line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.6rem, 11vw, 4.6rem); }
h2 { font-size: clamp(2rem, 7vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); letter-spacing: -0.025em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; max-width: 68ch; }
a { color: var(--red-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.lede { font-size: clamp(1.08rem, 2.2vw, 1.28rem); line-height: 1.55; color: var(--steel); }
.muted { color: var(--steel); }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.skip { position: absolute; left: -9999px; background: var(--red); color: #fff; padding: .75rem 1.1rem; z-index: 200; font-weight: 700; }
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 740px; }
.section { padding: var(--section) 0; }
.section-tight { padding: 3rem 0; }

.band-ink { background: var(--ink-2); color: var(--cream); }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: #fff; }
.band-ink p, .band-ink li, .band-ink dd { color: var(--cream-soft); }
.band-ink strong { color: #fff; }
.band-ink a { color: var(--red-bright); }
.band-panel { background: var(--panel); }

.rule { width: 64px; height: 3px; background: var(--red); border: 0; margin: 0 0 1.5rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-size: .95rem; font-weight: 700; letter-spacing: .02em;
  padding: 1rem 1.7rem; border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; text-align: center;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn:hover { text-decoration: none; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.band-ink .btn-ghost, .hero-full .btn-ghost, .cta-full .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.55);
}
.band-ink .btn-ghost:hover, .hero-full .btn-ghost:hover, .cta-full .btn-ghost:hover {
  background: #fff; color: var(--ink);
}
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.7rem 0 0; }
.btn-row .btn { flex: 1 1 100%; }
@media (min-width: 640px) { .btn-row .btn { flex: 0 0 auto; } }

/* ---------- Header ---------- */

.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); border-bottom: 3px solid var(--red); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 1rem; }
.wordmark { display: flex; flex-direction: column; line-height: 1.02; }
.wordmark a { color: #fff; }
.wordmark a:hover { text-decoration: none; }
.wordmark .name { font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -0.03em; color: #fff; text-transform: uppercase; }
.wordmark .sub { font-size: .62rem; letter-spacing: .26em; color: var(--cream-soft); margin-top: 3px; text-transform: uppercase; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 42px; padding: 0 10px; background: transparent;
  border: 1px solid rgba(255,255,255,.35); border-radius: 2px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; }

.site-nav { display: none; }
.site-nav.open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: .3rem 0 1rem; display: flex; flex-direction: column; }
.site-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
.site-nav a { display: block; padding: .85rem .2rem; color: #e6e9ec; font-size: 1rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red-bright); text-decoration: none; }
.site-nav .nav-cta { margin-top: .9rem; border: 0; }
.site-nav .nav-cta .btn { width: 100%; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
  .header-inner { min-height: 80px; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.3rem; padding: 0; }
  .site-nav li { border-bottom: 0; }
  .site-nav a { padding: 0; font-size: .92rem; font-weight: 600; }
  .site-nav .nav-cta { margin: 0 0 0 .5rem; }
  .site-nav .nav-cta .btn { width: auto; padding: .66rem 1.2rem; font-size: .86rem; }
  .wordmark .name { font-size: 1.45rem; }
}

/* ---------- Sticky action bar ---------- */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: grid; grid-template-columns: 1fr auto; gap: .55rem;
  background: rgba(14,15,17,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--red);
  padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
}
.callbar .btn { padding: .9rem .6rem; }
.callbar .btn-quote {
  display: inline-flex; align-items: center; padding: .9rem 1.15rem;
  border: 1px solid rgba(255,255,255,.45); color: #fff; border-radius: 2px;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
}
@media (min-width: 980px) { .callbar { display: none; } body { padding-bottom: 0; } }

/* ---------- Full-bleed hero ---------- */

.hero-full {
  position: relative; isolation: isolate; min-height: 88svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 1.4rem; overflow: hidden;
}
.hero-full > .hero-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-full::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,15,17,.80) 0%, rgba(14,15,17,.34) 30%, rgba(14,15,17,.82) 66%, rgba(14,15,17,.97) 100%),
    radial-gradient(110% 60% at 8% 92%, rgba(216,31,42,.34), transparent 60%);
}
.hero-full h1 { color: #fff; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: .8rem; text-wrap: balance; }
.hero-full h1 .mark { position: relative; display: inline-block; }
.hero-full h1 .mark::after {
  content: ""; position: absolute; left: -.03em; right: -.06em; bottom: .04em;
  height: .12em; background: var(--red); z-index: -1; transform: skewY(-1deg);
}
.hero-full .lede { color: #dfe3e8; max-width: 36ch; margin-bottom: 1.5rem; }
.hero-inner { position: relative; padding-bottom: 1rem; }

.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: #cdd3da; margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; flex: 0 0 28px; background: var(--red); }

.hero-strip {
  display: flex; gap: 1.4rem; overflow-x: auto; scrollbar-width: none;
  border-top: 1px solid rgba(255,255,255,.2); margin-top: 1.6rem;
  padding: .95rem var(--gut) 0; font-family: var(--display);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  color: #c3cad2; text-transform: uppercase; white-space: nowrap;
}
.hero-strip::-webkit-scrollbar { display: none; }

@media (min-width: 980px) {
  .hero-full { min-height: 84vh; padding-bottom: 2.2rem; }
  .hero-full h1 { font-size: clamp(3.8rem, 6.4vw, 6rem); }
  .hero-full .lede { font-size: 1.3rem; max-width: 42ch; }
}

/* ---------- Section headers ---------- */

.sec-head { position: relative; margin-bottom: 2rem; }
.sec-head .num {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--steel); margin-bottom: .9rem;
}
.sec-head .num::before { content: ""; width: 28px; height: 3px; flex: 0 0 28px; background: var(--red); }
.band-ink .sec-head .num { color: var(--cream-soft); }
.sec-head h2 { margin-bottom: .5rem; text-transform: uppercase; }
.sec-head p { color: var(--steel); max-width: 48ch; margin-bottom: 0; }
.band-ink .sec-head p { color: var(--cream-soft); }

.sec-head[data-ghost]::before {
  content: attr(data-ghost); position: absolute; top: -.4em; right: -.03em;
  font-family: var(--display); font-weight: 800; font-size: clamp(6rem, 25vw, 10rem);
  line-height: 1; letter-spacing: -.06em; color: transparent;
  -webkit-text-stroke: 1px rgba(216,31,42,.3); pointer-events: none; z-index: 0;
}
.band-ink .sec-head[data-ghost]::before { -webkit-text-stroke-color: rgba(255,59,69,.28); }
.sec-head .num, .sec-head h2, .sec-head p { position: relative; z-index: 1; }
@media (min-width: 980px) { .sec-head[data-ghost]::before { right: auto; left: -.08em; font-size: 10rem; } }

/* ---------- Service tiles ---------- */

.tiles { display: grid; gap: .9rem; }
.tile {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 1.4rem; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .3s ease;
}
.tile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,15,17,.14) 0%, rgba(14,15,17,.62) 52%, rgba(14,15,17,.95) 100%);
}
.tile:hover img { transform: scale(1.05); }
.tile:hover { text-decoration: none; }
.tile .tile-num { position: absolute; top: 1rem; left: 1.4rem; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .22em; color: var(--red-bright); }
.tile h3 { color: #fff; margin: 0 0 .4rem; text-transform: uppercase; }
.tile p { color: #cfd5dc; font-size: .95rem; margin: 0 0 .9rem; max-width: 34ch; }
.tile .tile-go {
  font-family: var(--display); font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #fff; border-top: 2px solid var(--red); padding-top: .7rem;
}
@media (min-width: 720px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tiles { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } .tile { min-height: 360px; } }

.tiles-stagger .tile:nth-child(odd) { margin-right: 1.5rem; }
.tiles-stagger .tile:nth-child(even) { margin-left: 1.5rem; min-height: 260px; }
@media (min-width: 720px) {
  .tiles-stagger .tile:nth-child(odd) { margin-right: 0; }
  .tiles-stagger .tile:nth-child(even) { margin-left: 0; margin-top: 2.4rem; min-height: 300px; }
}
@media (min-width: 1040px) {
  .tiles-stagger .tile { min-height: 360px; }
  .tiles-stagger .tile:nth-child(even) { margin-top: 0; }
  .tiles-stagger .tile:nth-child(2), .tiles-stagger .tile:nth-child(5) { margin-top: 3.2rem; }
  .tiles-stagger .tile:nth-child(3), .tiles-stagger .tile:nth-child(6) { margin-top: 1.6rem; }
}

/* the one red panel — parts policy */
.tile-wide {
  grid-column: 1 / -1; min-height: 0; justify-content: center;
  padding: 2rem 1.5rem; margin: 0 !important;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-deep) 82%);
  border-color: rgba(255,255,255,.32);
}
.tile-wide::before { background: radial-gradient(76% 120% at 90% 6%, rgba(255,255,255,.18), transparent 60%); }
.tile-wide .tile-num {
  position: static; display: flex; align-items: center; gap: .7rem; margin: 0 0 .9rem;
  color: #fff; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
}
.tile-wide .tile-num::before { content: ""; width: 28px; height: 3px; flex: 0 0 28px; background: #fff; }
.tile-wide h3 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
.tile-wide p { color: #ffe4e6; max-width: 48ch; }
.tile-wide .tile-go { align-self: flex-start; border-top: 0; border-bottom: 3px solid #fff; padding: 0 0 .4rem; }
@media (min-width: 720px) { .tile-wide { padding: 2.6rem 2.4rem; } }

/* ---------- Split feature ---------- */

.split { display: grid; gap: 0; }
.split-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: ""; position: absolute; inset: 1rem 1rem auto auto;
  width: 40%; height: 44%; border-top: 3px solid var(--red); border-right: 3px solid var(--red);
}
.split-body { position: relative; z-index: 2; margin-top: -2.4rem; margin-left: 1rem; background: var(--paper); padding: 2.1rem var(--gut) 2.5rem; }
.split-ink .split-body { background: var(--ink-2); color: var(--cream); }
.split-ink h2 { color: #fff; }
.split-ink p, .split-ink li { color: var(--cream-soft); }
.split-ink .sec-head .num { color: var(--cream-soft); }
@media (min-width: 980px) {
  .split { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .split-media { aspect-ratio: auto; min-height: 600px; }
  .split-body { margin-top: 0; margin-left: -4rem; margin-right: 2rem; align-self: center; padding: 3.4rem 3rem; box-shadow: 0 30px 70px -40px rgba(14,15,17,.55); }
  .split.flip .split-media { order: 2; }
  .split.flip .split-body { margin-left: 2rem; margin-right: -4rem; }
}

/* ---------- Lists ---------- */

.ticks { list-style: none; margin: 1.1rem 0 1.5rem; padding: 0; display: grid; gap: .6rem; }
.ticks li { padding-left: 1.5rem; position: relative; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .6em; width: 9px; height: 9px; border-bottom: 3px solid var(--red); border-right: 3px solid var(--red); transform: rotate(45deg); }

.menu-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.menu-list li { padding: .82rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.band-ink .menu-list li { border-bottom-color: rgba(255,255,255,.14); color: var(--cream); }

/* ---------- Reviews rail ---------- */

.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: .9rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin: 0 calc(var(--gut) * -1); padding: 0 var(--gut) .5rem;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rev {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-left: 4px solid var(--red); padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
}
.rev .stars { color: var(--red-bright); font-size: .95rem; letter-spacing: .16em; margin-bottom: .8rem; }
.rev blockquote { margin: 0 0 1rem; font-size: 1.1rem; line-height: 1.5; color: #fff; }
.rev cite { font-style: normal; font-size: .8rem; letter-spacing: .1em; color: var(--cream-soft); margin-top: auto; text-transform: uppercase; }
.rail .rev:nth-child(even) { margin-top: 1.4rem; }
@media (min-width: 780px) {
  .rail { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin: 0; padding: 0; }
  .rail .rev:nth-child(even) { margin-top: 2.2rem; }
}

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); margin-top: 1.6rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.4rem 1.1rem 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: .9rem; font-size: 1.5rem; color: var(--red); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 1.1rem; color: var(--steel); }
.band-ink .faq { border-top-color: rgba(255,255,255,.16); }
.band-ink .faq details { border-bottom-color: rgba(255,255,255,.16); }
.band-ink .faq summary { color: #fff; }
.band-ink .faq summary::after { color: var(--red-bright); }
.band-ink .faq details p { color: var(--cream-soft); }

/* ---------- Forms ---------- */

.form { display: grid; gap: 1rem; margin-top: 1.7rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: .82rem .9rem;
  border: 1px solid var(--line); border-radius: 2px; background: #fff; color: var(--ink); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.form-note { font-size: .87rem; color: var(--steel); }
.hp { position: absolute; left: -9999px; }
@media (min-width: 700px) { .field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } }

.band-ink .field label { color: #fff; }
.band-ink .field input, .band-ink .field select, .band-ink .field textarea {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.26); color: #fff;
}
.band-ink .field input::placeholder, .band-ink .field textarea::placeholder { color: #98a1ab; }
.band-ink .field select option { color: var(--ink); background: #fff; }
.band-ink .field input:focus, .band-ink .field select:focus, .band-ink .field textarea:focus { border-color: var(--red-bright); background: rgba(255,255,255,.1); }
.band-ink .form-note { color: var(--cream-soft); }

/* multi-select chips */
.chipset { border: 0; margin: 0; padding: 0; }
.chipset legend { font-size: .9rem; font-weight: 700; padding: 0; margin-bottom: .6rem; }
.band-ink .chipset legend { color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; display: inline-flex; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem;
  font-size: .93rem; line-height: 1.25; border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px; color: var(--cream); background: rgba(255,255,255,.05);
  transition: background-color .14s ease, border-color .14s ease, color .14s ease;
}
.chip span::before { content: ""; width: 14px; height: 14px; flex: 0 0 14px; border: 1px solid rgba(255,255,255,.5); }
.chip input:checked + span { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }
.chip input:checked + span::before { background: #fff; border-color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--red-bright); outline-offset: 3px; }

/* ---------- Contact ---------- */

.nap { display: grid; gap: 1.6rem; }
@media (min-width: 880px) { .nap { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.nap dl { margin: 0; display: grid; gap: 1.1rem; }
.nap dt { font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: .2rem; }
.band-ink .nap dt { color: var(--red-bright); }
.nap dd { margin: 0; font-size: 1.05rem; }
.map-embed { border: 1px solid var(--line); background: var(--panel); min-height: 320px; }
.band-ink .map-embed { border-color: rgba(255,255,255,.2); background: var(--ink-soft); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- Service area ---------- */

.towns { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.3rem 0 0; padding: 0; list-style: none; }
.towns li { border: 1px solid rgba(255,255,255,.26); color: var(--cream); padding: .45rem .95rem; font-size: .9rem; border-radius: 2px; }

/* ---------- Full-bleed CTA ---------- */

.cta-full { position: relative; isolation: isolate; overflow: hidden; padding: 4rem 0; color: #fff; }
.cta-full > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-full::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,15,17,.90), rgba(14,15,17,.94)),
              radial-gradient(90% 80% at 50% 0%, rgba(216,31,42,.34), transparent 62%);
}
.cta-full h2 { color: #fff; font-size: clamp(2.3rem, 10vw, 3.8rem); text-transform: uppercase; margin-bottom: .6rem; }
.cta-full .lede { color: #d9dee4; max-width: 46ch; }
@media (min-width: 980px) { .cta-full h2 { max-width: 14ch; } }

/* ---------- Image slots ---------- */

.photo {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; gap: .3rem; aspect-ratio: 4 / 3;
  background: var(--ink-2) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.18); color: var(--cream); padding: 1.2rem;
}
.photo.wide { aspect-ratio: 16 / 10; }
.photo.square { aspect-ratio: 1 / 1; }
.photo .photo-label { font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; position: relative; z-index: 4; }
.photo .photo-hint { font-size: .72rem; line-height: 1.5; color: var(--cream-soft); max-width: 32ch; margin: 0 0 .2rem; position: relative; z-index: 4; }
.photo-img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.photo.art-1 { background-image: url("art/1.svg"); }
.photo.art-2 { background-image: url("art/2.svg"); }
.photo.art-3 { background-image: url("art/3.svg"); }
.photo.art-4 { background-image: url("art/4.svg"); }
.photo.art-5 { background-image: url("art/5.svg"); }
.photo.art-6 { background-image: url("art/6.svg"); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: var(--cream-soft); padding: 3.2rem 0 2.2rem; border-top: 3px solid var(--red); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .02em; }
.site-footer a { color: var(--cream-soft); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .48rem; font-size: .95rem; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .83rem; color: #97a0aa; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between; }

/* ---------- Utility ---------- */

.center { text-align: center; }
.editnote { background: #fff1f2; border: 1px dashed var(--red); color: #8a1119; padding: .9rem 1.1rem; font-size: .9rem; margin: 1.2rem 0; border-radius: 2px; }
.band-ink .editnote { background: rgba(216,31,42,.14); border-color: rgba(255,59,69,.55); color: #ffd7da; }

.reveal { opacity: 0; transform: translateY(14px); animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards; }
.reveal-2 { animation-delay: .1s; }
.reveal-3 { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  * { transition-duration: .01ms !important; }
}
@media (max-width: 560px) { :root { --section: 3.4rem; } }

/* ==========================================================================
   FLAT SERVICE TILES — same shape and rhythm, no photography
   ========================================================================== */

.tile-flat {
  background: linear-gradient(158deg, #1d2128 0%, var(--ink) 86%);
  border: 1px solid rgba(255,255,255,.12);
  min-height: 250px;
  padding-top: 2.4rem;
}
.tile-flat::before {
  background: radial-gradient(72% 100% at 92% 4%, rgba(216,31,42,.22), transparent 62%);
}
.tile-flat:hover { border-color: rgba(216,31,42,.55); }

/* the number becomes the visual anchor in place of the photo */
.tile-flat .tile-num {
  top: .35rem; left: auto; right: 1rem;
  font-family: var(--display); font-weight: 800;
  font-size: 4.2rem; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(216,31,42,.45);
  line-height: 1; pointer-events: none;
}
.tile-flat h3 { margin-top: .2rem; }
.tile-flat p { color: #c3cad2; }

@media (min-width: 1040px) {
  .tiles-stagger .tile-flat { min-height: 280px; }
}
