/* =========================================================================
   CROWN PRESS INC — site stylesheet
   Editorial red / black / white on a light-gray canvas.
   Type: Archivo (display) + Inter (text). Standalone static build.
   ========================================================================= */

:root {
  --bg:         #f0f0ee;
  --surface:    #ffffff;
  --ink:        #141414;
  --ink-2:      #2a2a2a;
  --text:       #3a3a3a;
  --muted:      #6a6a6a;
  --muted-2:    #8a8a8a;
  --rule:       #e0ddd8;
  --rule-2:     #d0cdc8;
  --red:        #c8102e;
  --red-dark:   #a00d24;
  --red-light:  #e63a4f;
  --red-on-dark:#f6505f;  /* lighter red for small text/labels on dark bg (AA ≥4.5:1) */
  --red-tint:   #faf2f3;
  --shadow-sm:  0 1px 3px rgba(20,20,20,.06);
  --shadow-md:  0 8px 24px -12px rgba(20,20,20,.18);
  --shadow-lg:  0 24px 55px -25px rgba(20,20,20,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 4px 0;
  font-weight: 600; font-size: 0.9rem;
}
.skip:focus { left: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.75rem; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 1.75rem; }
.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;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 24px; height: 1.5px; background: var(--red); }
/* Small red text/labels on dark backgrounds use a lighter red to keep AA contrast */
.section-dark .eyebrow, .why .eyebrow, .cta-band .eyebrow,
.section-dark .eyebrow::before, .why .eyebrow::before, .cta-band .eyebrow::before { color: var(--red-on-dark); }
.section-dark .eyebrow::before, .why .eyebrow::before, .cta-band .eyebrow::before { background: var(--red-on-dark); }
.method-card.is-primary .m-label, .quote-card .label,
.side-meta-block strong, .ind-cta.is-dark, .section-dark .service-tag { color: var(--red-on-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif; font-weight: 600; color: var(--ink);
  letter-spacing: -0.022em; line-height: 1.12;
}

.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-dark { background: var(--ink); color: rgba(255,255,255,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 { color: #fff !important; }
.bg-surface { background: var(--surface); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 14px 24px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.01em; border-radius: 3px; text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer; line-height: 1.2; min-height: 44px;
}
.btn.primary { background: var(--red); color: #fff !important; border-color: var(--red); }
.btn.primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(200,16,46,.45); }
.btn.ghost { background: transparent; color: var(--ink) !important; border-color: var(--rule-2); }
.btn.ghost:hover { background: var(--ink); color: #fff !important; border-color: var(--ink); }
.btn.light { background: #fff; color: var(--ink) !important; border-color: #fff; }
.btn.light:hover { background: var(--red); color: #fff !important; border-color: var(--red); }
.btn .arrow { display: inline-block; transition: transform .2s ease; font-size: 1.05em; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HEADER ============ */
.topbar {
  background: var(--ink); color: rgba(255,255,255,0.75); font-size: 0.78rem;
  padding: 0.55rem 0; border-bottom: 2px solid var(--red); position: relative; z-index: 10001;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar .left { display: flex; align-items: center; gap: 1.4rem; }
.topbar .left span { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar .left span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.topbar a { color: #fff; font-weight: 500; }
.topbar a:hover { color: var(--red-light); }

header.site {
  background: #fff; border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 9999;
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 56px; width: auto; display: block; }

nav .menu { list-style: none; display: flex; gap: 0.4rem; align-items: center; }
nav .menu > li { position: relative; }
nav .menu > li > a {
  display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.55rem 0.85rem;
  color: var(--ink); font-size: 0.92rem; font-weight: 500; text-decoration: none;
  border-radius: 2px; transition: color .2s ease, background .2s ease;
}
nav .menu > li > a:hover, nav .menu > li > a.active { color: var(--red); }
nav .menu > li > a:not(.btn)::after {
  content: ""; position: absolute; bottom: 4px; left: 0.85rem; right: 0.85rem;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
nav .menu > li > a:not(.btn):hover::after,
nav .menu > li > a.active::after { transform: scaleX(1); }

nav .caret {
  width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-bottom: 3px; transition: transform 0.2s ease;
}
nav .has-dropdown:hover .caret, nav .has-dropdown:focus-within .caret { transform: rotate(-135deg); margin-bottom: -3px; }

/* Dropdowns — absolute, centered under their nav item (robust, no fixed offsets) */
nav .dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%;
  background: #fff; border: 1px solid var(--rule); border-radius: 3px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.22);
  width: 720px; max-width: calc(100vw - 40px);
  padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.25rem;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10000; list-style: none;
}
nav .dropdown::before { content: ""; position: absolute; top: -3px; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 3px 3px 0 0; }
nav .dropdown::after { content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }
nav .has-dropdown:hover .dropdown, nav .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
nav .dropdown li { list-style: none; }
nav .dropdown a {
  display: block; padding: 0.7rem 0.8rem; border-radius: 2px; text-decoration: none;
  color: var(--ink); font-size: 0.88rem; font-weight: 500; transition: background .15s ease, color .15s ease;
}
nav .dropdown a:hover { background: var(--red-tint); color: var(--red); }
nav .dropdown a .dd-sub { display: block; font-size: 0.74rem; font-weight: 400; color: var(--muted); margin-top: 2px; letter-spacing: 0; }
nav .dropdown a:hover .dd-sub { color: var(--muted); }

/* Service-area dropdown: compact single column */
nav .dropdown.dropdown--area { width: 300px; grid-template-columns: 1fr; padding: 0.9rem; gap: 0.1rem; }

.menu-toggle {
  display: none; background: transparent; border: 0; cursor: pointer; padding: 10px;
  color: var(--ink); min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.menu-toggle .bars { display: grid; gap: 5px; width: 24px; }
.menu-toggle .bars span { display: block; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-close { display: none; }

/* ============ BREADCRUMBS ============ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 1rem 0 0; font-size: 0.82rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.crumbs a:hover { color: var(--red); }
.crumbs .crumb-sep { color: var(--muted-2); }
.crumbs .crumb-current { color: var(--ink); font-weight: 500; }

/* ============ HERO (home) ============ */
.hero { background: var(--bg); padding: 5rem 0 5.5rem; position: relative; overflow: hidden; }
.hero-grid { display: flex; flex-wrap: nowrap; align-items: center; gap: 4rem; position: relative; z-index: 2; }
.hero-text { width: 56%; flex: 0 0 56%; min-width: 0; }
.hero-photo {
  width: 40%; flex: 0 0 40%; min-width: 0; position: relative; border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--rule); aspect-ratio: 4 / 3;
}
.hero-photo::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); z-index: 2; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute; left: 1rem; bottom: 1rem; background: var(--ink); color: #fff;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.55rem 0.9rem; border-radius: 2px; z-index: 2; display: inline-flex; align-items: center; gap: 0.55rem;
}
.hero-photo-tag::before { content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero-headline { display: flex; align-items: flex-start; gap: 2rem; margin: 1.4rem 0 1.6rem; flex-wrap: wrap; }
.hero h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.05; letter-spacing: -0.028em; flex: 1 1 auto; }
.hero h1 .red { color: var(--red); }
.hero-years { display: flex; flex-direction: column; border-left: 3px solid var(--red); padding-left: 1.1rem; margin-top: 0.5rem; flex-shrink: 0; }
.hero-years-num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.hero-years-plus { color: var(--red); }
.hero-years-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.45rem; max-width: 130px; line-height: 1.4; }
.hero .lead { font-size: 1.08rem; line-height: 1.65; color: var(--text); max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-trust-item strong { font-family: 'Archivo', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.hero-trust-item span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; }

/* ============ SECTION HEADER ============ */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-header .left { flex: 1 1 420px; }
.section-header .right { flex: 0 1 380px; }
.section-header h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); line-height: 1.08; margin-top: 0.85rem; }
.section-header h2 .red { color: var(--red); }
.section-header .right p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.section-dark .section-header .right p { color: rgba(255,255,255,0.6); }

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.service { background: var(--surface); padding: 2.25rem 2rem; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); position: relative; transition: background .2s ease; }
.service::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width .3s ease; }
.service:hover { background: #faf6f6; }
.service:hover::before { width: 100%; }
.service-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--red); font-weight: 600; margin-bottom: 0.9rem; }
.service h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; letter-spacing: -0.015em; }
.service p { font-size: 0.92rem; line-height: 1.6; color: var(--muted); margin-bottom: 1.5rem; flex: 1; }
.service-arrow { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); display: inline-flex; align-items: center; gap: 0.5rem; transition: color .2s ease, gap .2s ease; }
.service:hover .service-arrow { color: var(--red); gap: 0.8rem; }

/* ============ WHY (numbered, dark) ============ */
.why { background: var(--ink); color: rgba(255,255,255,0.85); padding: 5rem 0; }
.why .section-header h2, .why .section-header h2 * { color: #fff; }
.why .section-header .right p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.why-item { padding: 0 2rem; border-right: 1px solid rgba(255,255,255,0.12); }
.why-item:last-child { border-right: none; padding-right: 0; }
.why-item:first-child { padding-left: 0; }
.why-num { font-family: 'Archivo', sans-serif; font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -0.04em; margin-bottom: 1.4rem; }
.why-item h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.7rem; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.94rem; line-height: 1.65; }

/* ============ CAPABILITIES / CARD GRID ============ */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cap-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cap-item { background: var(--surface); border: 1px solid var(--rule); border-radius: 4px; padding: 1.85rem; position: relative; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.cap-item::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width .3s ease; border-radius: 4px 0 0 0; }
.cap-item:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cap-item:hover::before { width: 100%; }
.cap-item h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.cap-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step-num { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--red); margin-bottom: 0.85rem; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ============ INDUSTRIES (home cards) ============ */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.industry { background: var(--surface); padding: 1.85rem; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); transition: background .2s ease; }
.industry:hover { background: var(--red-tint); }
.industry-icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--red); }
.industry h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.industry p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ============ LOCATIONS STRIP ============ */
.locations { background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 3rem 0; }
.locations-row { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.locations-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--red); flex-shrink: 0; }
.locations-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; list-style: none; flex: 1; }
.locations-list a { color: var(--ink); font-size: 0.94rem; font-weight: 500; text-decoration: none; transition: color .2s ease; }
.locations-list a:hover { color: var(--red); }
.locations-list li { position: relative; }
.locations-list li:not(:last-child)::after { content: "·"; color: var(--muted-2); margin-left: 1.5rem; position: absolute; right: -1rem; }

/* ============ CONTACT (home + contact page) ============ */
.contact { background: transparent; }
.contact-grid { display: flex; flex-wrap: nowrap; gap: 3rem; align-items: stretch; }
.contact-main { width: 56%; flex: 0 0 56%; min-width: 0; }
.contact-side { width: 40%; flex: 0 0 40%; min-width: 0; display: flex; }
.contact h2 { font-size: clamp(1.95rem, 3.4vw, 2.85rem); margin: 0.7rem 0 1rem; }
.contact h2 .red { color: var(--red); }
.contact .lead { font-size: 1.05rem; color: var(--text); max-width: 500px; margin-bottom: 2.25rem; line-height: 1.65; }
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.method-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 4px; padding: 1.5rem; text-decoration: none; color: var(--ink); position: relative; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.method-card.is-primary { background: var(--ink); color: #fff; border-color: var(--ink); grid-column: 1 / -1; }
.method-card.is-primary::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--red); }
.method-card:hover { transform: translateY(-2px); border-color: var(--red); box-shadow: var(--shadow-md); }
.method-card .m-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--red); margin-bottom: 0.85rem; }
.method-card.is-primary .m-label { color: var(--red-light); }
.method-card .m-value { font-family: 'Archivo', sans-serif; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.5rem; word-break: break-word; }
.method-card.is-primary .m-value { color: #fff; }
.method-card .m-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.method-card.is-primary .m-desc { color: rgba(255,255,255,0.7); }
.method-card .m-cta { margin-top: auto; padding-top: 1rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); display: inline-flex; align-items: center; gap: 0.4rem; }
.method-card.is-primary .m-cta { color: #fff; }

/* Dark side card (visit the shop / quote) */
.quote-card { background: var(--ink); color: #fff; padding: 2.5rem; position: relative; overflow: hidden; border-radius: 4px; display: flex; flex-direction: column; width: 100%; }
.quote-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.quote-card .label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--red-light); margin-bottom: 1.1rem; display: block; }
.quote-card h3 { font-size: 1.55rem; margin-bottom: 1rem; color: #fff !important; letter-spacing: -0.015em; }
.quote-card p { color: rgba(255,255,255,0.72); font-size: 0.96rem; line-height: 1.65; margin-bottom: 1.75rem; }
.side-meta { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.4rem; font-size: 0.9rem; display: grid; gap: 0.85rem; }
.side-meta-block strong { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; color: var(--red-light); margin-bottom: 0.35rem; }
.side-meta-block div { color: rgba(255,255,255,0.85); line-height: 1.55; }
.side-meta-block a { color: rgba(255,255,255,0.85); text-decoration: none; }
.side-meta-block a:hover { color: #fff; }
.side-socials { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.side-socials a { border: 1px solid rgba(255,255,255,0.25); border-radius: 2px; padding: 12px 18px; text-decoration: none; font-size: 0.82rem; color: #fff; transition: background .2s ease, border-color .2s ease; min-height: 44px; display: inline-flex; align-items: center; }
.side-socials a:hover { background: var(--red); border-color: var(--red); }
.quote-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============ CTA BAND (inner pages) ============ */
.cta-band { background: var(--ink); color: #fff; border-top: 3px solid var(--red); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; flex-wrap: wrap; }
.cta-band .left { flex: 1 1 460px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.6rem; }
.cta-band h2 .red { color: var(--red-light); }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1.02rem; line-height: 1.6; max-width: 52ch; }
.cta-band .actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer.site { background: #0d0d0d; color: rgba(255,255,255,0.65); padding: 4rem 0 1.5rem; border-top: 3px solid var(--red); font-size: 0.92rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-logo { height: 54px; width: auto; display: block; }
.foot-grid .about p { margin: 1.25rem 0; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 320px; }
.foot-addr { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.foot-addr a { color: #fff; }
.foot-grid h5 { color: #fff !important; font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.25rem; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 0.55rem; }
.foot-grid a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s ease; }
.foot-grid a:hover { color: var(--red-light); }
.foot-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.foot-bottom .right { display: flex; gap: 1.25rem; }
.foot-bottom a { color: rgba(255,255,255,0.5); }
.foot-bottom a:hover { color: #fff; }

/* =========================================================================
   SERVICE / PAGE HERO + CONTENT COMPONENTS
   ========================================================================= */
.svc-hero, .page-hero { background: var(--bg); padding: 1.5rem 0 4rem; border-bottom: 1px solid var(--rule); }
.svc-hero h1, .page-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.08; margin: 1.1rem 0 1.3rem; max-width: 18ch; }
.svc-hero h1 .red, .page-hero h1 .red { color: var(--red); }
.svc-hero .lead, .page-hero .lead { font-size: 1.1rem; line-height: 1.65; color: var(--text); max-width: 640px; margin-bottom: 2rem; }
.page-hero h1 { max-width: 22ch; }
.svc-hero .hero-actions, .page-hero .hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.svc-intro h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.4rem; max-width: 24ch; }
.svc-intro h2 .red { color: var(--red); }
.svc-intro p { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 1.2rem; max-width: 70ch; }
.section-dark .svc-intro p { color: rgba(255,255,255,0.82); }

.svc-uses { columns: 2; column-gap: 3rem; list-style: none; max-width: 860px; }
.svc-uses li { break-inside: avoid; padding: 0.65rem 0 0.65rem 1.6rem; position: relative; border-bottom: 1px solid var(--rule); margin-bottom: 0.3rem; color: var(--text); font-size: 0.97rem; }
.svc-uses li::before { content: ""; position: absolute; left: 0; top: 1.2rem; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.section-dark .svc-uses li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }

/* FAQ — native <details> */
.faq { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary { cursor: pointer; padding: 1.4rem 2.5rem 1.4rem 0; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--ink); position: relative; list-style: none; transition: color .2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; line-height: 1; color: var(--red); font-weight: 300; transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--red); }
.faq-item .faq-a { padding: 0 0 1.5rem; color: var(--text); line-height: 1.7; font-size: 1rem; max-width: 72ch; }
.faq-item .faq-a p { margin-bottom: 0.9rem; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* Related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--rule); border-radius: 4px; padding: 1.6rem; transition: all .2s ease; color: var(--ink); }
.related-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.related-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.9rem; flex: 1; }
.related-card .go { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--red); }

/* =========================================================================
   INDUSTRIES PAGE
   ========================================================================= */
.ind-jump { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; padding-bottom: 0.5rem; }
.ind-jump li a { display: inline-block; padding: 0.5rem 1rem; border: 1px solid var(--rule); border-radius: 999px; font-family: 'Archivo', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--ink); background: var(--surface); transition: all .2s ease; }
.ind-jump li a:hover { border-color: var(--red); color: var(--red); }
.ind-section { scroll-margin-top: 130px; }
.ind-row { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 3.5rem; align-items: start; }
.ind-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0.6rem 0 1.1rem; }
.ind-lead { font-family: 'Archivo', sans-serif; font-size: 1.18rem; font-weight: 500; line-height: 1.45; color: var(--ink); margin-bottom: 1.1rem; }
.section-dark .ind-lead { color: #fff; }
.ind-body { font-size: 1.02rem; line-height: 1.75; color: var(--text); margin-bottom: 1.6rem; max-width: 60ch; }
.section-dark .ind-body { color: rgba(255,255,255,0.82); }
.ind-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--red); }
.ind-cta span { transition: transform .2s ease; }
.ind-cta:hover span { transform: translateX(4px); }
.ind-cta.is-dark { color: var(--red-light); }
.ind-products { background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; padding: 1.75rem; }
.section-dark .ind-products { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.ind-products-label { display: block; font-family: 'Archivo', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.ind-list { list-style: none; }
.ind-list li { border-bottom: 1px solid var(--rule); }
.ind-list li:last-child { border-bottom: 0; }
.ind-list li a { display: block; padding: 0.7rem 0 0.7rem 1.4rem; position: relative; color: var(--text); font-size: 0.97rem; transition: color .2s ease, padding .2s ease; }
.ind-list li a::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.ind-list li a:hover { color: var(--red); padding-left: 1.7rem; }
.ind-list.is-dark li { border-bottom-color: rgba(255,255,255,0.12); }
.ind-list.is-dark li a { color: rgba(255,255,255,0.85); }
.ind-list.is-dark li a:hover { color: var(--red-light); }

/* =========================================================================
   LOCATION PAGES
   ========================================================================= */
.loc-intro-row { display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 3.5rem; align-items: start; }
.loc-intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.2rem; }
.loc-intro-text p { font-size: 1.02rem; line-height: 1.8; color: var(--text); margin-bottom: 1.1rem; max-width: 60ch; }
.loc-facts { background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; padding: 1.5rem 1.75rem; position: sticky; top: 130px; }
.loc-facts h3 { font-family: 'Archivo', sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.loc-fact { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--rule); font-size: 0.93rem; }
.loc-fact:last-child { border-bottom: 0; }
.loc-fact .k { color: var(--muted); flex-shrink: 0; }
.loc-fact .v { color: var(--ink); font-weight: 600; text-align: right; }
.loc-area-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin-top: 1.75rem; }
.loc-area-strip .lbl { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--muted); margin-right: 0.2rem; }
.loc-area-strip a { display: inline-block; padding: 0.4rem 0.85rem; border: 1px solid var(--rule); border-radius: 999px; font-size: 0.82rem; font-weight: 500; color: var(--ink); background: var(--surface); transition: all .2s ease; }
.loc-area-strip a:hover { border-color: var(--red); color: var(--red); }
.loc-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.loc-why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 1.6rem; }
.loc-why-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 0.55rem; }
.loc-why-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.loc-ind-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.loc-ind-card { display: block; background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; padding: 1.5rem; transition: all .2s ease; }
.loc-ind-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.loc-ind-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; color: var(--ink); }
.loc-ind-card p { font-size: 0.92rem; color: var(--text); line-height: 1.55; margin: 0 0 0.8rem; }
.loc-ind-card .go { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--red); }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-wrap { background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; padding: 2.25rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.field label { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 0.97rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--rule-2); border-radius: 3px;
  padding: 0.8rem 0.9rem; transition: border-color .15s ease, box-shadow .15s ease; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.12); }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.5; }
.field.hp { position: absolute; left: -9999px; }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-disclaimer { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }
.form-alert { padding: 0.9rem 1.1rem; border-radius: 4px; font-size: 0.9rem; margin-bottom: 1.5rem; border: 1px solid; }
.form-alert.error { background: var(--red-tint); border-color: var(--red); color: var(--red-dark); }
.form-alert.ok { background: #eef7ef; border-color: #2e7d32; color: #1b5e20; }

/* Map */
.map-embed { border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Legal / prose */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 2.25rem 0 0.9rem; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 0.6rem; }
.prose p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a { color: var(--red); text-decoration: underline; }
.prose .updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

/* Stat band (about) */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 0 2rem; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat .n { font-family: 'Archivo', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.6rem; }
.stat .l { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.5; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  nav .menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh;
    background: #fff; flex-direction: column; gap: 0; align-items: stretch;
    padding: 5.5rem 1.5rem 2rem; overflow-y: auto; transform: translateX(100%);
    transition: transform .3s ease; z-index: 10002;
  }
  nav .menu.open { transform: translateX(0); }
  .menu-close.show { display: flex; align-items: center; justify-content: center; position: fixed; top: 1rem; right: 1.25rem; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; color: var(--ink); font-size: 2rem; line-height: 1; border-radius: 3px; z-index: 10003; }
  .menu-close.show:hover { color: var(--red); }
  nav .menu > li > a { padding: 1rem 0.5rem; border-bottom: 1px solid var(--rule); border-radius: 0; font-size: 1rem; }
  nav .menu > li > a:not(.btn)::after { display: none; }
  nav .menu > li > a.btn { margin-top: 1.25rem; justify-content: center; }
  nav .dropdown, nav .dropdown.dropdown--area {
    position: static; transform: none; box-shadow: none; border: none; background: transparent;
    padding: 0.5rem 0 1rem 1rem; grid-template-columns: 1fr; width: 100%; max-width: none;
    opacity: 1; visibility: hidden; display: none;
  }
  nav .dropdown::before, nav .dropdown::after { display: none; }
  nav .has-dropdown.open .dropdown { display: grid; visibility: visible; }
  nav .has-dropdown:hover .dropdown, nav .has-dropdown:focus-within .dropdown { transform: none; }
  nav .dropdown a { padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--rule); }
  nav .dropdown a:hover { background: transparent; }

  .section { padding: 4rem 0; }
  .why { padding: 4rem 0; }
  .services-grid, .industries-grid, .cap-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .stat-band { grid-template-columns: 1fr; }
  .why-item { padding: 1.75rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .why-item:last-child { border-bottom: none; }
  .why-item:first-child { padding-top: 0; }
  .stat { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 3.5rem 0 4rem; }
}
@media (max-width: 820px) {
  .hero-grid { flex-wrap: wrap; gap: 2.5rem; }
  .hero-text, .hero-photo { width: 100%; flex: 1 1 100%; }
  .contact-grid { flex-wrap: wrap; gap: 2.5rem; }
  .contact-main, .contact-side { width: 100%; flex: 1 1 100%; }
  .ind-row, .loc-intro-row { grid-template-columns: 1fr; gap: 2rem; }
  .loc-facts { position: static; }
  .loc-why-grid { grid-template-columns: 1fr; }
  .loc-ind-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar .left { font-size: 0.7rem; gap: 0.8rem; }
  .topbar .left .hide-sm { display: none; }
  .services-grid, .industries-grid, .cap-grid, .cap-grid.cols-2, .related-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-methods { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-uses { columns: 1; }
  .section { padding: 3rem 0; }
  .why { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .hero { padding: 2.5rem 0 3rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-years-num { font-size: 2.2rem; }
  .svc-hero, .page-hero { padding: 1rem 0 3rem; }
  .form-wrap { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, header.site, footer.site, .cta-band, .menu-toggle, .hero-actions { display: none !important; }
  body { background: #fff; color: #000; }
}
