/* =========================================================================
   Lehman Property Services — Design System
   Plain CSS, no build step. Mobile-first. Custom properties for brand.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Custom Properties
   ------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --ink: #1b1b1b;
  --ink-soft: #2b2b2a;
  --gold: #c6902f;
  --gold-dark: #a87722;
  --gold-light: #e0b768;
  --concrete: #a9a9ab;
  --slab: #d6d6d4;
  --off-white: #fafaf8;
  --white: #ffffff;

  /* Semantic */
  --color-bg: var(--off-white);
  --color-text: var(--ink);
  --color-text-muted: #5a5a58;
  --color-border: #e3e2dd;
  --color-danger: #a83232;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;
  --fs-h1: clamp(2.25rem, 5vw + 1rem, 3.75rem);
  --fs-h2: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
  --fs-h4: 1.125rem;
  --fs-lead: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);

  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.65;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6rem;

  --radius-sm: 3px;
  --radius-md: 6px;

  --shadow-card: 0 1px 2px rgba(27, 27, 27, 0.06), 0 6px 20px -8px rgba(27, 27, 27, 0.18);
  --shadow-lift: 0 12px 32px -12px rgba(27, 27, 27, 0.35);

  --max-width: 1180px;
  --header-height: 76px;
  --mobile-call-bar-height: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }

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

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: 0.005em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { max-width: 68ch; }
p.lead { font-size: var(--fs-lead); color: var(--color-text-muted); max-width: 56ch; }

.text-muted { color: var(--color-text-muted); }

/* Eyebrow label — small caps tag above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--on-dark { color: var(--gold-light); }

.section-heading { margin-top: var(--sp-3); margin-bottom: var(--sp-4); }
.section-heading p.lead { margin-top: var(--sp-3); }

/* -------------------------------------------------------------------------
   4. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

section { padding-block: var(--sp-7); }
.section-tight { padding-block: var(--sp-6); }

.stack > * + * { margin-top: var(--sp-4); }

.grid {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--services { grid-template-columns: repeat(3, 1fr); }
}
/* 4-up so the 7 service cards land as a 4 + 3 block rather than 5 + 2 orphans. */
@media (min-width: 1080px) {
  .grid--services { grid-template-columns: repeat(4, 1fr); }
}

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

.skip-link {
  position: absolute;
  left: var(--sp-3);
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-small);
  z-index: 200;
  transition: top 0.2s var(--ease-out);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

/* Slab-edge divider — evokes a control joint cut into a poured slab */
.slab-edge {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0 46px,
      var(--gold-dark) 46px 48px,
      transparent 48px 92px
    );
  opacity: 0.9;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), background-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: var(--shadow-card); }

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-dark:hover { background: var(--ink); color: var(--off-white); }

.btn--outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250, 250, 248, 0.55);
}
.btn--outline-light:hover { background: rgba(250, 250, 248, 0.1); border-color: var(--off-white); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1em 2em; font-size: 0.95rem; }

/* -------------------------------------------------------------------------
   6. Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 54px; width: auto; }

/* Starts [hidden] in the HTML; JS reveals it once it can actually control
   the nav. No-JS visitors never see a dead button. */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.nav-toggle[hidden] { display: none; }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* No-JS default: nav is a plain static block, always visible, so every
   link is reachable with zero JavaScript. JS adds .js-enhanced to switch
   it into a collapsible off-canvas panel controlled by the toggle button
   (which itself starts [hidden] and is only revealed once JS runs). */
.primary-nav {
  padding-block: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--color-border);
}
.primary-nav.js-enhanced {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--off-white);
  border-top: none;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: var(--sp-3) var(--sp-4) var(--sp-5);
}
.primary-nav.js-enhanced.is-open { display: block; }

.primary-nav__list { display: flex; flex-direction: column; gap: var(--sp-1); }

.primary-nav__list > li > a {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--color-border);
}
.primary-nav__list > li > a:hover { color: var(--gold-dark); }

/* Services submenu — native <details>/<summary>, no JS required to open it */
.nav-services > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  list-style: none;
}
.nav-services > summary::-webkit-details-marker,
.nav-services > summary::marker { display: none; content: ""; }
.nav-services > summary .chevron { transition: transform 0.2s var(--ease-out); }
.nav-services[open] > summary .chevron { transform: rotate(180deg); }

.nav-services__list {
  padding-left: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.nav-services__list li a {
  display: block;
  padding: var(--sp-2);
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--color-text-muted);
}
.nav-services__list li a:hover { color: var(--gold-dark); }

.primary-nav__cta { margin-top: var(--sp-3); }

@media (min-width: 900px) {
  .brand img { height: 64px; }
  .nav-toggle { display: none; }

  .primary-nav {
    border-top: none;
    padding-block: 0;
  }
  .primary-nav.js-enhanced,
  .primary-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .primary-nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-1);
  }
  .primary-nav__list > li { position: relative; }
  .primary-nav__list > li > a {
    border: none;
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.85rem;
  }

  .nav-services { position: relative; }
  .nav-services > summary {
    border: none;
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.85rem;
  }
  .nav-services > summary:hover { color: var(--gold-dark); }
  .nav-services__list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
    padding: var(--sp-2);
    margin-top: var(--sp-1);
  }
  .nav-services__list li a { border-radius: var(--radius-sm); }
  .nav-services__list li a:hover { background: var(--off-white); }

  .primary-nav__cta { margin-top: 0; margin-left: var(--sp-2); }
}

/* -------------------------------------------------------------------------
   7. Hero (dark, textured, no photography)
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(198, 144, 47, 0.18), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 5px),
    linear-gradient(160deg, #232321 0%, #1b1b1b 55%, #161615 100%);
  color: var(--off-white);
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 118px, rgba(198, 144, 47, 0.06) 118px 120px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-8) var(--sp-7);
  max-width: 46rem;
}
.hero h1 { color: var(--white); margin-top: var(--sp-3); }
.hero p.lead { color: rgba(250, 250, 248, 0.82); margin-top: var(--sp-4); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(250, 250, 248, 0.15);
}
.hero__meta-item {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.75);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero__meta-item strong { color: var(--gold-light); }

/* Smaller inner-page hero */
.hero--page .hero__inner { padding-block: var(--sp-6); max-width: 52rem; }
.hero--page h1 { font-size: var(--fs-h2); margin-top: var(--sp-2); }

/* -------------------------------------------------------------------------
   8. Breadcrumb
   ------------------------------------------------------------------------- */
.breadcrumb {
  padding-block: var(--sp-3);
  font-size: var(--fs-tiny);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--white);
}
.breadcrumb a { text-decoration: none; color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb__sep { margin-inline: 0.5em; color: var(--concrete); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------------------
   9. Cards
   ------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.15rem; margin-top: 0; }
.service-card p { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: var(--sp-2); }
.service-card__link {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.service-card:hover .service-card__link { color: var(--gold); }
.service-card:hover .service-card__link .arrow { transform: translateX(3px); }
.service-card__link .arrow { transition: transform 0.15s var(--ease-out); }

/* Trust / feature list */
.trust-grid { }
.trust-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.trust-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h3 { font-size: 1.05rem; margin-top: 0; }
.trust-item p { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: var(--sp-1); }

/* -------------------------------------------------------------------------
   10. Sections — light / dark / gray variants
   ------------------------------------------------------------------------- */
.section--ink { background: var(--ink); color: var(--off-white); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(250, 250, 248, 0.78); }

.section--slab { background: var(--slab); }
.section--white { background: var(--white); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--ink) 0%, #262624 100%);
  color: var(--off-white);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 144, 47, 0.35);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(198, 144, 47, 0.07) 60px 62px);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p.lead { color: rgba(250, 250, 248, 0.8); margin-inline: auto; }
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

/* -------------------------------------------------------------------------
   11. FAQ Accordion
   Base markup is native <details>/<summary> so it fully works with no JS.
   JS (js/main.js) only adds the exclusive-open "close others" behavior.
   ------------------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--color-border); }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker,
.faq-item > summary::marker { display: none; content: ""; }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-1);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-item__question:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; }

.faq-item__question .plusminus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
}
.faq-item__question .plusminus::before,
.faq-item__question .plusminus::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__question .plusminus::before { width: 12px; height: 2px; }
.faq-item__question .plusminus::after { width: 2px; height: 12px; transition: transform 0.2s var(--ease-out); }
.faq-item[open] .plusminus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-item__answer-inner {
  padding: 0 var(--sp-1) var(--sp-4);
  color: var(--color-text-muted);
}

/* Simple fade/slide-in for the answer on browsers that support it; harmless no-op elsewhere */
@starting-style {
  .faq-item[open] .faq-item__answer-inner { opacity: 0; }
}
.faq-item__answer-inner { opacity: 1; transition: opacity 0.2s var(--ease-out); }

/* -------------------------------------------------------------------------
   12. Forms
   ------------------------------------------------------------------------- */
.form-field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-field label {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  background: var(--white);
  font-size: 1rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 144, 47, 0.2);
}
.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-3);
}
.form-field--checkbox input { margin-top: 0.3em; flex-shrink: 0; width: 18px; height: 18px; }
.form-field--checkbox label { text-transform: none; font-family: var(--font-body); letter-spacing: 0; font-size: var(--fs-small); color: var(--color-text-muted); }
.form-note { font-size: var(--fs-tiny); color: var(--color-text-muted); margin-top: var(--sp-3); }
.form-note a { color: var(--gold-dark); }

/* -------------------------------------------------------------------------
   13. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 248, 0.75);
  padding-block: var(--sp-7) var(--sp-6);
}
.site-footer a { color: rgba(250, 250, 248, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand img { height: 52px; width: auto; margin-bottom: var(--sp-3); }
.footer-brand p { font-size: var(--fs-small); max-width: 32ch; }
.footer-heading {
  font-family: var(--font-display);
  color: var(--off-white);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.footer-list li { margin-bottom: var(--sp-2); font-size: var(--fs-small); }
.footer-nap li { margin-bottom: var(--sp-2); font-size: var(--fs-small); }
.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(250, 250, 248, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: var(--fs-tiny);
  color: rgba(250, 250, 248, 0.55);
}
.footer-bottom__links { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Bottom padding so sticky mobile call bar never covers footer content */
@media (max-width: 899px) {
  body { padding-bottom: var(--mobile-call-bar-height); }
}

/* -------------------------------------------------------------------------
   14. Sticky mobile click-to-call bar
   ------------------------------------------------------------------------- */
.mobile-call-bar {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  height: var(--mobile-call-bar-height);
  background: var(--ink);
  border-top: 2px solid var(--gold);
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-decoration: none;
}
.mobile-call-bar__call { color: var(--off-white); border-right: 1px solid rgba(250, 250, 248, 0.15); }
.mobile-call-bar__quote { color: var(--ink); background: var(--gold); }

@media (min-width: 900px) {
  .mobile-call-bar { display: none; }
}

/* -------------------------------------------------------------------------
   15. Gallery placeholders
   ------------------------------------------------------------------------- */
.gallery-category { margin-bottom: var(--sp-7); }
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(45deg, rgba(27,27,27,0.05) 0 12px, transparent 12px 24px),
    var(--slab);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--sp-3);
}
.gallery-placeholder .icon { color: var(--gold-dark); }
.gallery-placeholder span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; font-size: var(--fs-small); }

/* Real project photos. Same 4:3 box as the placeholder so swapping one for the
   other never shifts the grid. Drop a <figure class="gallery-photo"> in place of
   a .gallery-placeholder; see HANDOFF.md. */
.gallery-photo { margin: 0; }
.gallery-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.gallery-photo figcaption {
  margin-top: var(--sp-2);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}
.gallery-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------
   16. Testimonials (kept for later use; homepage markup ships commented out)
   ------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--sp-5);
  box-shadow: var(--shadow-card);
}
.testimonial-card__quote { font-size: 1.05rem; font-style: italic; color: var(--ink); }
.testimonial-card__author { margin-top: var(--sp-3); font-family: var(--font-display); text-transform: uppercase; font-size: var(--fs-small); letter-spacing: 0.05em; color: var(--gold-dark); }

/* -------------------------------------------------------------------------
   17. Legal pages (privacy / terms)
   ------------------------------------------------------------------------- */
.legal-content h2 { font-size: 1.4rem; margin-top: var(--sp-6); }
.legal-content h3 { font-size: 1.1rem; margin-top: var(--sp-4); }
.legal-content p, .legal-content li { color: var(--color-text-muted); max-width: 72ch; }
.legal-content ul { list-style: disc; padding-left: 1.3em; margin-top: var(--sp-2); }
.legal-content li { margin-bottom: var(--sp-2); }
.legal-content li p { margin: 0; max-width: none; }
.legal-content strong { color: var(--ink); }
.legal-meta { color: var(--color-text-muted); font-size: var(--fs-small); }
.legal-content section + section { margin-top: var(--sp-5); }

/* -------------------------------------------------------------------------
   18. 404
   ------------------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--gold);
  line-height: 1;
}

/* -------------------------------------------------------------------------
   19. Utility
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
