/* ==========================================================================
   Songbird Wood Design & Construction — Design System
   Palette derived from the brand mark: black/charcoal ground, warm cream,
   brass/gold accent, deep walnut. Serif display type + clean sans body,
   echoing the logo's engraved, workshop-badge feel.
   ========================================================================== */

:root {
  --black: #14120e;
  --charcoal: #1e1b16;
  --charcoal-2: #262119;
  --walnut: #3c2f22;
  --cream: #f4ecda;
  --cream-dim: #e3d8bd;
  --cream-faint: #c9bc9c;
  --gold: #b6863f;
  --gold-light: #d3a75f;
  --gold-dim: #8a6530;
  --ink: #241f18;
  --ink-soft: #4a4234;
  --line: rgba(182, 134, 63, 0.35);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);

  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1180px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Wood-grain texture helper ---------- */
.grain {
  position: relative;
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    92deg,
    #000 0px,
    transparent 1px,
    transparent 3px,
    #000 4px,
    transparent 7px,
    transparent 14px
  );
  mix-blend-mode: multiply;
}

/* ---------- Ornament divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 28px;
}
.ornament .rule { width: 46px; height: 1px; background: var(--gold); opacity: 0.8; }
.ornament svg { width: 16px; height: 16px; fill: var(--gold); }
.ornament.light .rule { background: var(--cream-dim); }
.ornament.light svg { fill: var(--cream-dim); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.eyebrow.on-dark { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-faint);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dim); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(182,134,63,0.25);
}
.nav-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.15;
  white-space: nowrap;
}
.brand-text .name { display: block; font-size: 14.5px; letter-spacing: 0.02em; }
.brand-text .tag {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.main-nav ul {
  display: flex;
  gap: 19px;
  flex-wrap: nowrap;
}
.main-nav a {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 6px 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--cream-dim);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  display: none;
  white-space: nowrap;
}
.nav-cta .btn { white-space: nowrap; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

.nav-cta .btn-primary {
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (min-width: 1301px) {
  .nav-phone { display: inline-block; }
}

/* ---------- Services dropdown ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--cream-dim);
}
.dropdown-toggle svg {
  width: 11px; height: 11px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: var(--black);
  border: 1px solid rgba(182,134,63,0.25);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 12.5px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  border-bottom: none;
}
.dropdown a:hover,
.dropdown a.active {
  color: var(--gold-light);
  background: rgba(182,134,63,0.08);
  border-bottom: none;
}

@media (max-width: 1300px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(182,134,63,0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .main-nav.open { max-height: 80vh; overflow-y: auto; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 28px 20px;
  }
  .main-nav li { border-bottom: 1px solid rgba(244,236,218,0.08); }
  .main-nav a { display: block; padding: 14px 0; }
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }

  .has-dropdown > a { display: inline-block; padding-right: 30px; }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 6px;
  }
  .dropdown-toggle.open svg { transform: rotate(180deg); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .dropdown.open { max-height: 400px; padding-bottom: 8px; }
  .dropdown a { padding: 10px 0 10px 16px; color: var(--cream-faint); font-size: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 50% -10%, #2a2419 0%, var(--black) 60%);
  color: var(--cream);
  padding: 110px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero .crest { width: 96px; height: auto; margin: 0 auto 26px; opacity: 0.96; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lede {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 46px;
  display: flex;
  gap: 34px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--cream-faint);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 15px; height: 15px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.page-hero {
  background: var(--black);
  color: var(--cream);
  padding: 74px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--cream); font-size: clamp(30px, 4.4vw, 44px); }
.page-hero p { color: var(--cream-dim); max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-dark { background: var(--black); color: var(--cream); }
.section-charcoal { background: var(--charcoal); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-walnut { background: var(--walnut); color: var(--cream); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }
.section-dark .section-head p,
.section-charcoal .section-head p,
.section-walnut .section-head p { color: var(--cream-dim); }

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-charcoal h1, .section-charcoal h2, .section-charcoal h3, .section-charcoal h4,
.section-walnut h1, .section-walnut h2, .section-walnut h3, .section-walnut h4 {
  color: var(--cream);
}
.pillar h3 { color: inherit; }

/* ---------- Value props / pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar { text-align: center; }
.pillar .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar .icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 19px; margin-bottom: 10px; }
.pillar p { color: var(--cream-dim); font-size: 15px; margin: 0; }

@media (max-width: 780px) {
  .pillars { grid-template-columns: 1fr; gap: 46px; }
}

/* ---------- Cards: services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid rgba(36,31,24,0.08);
  border-top: 3px solid var(--gold);
  padding: 34px 28px;
  box-shadow: var(--shadow);
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.service-card a.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

/* ---------- Placeholder tiles (gallery) ---------- */
.ph-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--charcoal-2) 0%, var(--walnut) 100%);
  border: 1px solid rgba(182,134,63,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    100deg, rgba(244,236,218,0.05) 0px, transparent 2px, transparent 6px, rgba(244,236,218,0.05) 8px, transparent 16px
  );
}
.ph-tile .ph-label {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream-faint);
  padding: 0 18px;
}
.ph-tile .ph-label svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 12px; opacity: 0.85; }
.ph-tile .ph-label .cat {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream-dim);
  margin-bottom: 4px;
}
.ph-tile .ph-label .note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-row button {
  background: transparent;
  border: 1px solid var(--ink-soft);
  color: var(--ink-soft);
  padding: 9px 18px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.filter-row button:hover,
.filter-row button.active {
  border-color: var(--gold);
  color: var(--gold-dim);
  background: rgba(182,134,63,0.08);
}

/* ---------- Placeholder notice banner ---------- */
.mockup-note {
  background: rgba(182,134,63,0.1);
  border: 1px dashed var(--gold);
  color: var(--ink-soft);
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 3px;
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mockup-note strong { color: var(--gold-dim); }
.mockup-note.on-dark {
  background: var(--charcoal);
  color: var(--cream-dim);
  border-color: var(--gold-light);
  max-width: 780px;
}
.mockup-note.on-dark strong { color: var(--gold-light); }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border: 1px solid rgba(36,31,24,0.08);
  box-shadow: var(--shadow);
  padding: 38px 32px;
  position: relative;
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.testi-card p.body { color: var(--ink-soft); font-style: italic; margin-bottom: 20px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(150deg, var(--walnut), var(--charcoal-2));
  border: 1px solid var(--gold);
}
.testi-card .name { font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.testi-card .meta { font-size: 12px; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--charcoal-2), var(--walnut));
  border: 1px solid rgba(182,134,63,0.35);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(100deg, rgba(244,236,218,0.05) 0px, transparent 2px, transparent 6px, rgba(244,236,218,0.05) 8px, transparent 16px);
}
.about-portrait .label {
  position: relative; z-index: 2; text-align: center; color: var(--cream-faint); padding: 0 24px;
}
.about-portrait svg { width: 34px; height: 34px; fill: none; stroke: var(--gold-light); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 14px; }

.stat-row { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.stat { }
.stat .n { font-family: var(--font-display); font-size: 32px; color: var(--gold-dim); }
.stat .l { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Service area ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 900px) { .area-wrap { grid-template-columns: 1fr; } }
.radius-graphic {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}
.radius-graphic .ring {
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(182, 134, 63, 0.06);
}
.radius-graphic .ring.r1 { width: 30%; height: 30%; opacity: 1; background: rgba(182, 134, 63, 0.14); }
.radius-graphic .ring.r2 { width: 64%; height: 64%; opacity: 0.75; border-style: dashed; }
.radius-graphic .ring.r3 { width: 100%; height: 100%; opacity: 0.5; border-style: dashed; }
.radius-graphic .ring .ring-label {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  background: var(--cream);
  padding: 2px 8px;
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dim);
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 20px;
  z-index: 3;
}
.radius-graphic .center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(182,134,63,0.18);
  z-index: 2;
}
.radius-graphic .center-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, 16px);
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}
.town-list { columns: 2; gap: 26px; }
.town-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(36,31,24,0.08);
  font-size: 15px;
  break-inside: avoid;
}
.town-list li span.state { color: var(--gold-dim); font-size: 12px; margin-left: 6px; }
@media (max-width: 500px) { .town-list { columns: 1; } }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--black);
  color: var(--cream);
  padding: 40px 34px;
  height: fit-content;
}
.contact-info-card h3 { color: var(--cream); font-size: 20px; }
.contact-info-card .row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(244,236,218,0.1);
}
.contact-info-card .row:last-of-type { border-bottom: none; }
.contact-info-card svg { width: 18px; height: 18px; fill: none; stroke: var(--gold-light); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; flex-shrink: 0; }
.contact-info-card .label { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }
.contact-info-card .val { color: var(--cream-dim); font-size: 15px; }

.form-card {
  background: #fff;
  border: 1px solid rgba(36,31,24,0.08);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(36,31,24,0.2);
  background: #fbf9f3;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 12px; color: var(--cream-faint); margin-top: 6px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }
.form-success {
  display: none;
  background: rgba(182,134,63,0.12);
  border: 1px solid var(--gold);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14.5px;
  color: var(--ink);
}
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--black); font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 12px; }
.cta-band p { color: rgba(20,18,14,0.75); margin-bottom: 26px; }
.cta-band .btn-primary { background: var(--black); color: var(--cream); border-color: var(--black); }
.cta-band .btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--cream-dim); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(244,236,218,0.1);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--cream-faint); max-width: 260px; }
.site-footer h4 {
  color: var(--cream); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.site-footer li { margin-bottom: 11px; font-size: 14px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--cream-faint);
}
.footer-bottom .built { color: var(--cream-faint); }

/* ---------- Project photos ---------- */
.service-card .thumb {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: -34px -28px 22px;
}
.gallery-masonry { columns: 3; column-gap: 20px; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 560px) { .gallery-masonry { columns: 1; } }
.photo-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  border: 1px solid rgba(182,134,63,0.35);
  background: var(--charcoal-2);
  break-inside: avoid;
  cursor: zoom-in;
  overflow: hidden;
}
.photo-tile img { width: 100%; height: auto; display: block; transition: transform 0.35s ease, opacity 0.2s ease; }
.photo-tile:hover img { transform: scale(1.03); opacity: 0.92; }
.photo-tile:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }
.work-grid .photo-tile { margin: 0; aspect-ratio: 4 / 3; }
.work-grid .photo-tile img { height: 100%; object-fit: cover; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,9,7,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px 64px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: var(--shadow); }
.lightbox button {
  position: absolute; background: none; border: none; color: var(--cream);
  font-size: 34px; line-height: 1; cursor: pointer; padding: 12px 16px; opacity: 0.85;
}
.lightbox button:hover { color: var(--gold-light); opacity: 1; }
.lightbox .lb-close { top: 10px; right: 14px; }
.lightbox .lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 8px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-caption {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  color: var(--cream-dim); font-size: 13.5px; padding: 0 60px;
}
@media (max-width: 560px) { .lightbox { padding: 56px 8px; } }

/* ---------- Service detail pages ---------- */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  margin: 0 0 1em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 620px) { .check-list { grid-template-columns: 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--ink-soft); text-align: left; }
.check-list svg {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.related-services { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.related-services a {
  padding: 10px 18px;
  border: 1px solid rgba(244,236,218,0.25);
  border-radius: 2px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: all 0.2s ease;
}
.related-services a:hover { border-color: var(--gold); color: var(--gold-light); }

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