@import url("fonts.css");

/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

/* ============================================================
   Αθανασίου Ρολά — "Χρυσό σε μαύρο"
   The logo's black and gold on warm off-white pages.
   Sofia Sans Condensed (headings) + Gothic A1 (text), both Greek.
   ============================================================ */
:root {
  --black: #0e0d0b;
  --black-2: #1b1915;
  --black-3: #26231e;
  --paper: #faf7f0;
  --paper-2: #f2ede2;
  --ink: #1c1a16;
  --ink-2: #57514a;          /* 7.3:1 on paper */
  --line: #e4dccb;
  --gold: #d4a537;           /* on black 9.4:1; black text on gold 9.4:1 */
  --gold-2: #b8892a;
  --gold-ink: #8a6414;       /* gold text on paper 5.1:1 */
  --radius: 14px;
  --wrap: 1200px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --head: "Sofia Sans Condensed", "Arial Narrow", system-ui, sans-serif;
  --text: "Gothic A1", system-ui, -apple-system, "Segoe UI", sans-serif;
}
html { scroll-padding-top: 90px; background: var(--paper); }
body { background: var(--paper); color: var(--ink); font: 400 1.0625rem/1.75 var(--text); }
h1, h2, h3 { font-family: var(--head); font-weight: 800; line-height: 1.05; color: var(--ink); letter-spacing: .005em; }
h3 { font-weight: 700; line-height: 1.2; }
a { color: var(--gold-ink); text-underline-offset: .18em; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 200; padding: .7rem 1rem; background: var(--gold); color: var(--black); border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.ico { width: 1.25rem; height: 1.25rem; flex: none; }

.eyebrow { margin: 0 0 .7rem; font: 700 .82rem/1.3 var(--text); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.sec-title { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); margin-bottom: 1rem; text-transform: uppercase; }
.sec-head { max-width: 50rem; margin-bottom: 2.2rem; }
.sec-head p:not(.eyebrow) { color: var(--ink-2); }
.lead { font-size: clamp(1.1rem, 1rem + .45vw, 1.3rem); }
.block { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.tint { background: var(--paper-2); }
.dark { background: var(--black); color: #e8e2d6; }
.dark .sec-title, .dark h3 { color: #fff; }
.dark .eyebrow { color: var(--gold); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; align-items: start; }
.more { margin-top: 1.5rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 3rem; padding: .7rem 1.35rem; border-radius: 8px; border: 2px solid transparent; font: 700 1rem/1.2 var(--text); text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease); }
.btn .ico { width: 1.15rem; height: 1.15rem; }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: #e3b64a; color: var(--black); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--black-3); color: var(--gold); }
.btn-outline-light { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-lg { min-height: 3.4rem; padding-inline: 1.6rem; font-size: 1.05rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--gold-ink); }
.link-arrow .ico { transition: transform .2s var(--ease); }
.link-arrow:hover .ico, .svc-card:hover .link-arrow .ico { transform: translateX(4px); }
.stretched { color: inherit; text-decoration: none; }
.stretched::after { content: ""; position: absolute; inset: 0; }

.ticks { list-style: none; display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; }
.ticks .ico { margin-top: .3rem; color: var(--gold-2); }
.dark .ticks .ico { color: var(--gold); }
.ticks.boxed { padding: 1.6rem 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--black); border-bottom: 1px solid rgba(212, 165, 55, .25); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; margin: 0 auto 0 0; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 4px; }
.brand-text { display: grid; line-height: 1; }
.brand-name { font: 800 1.55rem/1 var(--head); letter-spacing: .06em; color: #fff; }
.brand-sub { margin-top: .25rem; font: 700 .72rem/1 var(--text); letter-spacing: .22em; color: var(--gold); }
.nav ul { display: flex; gap: .1rem; list-style: none; }
.nav a { display: block; padding: .55rem .75rem; color: #efe9dc; font-weight: 700; font-size: .95rem; text-decoration: none; border-radius: 6px; }
.nav a:hover { color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.btn-quote { min-height: 2.7rem; padding: .5rem 1rem; font-size: .92rem; }
.nav-toggle { display: none; position: relative; width: 3rem; height: 3rem; border: 1px solid rgba(255, 255, 255, .35); border-radius: 8px; cursor: pointer; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after { position: absolute; left: 50%; width: 1.2rem; height: 2px; margin-left: -.6rem; background: #fff; content: ""; transition: transform .25s var(--ease); }
.nav-toggle .bars { top: 50%; }
.nav-toggle .bars::before { top: -7px; left: 0; margin: 0; }
.nav-toggle .bars::after { top: 7px; left: 0; margin: 0; }
.site-header.is-open .nav-toggle .bars { background: transparent; }
.site-header.is-open .nav-toggle .bars::before { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle .bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Home hero ---------- */
.hero { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(540px, 82vh, 780px); padding: 4rem 0 7rem; background: var(--black); color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 13, 11, .95) 0%, rgba(14, 13, 11, .82) 42%, rgba(14, 13, 11, .2) 80%); }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 span { display: block; font-size: clamp(3.2rem, 1.8rem + 6vw, 6.8rem); line-height: .95; }
.hero h1 small { display: block; margin-top: .6rem; font: 700 clamp(1.2rem, .9rem + 1.2vw, 1.9rem)/1.15 var(--head); letter-spacing: .06em; color: var(--gold); }
.hero .lead { max-width: 36rem; color: #efe9dc; }
.feats-wrap { position: relative; z-index: 2; margin-top: -3.5rem; }
.feats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; background: #fff; border-radius: var(--radius); box-shadow: 0 24px 50px -30px rgba(14, 13, 11, .5); border-top: 3px solid var(--gold); }
.feats li { display: flex; gap: .9rem; padding: 1.4rem 1.3rem; }
.feats li + li { border-left: 1px solid var(--line); }
.feats .ico { width: 2rem; height: 2rem; color: var(--gold-2); }
.feat-t { margin: 0 0 .25rem; font: 700 1.2rem/1.2 var(--head); color: var(--ink); }
.feats p { margin: 0; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }

.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.svc-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(14, 13, 11, .45); }
.svc-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; }
.svc-body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.3rem 1.5rem; }
.svc-body h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: .5rem; }
.svc-body p { font-size: .95rem; color: var(--ink-2); flex: 1; }

.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem 4rem; align-items: center; }
.why-stat { padding: 2.5rem; border: 2px solid var(--gold); border-radius: var(--radius); text-align: center; }
.big-num { margin: 0; font: 800 clamp(5rem, 3rem + 7vw, 9rem)/1 var(--head); color: var(--gold); }
.big-label { margin: 0; font: 700 1.4rem/1.2 var(--head); letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.why .ticks strong { color: #fff; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; counter-reset: s; }
.step { position: relative; padding: 1.5rem 1.3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step-n { display: block; margin-bottom: .6rem; font: 800 2.4rem/1 var(--head); color: var(--gold-2); }
.step h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.step p { margin: 0; font-size: .93rem; color: var(--ink-2); line-height: 1.6; }

.areas { background: var(--paper-2); }
.areas-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem 4rem; align-items: center; }
.areas-grid p { color: var(--ink-2); }
.area-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.area-list li { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-weight: 700; }
.area-list .ico { color: var(--gold-2); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem 4rem; align-items: start; }
.faq-grid > div:first-child p { color: var(--ink-2); }
.faqs { display: grid; gap: .6rem; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; cursor: pointer; list-style: none; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--gold-2); transition: transform .25s var(--ease); }
.faq[open] summary .ico { transform: rotate(45deg); }
.faq-body { padding: 0 1.3rem 1.1rem; color: var(--ink-2); }

.cta { background: var(--black); color: #e8e2d6; border-top: 3px solid var(--gold); }
.cta .sec-title { color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem 4rem; align-items: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }
.cta-actions .btn-lg { flex-basis: 100%; }

/* ---------- Service pages ---------- */
.page-hero { background: var(--black); color: #e8e2d6; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.page-hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem 3.5rem; align-items: center; }
.page-hero.has-photo .page-hero-grid { grid-template-columns: 1.05fr .95fr; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 1.6rem + 4vw, 4.8rem); text-transform: uppercase; margin-bottom: 1rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lead { max-width: 44rem; color: #efe9dc; }
.page-hero.is-slim h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); }
.page-hero-media { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212, 165, 55, .35); }
.page-hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.2rem; }
.hero-points li { display: flex; align-items: center; gap: .45rem; font-weight: 700; color: #fff; }
.hero-points .ico { color: var(--gold); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .3rem .6rem; list-style: none; margin-bottom: 1.2rem; font-size: .88rem; }
.crumbs li + li::before { content: "/"; margin-right: .6rem; color: #9c9384; }
.crumbs a { color: #d8d0c1; }
.crumbs [aria-current] { color: var(--gold); }

.types { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.type-card { padding: 1rem 1rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.type-card figure { margin: 0 0 1rem; aspect-ratio: 1; overflow: hidden; border-radius: 10px; background: #fff; display: grid; place-items: center; }
.type-card figure img { width: 100%; height: 100%; object-fit: contain; }
.type-card.is-photo figure { aspect-ratio: 4 / 3; }
.type-card.is-photo figure img { object-fit: cover; }
.type-card h3 { font-size: 1.45rem; text-transform: uppercase; margin-bottom: .4rem; }
.type-card p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.ops { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.op { padding: 1.5rem; background: #fff; border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.op h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.op p { margin: 0; color: var(--ink-2); }
.benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.benefit { padding: 1.6rem 1.4rem; background: var(--black-2); border: 1px solid rgba(212, 165, 55, .25); border-radius: var(--radius); }
.benefit .ico { width: 2.2rem; height: 2.2rem; color: var(--gold); margin-bottom: .8rem; }
.benefit h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .3rem; }
.benefit p { margin: 0; color: #cfc6b6; }
.faults { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.faults li { display: flex; gap: .6rem; align-items: flex-start; padding: .9rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-weight: 700; line-height: 1.4; }
.faults .ico { color: var(--gold-2); margin-top: .1rem; }
.sols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; list-style: none; }
.sol { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sol figure { margin: 0; }
.sol img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.sol-body { padding: 1.5rem 1.6rem 1.8rem; }
.sol-body h3 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: .5rem; }
.sol-body > p { color: var(--ink-2); }
.ctrls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.ctrl { padding: 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.ctrl .ico { width: 2rem; height: 2rem; color: var(--gold-2); margin-bottom: .6rem; }
.ctrl h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.ctrl p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.svc-minis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; list-style: none; }
.svc-mini { display: flex; flex-direction: column; padding: 1.6rem 1.4rem; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); }
.svc-mini .ico { width: 2.2rem; height: 2.2rem; color: var(--gold-2); margin-bottom: .8rem; }
.svc-mini h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .4rem; }
.svc-mini p { flex: 1; color: var(--ink-2); font-size: .95rem; }
.signs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.sign-card { padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.sign-card h3 { font-size: 1.6rem; text-transform: uppercase; margin-bottom: .9rem; }
.sign-card .ticks { font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.contact-card { padding: 2rem; background: var(--black); color: #e8e2d6; border-radius: var(--radius); position: sticky; top: 100px; }
.contact-card h2 { color: #fff; font-size: 2rem; text-transform: uppercase; margin-bottom: 1.2rem; }
.contact-list { list-style: none; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ico { width: 1.5rem; height: 1.5rem; margin-top: .2rem; color: var(--gold); }
.contact-list div { display: grid; }
.lbl { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #bdb3a2; }
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--gold); }
.contact-list .big { font: 800 1.8rem/1.2 var(--head); text-decoration: none; }
.form-card { padding: clamp(1.5rem, 3vw, 2.4rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 96px; }
.form-card h2 { font-size: 2.2rem; text-transform: uppercase; margin-bottom: .4rem; }
.form-intro { color: var(--ink-2); font-size: .95rem; }
.req { color: #9b2c1f; font-weight: 700; }
.request-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .25rem; }
.field label { font-weight: 700; }
.hint { margin: 0; font-size: .88rem; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; min-height: 3rem; padding: .7rem .9rem; border: 1.5px solid #b9ae98; border-radius: 8px; background: #fff; color: var(--ink); font: inherit; }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--ink); }
.field input[aria-invalid="true"] { border-color: #9b2c1f; }
.field-error { display: flex; gap: .4rem; align-items: center; margin: .1rem 0 0; color: #9b2c1f; font-weight: 700; font-size: .9rem; }
.field-error .ico { width: 1.1rem; height: 1.1rem; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.privacy-note { margin: 0; font-size: .88rem; color: var(--ink-2); }
.btn-submit { justify-self: start; }
.form-status { margin: 0; font-weight: 700; }
.form-status[data-kind="ok"] { color: #1f6b2f; }
.form-status[data-kind="error"] { color: #9b2c1f; }
.prose-page { max-width: 50rem; }
.prose-page h2 { font-size: 1.8rem; margin: 2rem 0 .6rem; }
.prose-page h2:first-child { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cfc6b6; border-top: 1px solid rgba(212, 165, 55, .25); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.1fr .9fr 1fr; gap: 2rem 3rem; padding: 3.5rem 0 2.5rem; }
.brand-footer { margin-bottom: 1rem; }
.footer-h { margin-bottom: .9rem; font: 700 .8rem/1.3 var(--text); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.footer-list { list-style: none; display: grid; gap: .55rem; }
.footer-list li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-list .ico { margin-top: .25rem; color: var(--gold); width: 1.1rem; height: 1.1rem; }
.small-light { font-size: .95rem; line-height: 1.8; }
.social { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; }
.colophon { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; padding: 1.1rem 0 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .88rem; }
.colophon p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .btn-quote { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 46rem; }
  .step { display: grid; grid-template-columns: 4rem 1fr; column-gap: 1rem; }
  .step-n { grid-row: span 2; margin: 0; }
}
@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 76px 0 auto; z-index: 90; display: none; padding: 1rem 1.25rem 1.5rem; background: var(--black); border-bottom: 1px solid rgba(212, 165, 55, .3); }
  .site-header.is-open .nav { display: block; }
  .nav ul { flex-direction: column; }
  .nav a { padding: .9rem .4rem; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, .08); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold); padding-left: 1rem; }
  .feats, .svc-grid, .types, .benefits, .svc-minis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feats li:nth-child(3) { border-left: 0; }
  .feats li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .ctrls { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .why-grid, .areas-grid, .faq-grid, .cta-inner, .contact-grid, .page-hero.has-photo .page-hero-grid { grid-template-columns: 1fr; }
  .ops, .signs, .sols { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .brand-name { font-size: 1.3rem; }
  .brand img { width: 42px; height: 42px; }
  .hero { min-height: 560px; padding-bottom: 5rem; }
  .hero-media::after { background: linear-gradient(0deg, rgba(14, 13, 11, .96) 0%, rgba(14, 13, 11, .8) 60%, rgba(14, 13, 11, .5) 100%); }
  .feats, .svc-grid, .types, .benefits, .svc-minis, .ctrls, .faults, .area-list { grid-template-columns: 1fr; }
  .feats li + li { border-left: 0; border-top: 1px solid var(--line); }
  .step { grid-template-columns: 3rem 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
