/* Stelly's Construction. Design system. */
:root {
  --bg: #0d0c0a;
  --bg-soft: #15140f;
  --card: #101010;
  --card-border: #232220;
  --card-featured: #15140f;
  --card-featured-border: #3a2e16;
  --text: #F5EFE2;
  --muted: #8a8880;
  --eyebrow: #7a6a48;
  --amber: #BA7517;
  --orange: #EF9F27;
  --orange-text: #1a1306;
  --icon-bg: #1a1408;
  --icon-border: #2a2415;
  --r-btn: 6px;
  --r-card: 14px;
  --container: 1180px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.02) inset, 0 12px 32px rgba(0,0,0,0.4);
  --shadow-card-featured: 0 0 0 1px rgba(239,159,39,0.08) inset, 0 0 80px rgba(239,159,39,0.05) inset, 0 12px 40px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: #ffb851; }

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--text); }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.amber { color: var(--orange); }
.eyebrow.dim { color: var(--eyebrow); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--orange-text);
  padding: 8px 12px; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-btn);
  font-weight: 700; font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--orange-text); }
.btn-primary:hover { background: #ffb240; color: var(--orange-text); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(245,239,226,0.22);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: #1a1306; color: var(--orange); border-color: #2a200d; }
.btn-dark:hover { background: #0d0c0a; color: var(--orange); }
.btn-outline-dark {
  background: transparent; color: #1a1306;
  border-color: rgba(26,19,6,0.5);
}
.btn-outline-dark:hover { background: rgba(26,19,6,0.1); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #F1EFE8;
  border-bottom: 1px solid #d8d5cb;
}
/* Header uses a wider container than the rest of the site so the full
   nav (7 items + brand + CTA) stays on one line at desktop widths.
   Page content below keeps the standard .container = 1180px max. */
.header-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center;
  height: 84px; gap: 18px;
}
@media (max-width: 1320px) {
  .header-inner { padding: 0 24px; }
}
@media (max-width: 980px) {
  .header-inner { padding: 0 20px; }
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: #1a1a18; }
.brand:hover { color: #1a1a18; }
.brand-logo { height: 56px; width: auto; display: block; }
/* Footer keeps the original SVG mark + text on dark bg. */
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: #1a1408; border: 1px solid #2a2415;
  border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 900; font-size: 18px; letter-spacing: -.01em; }
.brand-sub  { color: var(--eyebrow); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > ul {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  white-space: nowrap;
}
.primary-nav > ul > li { white-space: nowrap; }
.primary-nav > ul > li > a {
  color: #1a1a18; font-weight: 600; font-size: 13.5px;
  padding: 4px 2px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.primary-nav a { color: #1a1a18; }
.primary-nav a:hover { color: var(--amber); }
.has-dropdown { position: relative; }
.has-dropdown > a .caret { color: inherit; margin-left: 4px; font-size: 10px; }

/* Services mega-menu */
.megamenu {
  position: absolute; top: calc(100% + 8px); left: -10px;
  width: 880px; max-width: calc(100vw - 40px);
  background: #131210; border: 1px solid #232220; border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  z-index: 200;
}
.has-dropdown:hover .megamenu,
.has-dropdown:focus-within .megamenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-col { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-col li { min-width: 0; }
.mega-col li a {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--text);
  border: 1px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
  min-width: 0;
}
.mega-col li a:hover,
.mega-col li a:focus-visible {
  background: #1a1916; color: var(--orange); border-color: #2a2825; outline: none;
}
.mega-col .t { font-weight: 700; font-size: 14px; line-height: 1.2; }
.mega-col .d {
  display: block;
  font-size: 12.5px; color: var(--muted); font-weight: 400; line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}
.mega-col li a:hover .d,
.mega-col li a:focus-visible .d { color: var(--muted); }

.mega-callout {
  background: #100f0c;
  border: 1px solid #2a2415;
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 100%;
  min-width: 0;          /* allow shrink inside the grid track */
  overflow: hidden;      /* hard stop if any child still tries to overflow */
}
.mega-callout > * { max-width: 100%; min-width: 0; overflow-wrap: break-word; }
.mega-callout .eyebrow {
  color: var(--orange);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  margin: 0 0 2px;
}
.mega-callout h4 {
  font-size: 1.15rem; font-weight: 800; line-height: 1.2;
  color: var(--text); margin: 0;
  overflow-wrap: break-word;
}
.mega-callout p {
  color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}
.mega-callout-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #EF9F27;
  color: #1a1306;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s;
}
.mega-callout-cta:hover,
.mega-callout-cta:focus-visible {
  background: #ffb240;
  color: #1a1306;
  outline: none;
}
.mega-callout-cta .num { white-space: nowrap; }
.mega-callout-hours {
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  margin: 8px 0 0;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
/* Right-hand group: push to far right, separate from nav links. */
.header-cta--desktop { margin-left: auto; }
.header-cta--mobile  { display: none; }
.phone-link {
  color: #1a1a18; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
}
.phone-link svg { color: var(--amber); }
.phone-link:hover { color: var(--amber); }

/* Compact navbar button: about half the vertical padding of the global .btn. */
.site-header .btn { padding: 7px 16px; font-size: 14px; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid #c8c5bb;
  width: 42px; height: 42px; border-radius: 8px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  cursor: pointer;
  /* On mobile flex layout this pins the hamburger to the far right edge,
     opposite the logo on the left. No effect on desktop where it's display:none. */
  margin-left: auto;
}
.nav-toggle span {
  width: 20px; height: 2px; background: #1a1a18; display: block; border-radius: 2px;
}
/* Close button: hidden on desktop, shown inside the mobile overlay (rule below). */
.nav-close { display: none; }
/* Lock background scroll while the mobile menu overlay or lightbox is open. */
body.menu-open, html.menu-open,
body.lightbox-open { overflow: hidden; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  /* True full-screen overlay. Off-white to match the bar (black logo reads
     against it), fixed-position so it covers everything underneath. */
  .primary-nav {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: #F1EFE8;
    border: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 80px 22px 32px;
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 9999;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > ul { flex-direction: column; gap: 0; margin: 12px 0 0; }
  .primary-nav > ul > li { border-top: 1px solid #d8d5cb; }
  .primary-nav > ul > li:last-child { border-bottom: 1px solid #d8d5cb; }
  .primary-nav > ul > li > a {
    display: block; padding: 18px 4px;
    color: #1a1a18; font-size: 16px;
  }
  .primary-nav a { color: #1a1a18; }
  .primary-nav a:hover, .primary-nav a:focus-visible { color: var(--amber); }
  /* Close button: visible inside the open overlay. */
  .primary-nav .nav-close {
    display: inline-flex;
    position: absolute; top: 18px; right: 18px;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid #c8c5bb; border-radius: 8px;
    color: #1a1a18;
    align-items: center; justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  .primary-nav .nav-close:hover,
  .primary-nav .nav-close:focus-visible { border-color: #1a1a18; }
  .megamenu {
    position: static; width: auto; max-width: none;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0; padding: 0 0 0 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .has-dropdown.open .megamenu { display: grid; }
  .mega-col li { border-top: 1px solid #d8d5cb; }
  .mega-col li:first-child { border-top: 0; }
  .mega-col li a {
    padding: 12px 14px;
    color: #1a1a18;
    border-color: transparent;
  }
  .mega-col li a:hover,
  .mega-col li a:focus-visible {
    background: transparent; color: var(--amber); border-color: transparent;
  }
  .mega-col .t { color: #1a1a18; }
  .mega-col .d { display: none; }
  .mega-callout {
    background: rgba(26,19,6,0.04);
    border: 1px solid #d8d5cb;
    margin-top: 10px;
    padding: 16px;
    min-height: 0;
  }
  .mega-callout h4 { color: #1a1a18; }
  .mega-callout p  { color: #5a5752; }
  .mega-callout-cta { margin-top: 12px; }
  /* Desktop right-group hides on mobile; mobile copy shows inside the overlay. */
  .header-cta--desktop { display: none; }
  .header-cta--mobile  {
    display: flex;
    padding: 16px 4px;
    border-top: 1px solid #d8d5cb;
    margin: 10px 0 0;
    flex-wrap: wrap;
  }
  .header-cta--mobile .phone-link { color: #1a1a18; }
  .header-cta--mobile .phone-link svg { color: var(--amber); }
}

/* Breadcrumbs */
.breadcrumbs { padding: 18px 0 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 6px; color: #3a3a35; }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* Hero */
/* Homepage hero with autoplay background video.
   Layer order (low to high): poster (background-image fallback) -> video ->
   dark overlay -> text content. Full viewport width edge to edge. */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  /* Poster shows immediately while the video loads, and is the only visual
     for users with prefers-reduced-motion (video display:none below). */
  background-image: var(--hero-poster, url('/assets/img/hero-poster.svg'));
  background-size: cover;
  background-position: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 720px); gap: 18px;
  /* Split padding longhand so the .container parent rule's 20px horizontal
     padding survives (shorthand `padding: 80px 0` would zero it out and
     push text to the screen edge on mobile). */
  padding-top: 80px; padding-bottom: 80px;
  min-height: 680px; align-content: center;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; max-width: 720px; }
.hero p.lede { color: var(--muted); font-size: 1.1rem; max-width: 440px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
@media (max-width: 900px) {
  .hero-inner { padding-top: 60px; padding-bottom: 60px; min-height: 480px; }
}
@media (max-width: 600px) {
  .hero-inner { padding-top: 48px; padding-bottom: 48px; min-height: 420px; }
}

/* Respect users who request reduced motion: hide the video, leave the
   dark poster background visible underneath the overlay. */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Stat bar */
.stat-bar { background: #0a0908; border-top: 1px solid #1a1916; border-bottom: 1px solid #1a1916; padding: 36px 0; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat .num { font-size: 2.4rem; font-weight: 900; color: var(--orange); letter-spacing: -.02em; }
.stat .lbl { font-size: 13px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: left; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); }

/* Service cards grid */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover,
.card:focus-within {
  border-color: #EF9F27;
  transform: translateY(-2px);
}
.card h3 { margin: 4px 0 0; }
.card p { color: var(--muted); margin: 0; }
.icon-tile {
  width: 42px; height: 42px;
  background: var(--icon-bg); border: 1px solid var(--icon-border);
  border-radius: 9px;
  display: inline-grid; place-items: center;
  color: var(--orange);
}
.icon-tile svg { width: 22px; height: 22px; }
.card .learn {
  margin-top: auto; padding-top: 14px;
  color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.grid-foot { text-align: center; margin-top: 36px; }
.grid-foot a { font-weight: 800; letter-spacing: .04em; }

/* Process */
.process-band { background: #0a0908; border-top: 1px solid #1a1916; border-bottom: 1px solid #1a1916; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }
.step { padding: 22px; border: 1px solid var(--card-border); border-radius: var(--r-card); background: #101010; }
.step .num { color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.step h3 { margin-top: 6px; font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }

/* Why us */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { .why { grid-template-columns: 1fr; } }
.why .card { flex-direction: row; align-items: flex-start; gap: 16px; }
.why .card h3 { margin: 0; }
.why .card .body { display: flex; flex-direction: column; gap: 6px; }

/* Equipment strip */
.equipment-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip {
  background: #131210; border: 1px solid #2a2825; color: var(--text);
  padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.chip.amber { color: var(--orange); border-color: #3a2e16; background: #15120c; }

/* ---------- Unified photo grid (homepage Recent Work + /projects) ----------
   4 columns desktop / 3 large tablet / 2 tablet / 1 mobile.
   Every tile is the same size (aspect-ratio: 4/3) and the image is cropped
   to fill it. Tiles act as lightbox triggers; the modal lives in footer.php. */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 1199px) { .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 899px)  { .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .photo-grid { grid-template-columns: 1fr; } }

.photo-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;          /* same shape regardless of original photo */
  border-radius: 10px;
  overflow: hidden;              /* keeps the zoom inside the rounded corners */
  background: #15140f;
  border: 1px solid var(--card-border);
  text-decoration: none;
  cursor: zoom-in;
}
.photo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;             /* fill the tile, crop edges if needed */
  display: block;
  transition: transform 0.4s ease;
}
.photo-tile:hover img,
.photo-tile:focus-visible img { transform: scale(1.04); }
.photo-tile:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.photo-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(13,12,10,0.85);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  pointer-events: none;          /* clicks pass through to the tile */
}

/* ---------- Lightbox: full-screen modal with prev/next + caption. ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto; height: auto;
  object-fit: contain;            /* show full image, no crop */
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  width: 48px; height: 48px;
  transition: background 0.15s;
}
.lightbox-close { top: 20px; right: 20px; border-radius: 8px; }
.lightbox-prev,
.lightbox-next { top: 50%; transform: translateY(-50%); border-radius: 50%; width: 56px; height: 56px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover,
.lightbox-close:focus-visible, .lightbox-prev:focus-visible, .lightbox-next:focus-visible {
  background: rgba(255,255,255,0.18); outline: none;
}
.lightbox-prev[hidden], .lightbox-next[hidden] { display: none; }
.lightbox-caption {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.92);
  font-size: 13.5px;
  text-align: center;
  max-width: 80%;
  margin: 0;
  padding: 8px 14px;
  background: rgba(0,0,0,0.5);
  border-radius: 6px;
}
.lightbox-caption:empty { display: none; }
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 24px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .lightbox-img { max-width: 94vw; max-height: 80vh; }
  .lightbox-caption { bottom: 10px; font-size: 12.5px; }
}

.gallery-empty {
  padding: 60px 24px; text-align: center;
  border: 1px dashed #2a2825; border-radius: var(--r-card);
  color: var(--muted);
}

/* Service area */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }
.area-map {
  aspect-ratio: 16/11;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #101010;
}
.area-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(0.95); }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chips a {
  background: #131210; border: 1px solid #2a2825; color: var(--text);
  padding: 10px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
}
.city-chips a:hover { color: var(--orange); border-color: var(--amber); }

/* FAQ */
.faq { width: 100%; }
.faq details {
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: var(--r-card);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--orange); font-size: 22px; line-height: 1;
  margin-left: 12px;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq .answer { padding: 0 24px 22px; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #c07a1a 0%, #EF9F27 100%);
  color: #1a1306;
  padding: 56px 0;
}
.cta-band h2 { color: #1a1306; margin: 0 0 6px; }
.cta-band p { color: #2c2008; margin: 0; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #0a0908;
  color: var(--text);
  border-top: 1px solid #1a1916;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--text); margin-bottom: 14px; font-size: 1rem; letter-spacing: .02em; }
.footer-col .muted { color: var(--muted); }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-list a { color: var(--muted); font-size: 14px; }
.footer-list a:hover { color: var(--orange); }
.footer-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 18px; border-top: 1px solid #1a1916;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 8px;
}
.footer-bottom .admin-link { color: var(--eyebrow); font-size: 12px; }
.footer-bottom .admin-link:hover { color: var(--orange); }

/* Service page hero: full-bleed image with dark gradient + H1 overlay. */
.service-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-color: #15140f;
  overflow: hidden;
  display: flex; align-items: center;
}
.service-hero .service-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--svc-hero, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.service-hero .service-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,12,10,0.40) 0%, rgba(13,12,10,0.85) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(186,117,23,0.10), transparent 60%);
  z-index: 1;
}
.service-hero:not(.has-image) .service-hero-bg {
  background-image:
    linear-gradient(135deg, #1a1815 0%, #0d0c0a 60%, #15120c 100%);
}
.service-hero-inner {
  position: relative; z-index: 2;
  padding: 56px 20px;
  width: 100%;
}
.service-hero .eyebrow { color: var(--orange); }
.service-hero h1 { color: var(--text); max-width: 820px; margin-bottom: 14px; }
.service-hero .lede { color: rgba(245,239,226,0.92); max-width: 640px; font-size: 1.1rem; }
.service-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
@media (max-width: 900px) {
  .service-hero { min-height: 360px; }
  .service-hero-inner { padding: 40px 20px; }
}
@media (max-width: 600px) {
  .service-hero { min-height: 280px; }
  .service-hero-inner { padding: 28px 20px; }
}

/* Page intros and prose */
.page-intro { padding: 60px 0 30px; }
.page-intro h1 { /* no max-width: fills container same as bands below it */ }
.page-intro .lede { color: var(--muted); font-size: 1.15rem; }

/* Long-form prose: 17px / line-height 1.7, with a subtle divider + amber
   accent bar above each section heading. Applied everywhere .prose is used:
   service pages, location pages, About, hubs, FAQ. */
.prose { font-size: 17px; line-height: 1.7; }
.prose p {
  color: #d9d2c2;
  font-size: 17px; line-height: 1.7;
  margin: 0 0 1.3em;
}
.prose ul, .prose ol {
  padding-left: 22px;
  color: var(--text);
  font-size: 17px; line-height: 1.7;
  margin: 0 0 1.3em;
}
.prose ul li, .prose ol li { margin-bottom: 10px; }

/* H2 section headings: 1px divider above, amber accent bar, generous breathing room. */
.prose h2 {
  position: relative;
  margin: 56px 0 18px;
  padding-top: 48px;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.005em;
}
.prose h2::before {
  /* divider line above the heading, full width of the prose column */
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(245, 239, 226, 0.08);
}
.prose h2::after {
  /* amber accent bar between divider and heading text */
  content: "";
  position: absolute; top: 20px; left: 0;
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
/* First H2: no divider above (it's the section opener), keep the accent. */
.prose > h2:first-of-type,
.prose > h2:first-child {
  margin-top: 12px;
  padding-top: 18px;
}
.prose > h2:first-of-type::before,
.prose > h2:first-child::before { display: none; }
.prose > h2:first-of-type::after,
.prose > h2:first-child::after { top: 0; }

.prose h3 {
  margin: 1.8em 0 .6em;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
}

.callout {
  border: 1px solid #3a2e16; background: #15140f;
  border-radius: var(--r-card);
  padding: 22px 24px; margin: 24px 0;
}
.callout strong { color: var(--orange); }

/* Long-form layout used by every body page: service pages, location pages,
   About, Services hub, Areas hub, FAQ. Single-column at every breakpoint.
   Prose spans the full container width; the sidebar drops below the prose
   at full width. No reserved sidebar column, no right-side dead space. */
.two-col-prose {
  display: block;
  width: 100%;
}
.two-col-prose > .prose,
.two-col-prose .prose {
  width: 100%;
  max-width: none;
}
.two-col-prose > aside,
.two-col-prose .sidebar {
  width: 100%;
  margin-top: 40px;
}
/* City card grid for the Areas We Serve page. Off-white cards on the
   dark page background; 3-col desktop, 2-col tablet, 1-col mobile. */
.city-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 24px;
}
@media (max-width: 900px) { .city-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .city-cards { grid-template-columns: 1fr; } }

.city-card {
  display: flex;
  flex-direction: column;
  background: #F1EFE8;
  border: 1px solid #e2dfd3;
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.city-card:hover,
.city-card:focus-visible {
  transform: translateY(-2px);
  border-color: #EF9F27;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  outline: none;
}
.city-card .city-name {
  display: block;
  color: #1a1a18;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.city-card .city-parish {
  display: block;
  color: #6b6960;
  font-size: 11px;
  line-height: 1.35;
}
.city-card .city-view {
  display: block;
  color: #BA7517;
  font-size: 11px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.related {
  background: #101010; border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  padding: 22px;
}
.related h4 { color: var(--orange); margin: 0 0 10px; letter-spacing: .02em; }
.related ul { list-style: none; padding: 0; margin: 0; }
.related li { padding: 8px 0; border-top: 1px solid #1f1d1a; }
.related li:first-child { border-top: 0; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
  width: 100%; padding: 12px 14px;
  background: #15140f; color: var(--text);
  border: 1px solid #2a2825; border-radius: 6px;
  font: inherit; font-size: 15px;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-msg { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; }
.form-msg.ok { background: #11261a; color: #9ed6b0; border: 1px solid #1d3a26; }
.form-msg.err { background: #2a1414; color: #ffb0b0; border: 1px solid #4a2424; }

/* Admin */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side {
  background: #0a0908; border-right: 1px solid #1a1916; padding: 26px 18px;
}
.admin-side h2 { font-size: 1rem; color: var(--orange); letter-spacing: .04em; margin-bottom: 18px; }
.admin-side a {
  display: block; padding: 10px 12px; border-radius: 6px;
  color: var(--text); font-size: 14px; font-weight: 600;
}
.admin-side a.active, .admin-side a:hover { background: #15140f; color: var(--orange); }
.admin-main { padding: 30px 32px; }
.admin-main h1 { font-size: 1.6rem; margin-bottom: 18px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.admin-tile {
  background: #101010; border: 1px solid var(--card-border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
}
.admin-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.admin-tile .meta { padding: 12px; font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 8px; }
.admin-tile .meta form { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-tile select, .admin-tile input[type="number"] { padding: 6px 8px; font-size: 13px; }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-danger { background: #3a1414; color: #ffb0b0; border-color: #4a2424; }
.btn-danger:hover { background: #4a1818; }
.submissions table { width: 100%; border-collapse: collapse; }
.submissions th, .submissions td { padding: 10px 12px; border-bottom: 1px solid #1f1d1a; text-align: left; font-size: 14px; color: var(--text); vertical-align: top; }
.submissions th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* ---- Admin Leads view (CRM-style cards) ---- */
.lead-counter {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  background: #1a1916; border: 1px solid #2a2825; color: var(--muted);
  padding: 4px 10px; border-radius: 999px;
}
.lead-counter--new       { color: var(--orange); border-color: #3a2e16; background: #15120c; }
.lead-counter--contacted { color: #6ad08a; border-color: #1d3a26; background: #11261a; }

.leads-filterbar {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin: 18px 0 22px; padding: 14px;
  background: #101010; border: 1px solid var(--card-border); border-radius: 10px;
}
.leads-filterbar input[type="search"] { flex: 2 1 240px; padding: 9px 12px; font-size: 14px; }
.leads-filterbar select { flex: 0 1 180px; padding: 9px 12px; font-size: 14px; }

.leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.lead-card {
  background: #101010;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color 0.15s ease;
}
.lead-card--new       { border-left: 3px solid var(--orange); }
.lead-card--contacted { opacity: 0.92; }

.lead-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.lead-card__name { margin: 0; font-size: 1.05rem; color: var(--text); }
.lead-card__time { margin: 2px 0 0; color: var(--muted); font-size: 12px; }

.lead-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.lead-pill--new       { background: #15120c; color: var(--orange); border: 1px solid #3a2e16; }
.lead-pill--contacted { background: #11261a; color: #6ad08a;       border: 1px solid #1d3a26; }
.lead-dot {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
  background: currentColor;
}

.lead-card__contact { display: flex; flex-direction: column; gap: 6px; }
.lead-contact-line {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 14px; font-weight: 600;
  text-decoration: none; word-break: break-all;
}
.lead-contact-line:hover { color: var(--orange); }
.lead-contact-line svg { color: var(--orange); flex-shrink: 0; }

.lead-card__message {
  background: #15140f; border: 1px solid #1f1d1a; border-radius: 8px;
  padding: 10px 12px;
  color: #d9d2c2; font-size: 13.5px; line-height: 1.5;
  max-height: 200px; overflow: auto;
  white-space: pre-wrap; word-break: break-word;
}
.lead-card__page { margin: 0; color: var(--muted); font-size: 11.5px; }
.lead-card__page span { color: #8a8880; word-break: break-all; }

.lead-card__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  border-top: 1px solid #1f1d1a; padding-top: 12px; margin-top: 4px;
}
.lead-card__actions .btn-sm { padding: 8px 14px; }
.lead-inline { display: inline; }
.admin-login-shell { display: grid; place-items: center; min-height: 100vh; padding: 24px; }
.admin-login-card {
  background: #101010; border: 1px solid var(--card-border); border-radius: 14px;
  padding: 32px; width: 100%; max-width: 380px;
}

/* ============================================================================
   Multi-image uploader on admin/projects.php
   ============================================================================ */
.proj-uploader__drop {
  position: relative;
  border: 2px dashed #2a2825;
  border-radius: 12px;
  background: #101010;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.proj-uploader__drop:hover,
.proj-uploader__drop.is-dragover {
  border-color: var(--orange);
  background: #15140f;
}
.proj-uploader__pick { display: block; cursor: pointer; }
.proj-uploader__pick strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.proj-uploader__pick span   { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }

.proj-uploader__previews {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 14px;
}
.proj-uploader__row {
  display: flex; gap: 14px; align-items: flex-start;
  background: #101010; border: 1px solid var(--card-border);
  border-radius: 10px; padding: 12px;
}
.proj-uploader__row--error { border-color: #ff6b6b; background: #1a0c0c; }
.proj-uploader__row--error .proj-uploader__meta input[type="text"] { border-color: #ff6b6b; }
.proj-uploader__thumb {
  flex-shrink: 0;
  width: 110px; height: 82px;
  border-radius: 6px; overflow: hidden;
  background: #15140f; border: 1px solid #1f1d1a;
}
.proj-uploader__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-uploader__meta { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.proj-uploader__filename { color: var(--text); font-size: 13.5px; font-weight: 600; word-break: break-all; }
.proj-uploader__meta label { font-size: 11.5px; color: var(--muted); }
.proj-uploader__meta input[type="text"] { padding: 9px 11px; font-size: 14px; }
.proj-uploader__meta .btn-sm { align-self: flex-start; }

.proj-uploader__footer { display: flex; gap: 10px; margin-top: 14px; }

.proj-uploader__progress { margin-top: 14px; }
.proj-uploader__progress-bar {
  height: 8px; background: #1f1d1a; border-radius: 4px; overflow: hidden;
}
.proj-uploader__progress-bar > div {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  transition: width 0.18s ease;
}

.proj-uploader__results {
  margin-top: 14px; display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
}
.proj-uploader__result.is-ok   { color: #6ad08a; }
.proj-uploader__result.is-fail { color: #ffb0b0; }

@media (max-width: 600px) {
  .proj-uploader__row { flex-direction: row; }
  .proj-uploader__thumb { width: 80px; height: 60px; }
  .proj-uploader__footer .btn { flex: 1; min-height: 48px; justify-content: center; }
}

/* ============================================================================
   Admin responsive (mobile + tablet).
   Desktop unchanged. Sidebar collapses to a horizontal scrollable nav strip
   above the main content. Tables become card stacks. Forms go single-column.
   All buttons hit 44x44 minimum tap target.
   ============================================================================ */

/* Tablet: 769px to 1024px. Just shrink the sidebar a touch. */
@media (max-width: 1024px) {
  .admin-shell { grid-template-columns: 200px 1fr; }
  .admin-main  { padding: 24px 22px; }
}

/* Mobile: 768px and below. Stack everything. */
@media (max-width: 768px) {
  .admin-shell {
    display: block;        /* drop grid layout, just stack */
    min-height: 100vh;
  }
  .admin-side {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid #1a1916;
    position: sticky; top: 0; z-index: 50;
    background: #0a0908;
    -webkit-overflow-scrolling: touch;
  }
  .admin-side h2 {
    flex-shrink: 0;
    font-size: 0.85rem;
    margin: 0 8px 0 4px;
    white-space: nowrap;
  }
  .admin-side a {
    flex-shrink: 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .admin-main { padding: 18px 16px 32px; }
  .admin-main h1 { font-size: 1.3rem; margin-bottom: 14px; }

  /* Image tile grid: tighter on mobile. */
  .admin-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .admin-tile .meta { padding: 10px; font-size: 13px; gap: 10px; }
  .admin-tile .meta form {
    display: flex;
    flex-direction: column;   /* stack form fields on mobile */
    align-items: stretch;
    gap: 8px;
  }
  .admin-tile select,
  .admin-tile input[type="text"],
  .admin-tile input[type="number"] {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    font-size: 14px;
    min-height: 44px;
  }
  .admin-tile .btn-sm { min-height: 44px; padding: 10px 16px; }

  /* Tables: horizontal-scroll wrapper with a visible scrollbar hint. */
  .submissions {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #1f1d1a;
    border-radius: 8px;
    margin: 0 -2px;
  }
  .submissions table { min-width: 560px; }
  .submissions th, .submissions td { padding: 8px 10px; font-size: 13px; }

  /* Leads CRM view: single column, action buttons full width. */
  .leads-grid { grid-template-columns: 1fr; gap: 12px; }
  .lead-card { padding: 14px; }
  .lead-card__head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .lead-card__actions { gap: 8px; }
  .lead-card__actions .btn-sm,
  .lead-card__actions a.btn-sm,
  .lead-card__actions button.btn-sm {
    flex: 1 1 calc(50% - 4px);   /* two per row, full-width fallback */
    min-height: 44px;
    padding: 12px 14px;
    text-align: center;
    justify-content: center;
  }

  /* Filter / search bar: single column. */
  .leads-filterbar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 8px;
  }
  .leads-filterbar input[type="search"],
  .leads-filterbar select { flex: none; width: 100%; min-height: 44px; padding: 11px 12px; }
  .leads-filterbar .btn-sm,
  .leads-filterbar .btn { width: 100%; min-height: 44px; }
  .leads-filterbar > span { text-align: center; margin: 4px 0 0; }

  /* Generic admin form inputs (upload, login). */
  .admin-main form input[type="text"],
  .admin-main form input[type="email"],
  .admin-main form input[type="password"],
  .admin-main form input[type="search"],
  .admin-main form input[type="number"],
  .admin-main form input[type="file"],
  .admin-main form textarea,
  .admin-main form select {
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 16px;          /* iOS won't auto-zoom forms with 16px+ inputs */
  }
  .admin-main form textarea { min-height: 120px; }

  .admin-main form .btn,
  .admin-main form button.btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 18px;
    justify-content: center;
  }

  /* Dashboard tile cards */
  .admin-tile h3 { font-size: 1.05rem; }

  /* Forms inside dashboard tiles keep the form .btn-sm tappable */
  .admin-tile form .btn-sm { min-height: 44px; }
}

/* Login screen at very small widths (375px) */
@media (max-width: 420px) {
  .admin-login-shell { padding: 16px; }
  .admin-login-card  { padding: 22px; }
  .admin-login-card h1 { font-size: 1.2rem; }
  .admin-login-card input { min-height: 44px; padding: 12px; font-size: 16px; }
  .admin-login-card .btn { min-height: 48px; }
}

/* Map and misc */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
  background: #101010; border: 1px solid var(--card-border); border-radius: var(--r-card);
  padding: 24px;
}
.info-card h3 { margin-top: 0; }
.info-card a { color: var(--orange); }
