/* ============================================
   MERIT CONCRETING — Newcastle
   "Hi-Vis Brutalist Trade" Design System
   Brand red (#F21C26) sampled from logo M
   ============================================ */

:root {
  /* Brand */
  --red: #F21C26;
  --red-deep: #C7141C;
  --red-tint: rgba(242, 28, 38, 0.08);

  /* Neutrals */
  --ink: #0A0A0A;
  --char: #1A1A1A;
  --slate: #2A2A2A;
  --stone: #6E6B66;
  --concrete: #C9C5BE;
  --cream: #EDEAE3;
  --bone: #F6F4EE;
  --white: #FFFFFF;

  /* Type */
  --display: "Anton", "Archivo Black", "Helvetica Neue", sans-serif;
  --body: "Inter Tight", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Menlo, monospace;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1320px;
  --maxw-narrow: 980px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--red); color: var(--white); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* =========== Typography =========== */

.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

h1 { font-size: clamp(48px, 8vw, 124px); }
h2 { font-size: clamp(36px, 5.6vw, 80px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.eyebrow--dark { color: var(--ink); }
.eyebrow--dark::before { background: var(--red); }

.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--slate); max-width: 64ch; }
.tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--stone); }

/* =========== Layout =========== */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
section { padding: clamp(64px, 8vw, 120px) 0; }
.divider { height: 1px; background: var(--ink); opacity: 0.12; }

/* =========== Nav =========== */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter); max-width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 40px; height: 40px; }
.nav-brand-text {
  font-family: var(--display); font-size: 22px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.nav-brand-text small {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.24em; color: var(--stone); font-weight: 400;
  margin-top: 3px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--cream); opacity: 0.78;
  transition: opacity 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--white); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 18px; opacity: 1 !important;
}
.nav-cta:hover { background: var(--red-deep); }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--cream);
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open .nav-links a {
    padding: 14px 0; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav.open .nav-cta {
    margin-top: 12px; text-align: center;
    padding: 14px 18px; border-bottom: 0 !important;
  }
}

/* =========== Buttons =========== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500;
  padding: 16px 24px;
  background: var(--red); color: var(--white);
  border: 0; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: var(--slate); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: var(--cream); border: 1.5px solid var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }

.btn-arrow { display: inline-block; transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =========== Hero =========== */

.hero {
  position: relative;
  background: var(--ink); color: var(--cream);
  overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  padding-top: 60px;
  padding-bottom: 260px;
}
@media (max-width: 720px) {
  .hero {
    display: block;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 0;
  }
  .hero .wrap { padding-bottom: 8px; }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.85) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-tag {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 28px;
}
.hero-tag .dot { display: inline-block; width: 6px; height: 6px; background: var(--red); border-radius: 50%; margin-right: 8px; vertical-align: middle; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.4); }
}
.hero h1 { color: var(--white); margin-bottom: 24px; max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub { font-size: clamp(17px, 1.4vw, 21px); max-width: 56ch; color: rgba(237,234,227,0.85); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
}
@media (max-width: 720px) {
  .hero-meta {
    position: static;
    backdrop-filter: none;
    background: var(--ink);
    margin-top: 32px;
  }
}
.hero-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.hero-meta-grid > div {
  background: var(--ink); padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta-grid .num {
  font-family: var(--display); font-size: 38px; line-height: 1;
  color: var(--white); text-transform: uppercase;
}
.hero-meta-grid .num .accent { color: var(--red); }
.hero-meta-grid .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone);
}
@media (max-width: 720px) {
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========== Sections =========== */

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 56px; align-items: end; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 20px; } }
.section-head h2 { margin: 14px 0 0; }
.section-head h2 em { font-style: normal; color: var(--red); }

/* =========== Service tiles =========== */

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--ink); border: 1px solid var(--ink);
}
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bone); padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; transition: background 0.3s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card .num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--stone);
}
.service-card h3 { font-size: clamp(22px, 2vw, 30px); color: var(--ink); }
.service-card p { color: var(--slate); font-size: 15px; }
.service-card .arrow {
  margin-top: auto; padding-top: 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); display: inline-flex; gap: 8px; align-items: center;
}
.service-card.has-image {
  padding: 0; background: var(--ink); color: var(--cream);
  overflow: hidden;
}
.service-card.has-image .photo {
  height: 220px; background-size: cover; background-position: center;
  position: relative;
}
.service-card.has-image .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7) 100%);
}
.service-card.has-image .body { padding: 24px 32px 32px; }
.service-card.has-image:hover { background: var(--slate); }
.service-card.has-image h3 { color: var(--white); }
.service-card.has-image p { color: rgba(237,234,227,0.75); }

/* =========== Big split — about/why =========== */

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--red); color: var(--white);
  font-family: var(--display); font-size: 56px; line-height: 0.9;
  padding: 20px 24px 18px; text-transform: uppercase;
}
.split-img .badge small {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; font-weight: 400; margin-top: 6px;
}
.split-body h2 em { font-style: normal; color: var(--red); }
.split-body p { color: var(--slate); margin-top: 22px; font-size: 17px; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 36px; padding-top: 30px;
  border-top: 1px solid rgba(10,10,10,0.12);
}
.feature-row > div { display: flex; flex-direction: column; gap: 4px; }
.feature-row .n {
  font-family: var(--display); font-size: 48px; line-height: 0.95;
  color: var(--ink);
}
.feature-row .n .acc { color: var(--red); }
.feature-row .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }

/* =========== Reviews =========== */

.reviews { background: var(--ink); color: var(--cream); }
.reviews h2 em { color: var(--red); font-style: normal; }
.reviews .section-head h2 { color: var(--white); }
.reviews .lede { color: rgba(237,234,227,0.78); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  background: var(--char); padding: 32px 28px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.review .stars { color: var(--red); letter-spacing: 2px; font-size: 14px; }
.review p { color: var(--cream); font-size: 15.5px; line-height: 1.6; }
.review .who {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 16px; margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.review .who .name { font-family: var(--display); font-size: 18px; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; }
.review .who .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--stone); text-transform: uppercase; }

.reviews-rating {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 56px; padding: 20px 24px;
  background: var(--char); border: 1px solid rgba(255,255,255,0.06);
}
.reviews-rating .score {
  font-family: var(--display); font-size: 56px; color: var(--white); line-height: 1;
}
.reviews-rating .score-meta { display: flex; flex-direction: column; gap: 2px; }
.reviews-rating .stars { color: var(--red); letter-spacing: 3px; font-size: 18px; }
.reviews-rating .count { font-family: var(--mono); font-size: 11px; color: var(--stone); letter-spacing: 0.18em; text-transform: uppercase; }

/* =========== Process strip =========== */

.process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(10,10,10,0.1); border: 1px solid rgba(10,10,10,0.1); margin-top: 48px; }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.proc {
  background: var(--cream); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.proc .step {
  font-family: var(--display); font-size: 64px; line-height: 0.9;
  color: var(--red);
}
.proc h4 {
  font-family: var(--display); font-size: 22px; line-height: 1;
  text-transform: uppercase; color: var(--ink);
}
.proc p { color: var(--slate); font-size: 15px; }

/* =========== Gallery preview =========== */

.gallery-preview { background: var(--bone); }
.gp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gp-grid > a {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; cursor: pointer;
}
.gp-grid > a::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10,10,10,0); transition: background 0.25s var(--ease);
}
.gp-grid > a:hover::after { background: rgba(10,10,10,0.25); }
.gp-grid > a:first-child { grid-row: 1 / span 2; }
@media (max-width: 720px) {
  .gp-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gp-grid > a:first-child { grid-row: 1; grid-column: 1 / span 2; }
}

/* =========== CTA banner =========== */

.cta-banner {
  background: var(--red); color: var(--white);
  padding: clamp(64px, 7vw, 100px) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(0,0,0,0.04) 28px, rgba(0,0,0,0.04) 32px);
  pointer-events: none;
}
.cta-banner-inner { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .cta-banner-inner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: var(--white); }
.cta-banner h2 em { font-style: normal; -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.cta-banner p { margin-top: 12px; font-size: 17px; max-width: 60ch; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-banner-actions .btn--ghost-light { justify-content: center; }
.cta-banner-actions .phone {
  font-family: var(--display); font-size: 36px; line-height: 1; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.01em;
}
.cta-banner-actions .phone small {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; opacity: 0.8;
}

/* =========== Footer =========== */

.footer { background: var(--ink); color: var(--cream); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 16px;
  font-weight: 500;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand-text { font-family: var(--display); font-size: 28px; line-height: 1; color: var(--white); text-transform: uppercase; }
.footer-brand-text small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--stone); margin-top: 4px; }
.footer p.tagline { margin-top: 16px; color: rgba(237,234,227,0.7); font-size: 14px; max-width: 36ch; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(237,234,227,0.7); font-size: 14px; }
.footer ul a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone);
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--red); }

/* =========== Inner page hero =========== */

.page-hero {
  background: var(--ink); color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
  border-bottom: 4px solid var(--red);
}
.page-hero .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 24px;
}
.page-hero .crumb span { color: var(--red); }
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { color: rgba(237,234,227,0.78); max-width: 60ch; margin-top: 24px; font-size: clamp(16px, 1.3vw, 19px); }

/* =========== Service list page =========== */

.services-detail {
  display: grid; grid-template-columns: 1fr;
}
.svc {
  display: grid; grid-template-columns: 90px 1fr 1.2fr;
  gap: 40px; padding: 56px 0;
  border-bottom: 1px solid rgba(10,10,10,0.12);
  align-items: start;
}
.svc:last-child { border-bottom: 0; }
.svc .id {
  font-family: var(--display); font-size: 56px; line-height: 0.9; color: var(--red);
}
.svc h3 { color: var(--ink); margin-bottom: 14px; }
.svc-body p { color: var(--slate); margin-bottom: 10px; }
.svc-body ul { list-style: none; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-body ul li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px;
  border: 1px solid rgba(10,10,10,0.18); color: var(--slate);
}
.svc-photo {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
}
@media (max-width: 880px) {
  .svc { grid-template-columns: 60px 1fr; gap: 24px; }
  .svc .id { font-size: 40px; }
  .svc-photo { grid-column: 1 / -1; }
}

/* =========== Work / gallery page =========== */

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.filter-bar button {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 10px 16px;
  background: transparent; color: var(--slate);
  border: 1px solid rgba(10,10,10,0.2); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--ink); }
.filter-bar button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .work-grid { grid-template-columns: 1fr; } }
.work-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in;
  background: var(--char);
}
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-item:hover img { transform: scale(1.04); }
.work-item .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85));
  color: var(--white);
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
}
.work-item .caption .t {
  font-family: var(--display); font-size: 18px; line-height: 1; text-transform: uppercase;
}
.work-item .caption .x {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.95);
  z-index: 100; display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox .close {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--cream); background: transparent; border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px; cursor: pointer; text-transform: uppercase;
}
.lightbox .close:hover { background: var(--red); border-color: var(--red); }
.lightbox .nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream); width: 48px; height: 48px;
  cursor: pointer; font-size: 18px;
}
.lightbox .nav-arrow:hover { background: var(--red); border-color: var(--red); }
.lightbox .nav-arrow.prev { left: 24px; }
.lightbox .nav-arrow.next { right: 24px; }

/* =========== Contact form =========== */

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--white); padding: 40px;
  border: 1px solid rgba(10,10,10,0.12);
}
.form-card h3 { color: var(--ink); margin-bottom: 8px; }
.form-card p { color: var(--slate); margin-bottom: 28px; font-size: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate);
}
.field input, .field textarea, .field select {
  border: 1px solid rgba(10,10,10,0.2); padding: 14px 14px;
  font-family: var(--body); font-size: 16px; color: var(--ink);
  background: var(--bone); width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--red); background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; padding: 18px; }
.form-card .ph-hide {
  position: absolute !important; left: -9999px !important;
}

.info-card {
  background: var(--ink); color: var(--cream); padding: 40px;
  display: flex; flex-direction: column; gap: 26px;
}
.info-card h3 { color: var(--white); }
.info-card .row { display: flex; flex-direction: column; gap: 4px; }
.info-card .row .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone);
}
.info-card .row .val { font-size: 17px; color: var(--cream); }
.info-card .row .val a:hover { color: var(--red); }
.info-card .row .val.big {
  font-family: var(--display); font-size: 30px; color: var(--white);
  letter-spacing: 0.01em;
}
.info-card .divider { background: rgba(255,255,255,0.1); }

.map-frame { width: 100%; aspect-ratio: 16/7; background: var(--char); border: 0; margin-top: 48px; }

/* Hours table */
.hours { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--cream);
}
.hours-row.closed .v { color: var(--stone); }

/* =========== Service-area chip cloud =========== */
.areas {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
}
.areas .chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 14px;
  border: 1px solid rgba(10,10,10,0.18); color: var(--slate);
  background: var(--bone);
}
.areas-dark .chip { background: transparent; color: rgba(237,234,227,0.78); border-color: rgba(255,255,255,0.18); }

/* =========== Sticky mobile call bar =========== */
.call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: var(--red); color: var(--white);
  padding: 14px var(--gutter);
  text-align: center;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  box-shadow: 0 -8px 24px rgba(10,10,10,0.2);
}
.call-bar a { color: var(--white); display: inline-flex; align-items: center; gap: 10px; }
.call-bar a::before { content: "📞"; font-size: 15px; }
@media (max-width: 720px) { .call-bar { display: block; } body { padding-bottom: 60px; } }

/* =========== Misc utilities =========== */
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
