/* ============================================================
   CLADDING INSTALLERS — Design System
   Navy (#0d1f3d) + Gold (#c89e54) + Cream backgrounds
   ============================================================ */

:root {
  --navy-900: #0a182f;
  --navy-800: #0d1f3d;
  --navy-700: #1a2e54;
  --navy-600: #2b4170;
  --gold-600: #b58844;
  --gold-500: #c89e54;
  --gold-400: #d4b074;
  --gold-100: #f4ebd9;
  --cream-50: #fbf8f2;
  --cream-100: #f5efe2;
  --stone-100: #f5f5f3;
  --stone-200: #e8e8e4;
  --stone-300: #d4d4cf;
  --stone-500: #8a8a85;
  --stone-700: #4a4a47;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 1px 2px rgba(10,24,47,.06);
  --shadow-md: 0 4px 16px rgba(10,24,47,.08);
  --shadow-lg: 0 16px 48px rgba(10,24,47,.12);
  --container: 1280px;
  --container-narrow: 960px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-800); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-600); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: var(--cream-50);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gold-400); font-weight: 600; }
.topbar a:hover { color: var(--gold-500); }
.topbar .left, .topbar .right { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--navy-800);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-size: 1.2rem; font-weight: 800; }
.brand-text .sub { font-size: 0.65rem; color: var(--gold-600); font-weight: 700; letter-spacing: 0.15em; margin-top: 2px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy-800);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-nav a {
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--cream-100); color: var(--navy-800); }
.main-nav a.cta {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: 0.65rem 1.2rem;
  margin-left: 0.5rem;
}
.main-nav a.cta:hover { background: var(--gold-600); color: var(--white); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--stone-200);
    gap: 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--stone-200); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a.cta { margin: 0.6rem 0 0; text-align: center; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--gold-500);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,24,47,.92) 0%, rgba(13,31,61,.85) 60%, rgba(26,46,84,.78) 100%),
    radial-gradient(ellipse at top right, rgba(200,158,84,.15) 0%, transparent 50%);
  background-color: var(--navy-800);
  color: var(--white);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,158,84,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(200,158,84,.4);
  border-radius: 999px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero h1 .accent {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 700;
}
.hero p.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
}

/* Hero variants */
.hero-compact { padding: 3.5rem 0 3rem; }
.hero-compact h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero-compact p.lead { font-size: 1.05rem; }

.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.3rem;
}
.breadcrumbs a { color: var(--gold-400); }
.breadcrumbs a:hover { color: var(--gold-500); }
.breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 4.5rem 0; }
section.tight { padding: 3rem 0; }
section.bg-cream { background: var(--cream-50); }
section.bg-stone { background: var(--stone-100); }
section.bg-navy { background: var(--navy-800); color: var(--white); }
section.bg-navy h2, section.bg-navy h3 { color: var(--white); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.8rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  color: var(--stone-700);
  font-size: 1.08rem;
}
section.bg-navy .section-head p { color: rgba(255,255,255,.8); }
section.bg-navy .section-head .eyebrow { color: var(--gold-500); }

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   GRID & CARDS
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--stone-200);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.card .icon {
  width: 52px;
  height: 52px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.card p { color: var(--stone-700); font-size: 0.95rem; }
.card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-top: 1rem;
  font-size: 0.9rem;
}
.card .link:hover { color: var(--navy-800); }

/* Service card variation */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--gold-500);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover::before { opacity: 1; }

/* ============================================================
   FEATURES / USPs
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  flex-shrink: 0;
}
.feature h4 { margin-bottom: 0.4rem; }
.feature p { color: var(--stone-700); font-size: 0.95rem; }
section.bg-navy .feature p { color: rgba(255,255,255,.75); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: step;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.process-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--stone-200);
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.process-step p { font-size: 0.92rem; color: var(--stone-700); }

@media (max-width: 720px) {
  .process-step { border-right: 0; border-bottom: 1px solid var(--stone-200); }
  .process-step:last-child { border-bottom: 0; }
}

/* ============================================================
   SPLIT / CONTENT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.split .image {
  background: var(--navy-800);
  border-radius: var(--radius-md);
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(10,24,47,.7), rgba(13,31,61,.4)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(200,158,84,.08) 0px, rgba(200,158,84,.08) 1px, transparent 1px, transparent 80px);
}
.split .image::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--gold-500);
  opacity: 0.2;
  border-radius: 50%;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--stone-700); margin-bottom: 1.5rem; }
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone-200);
}
.contact-method:last-child { border-bottom: 0; }
.contact-method .icon {
  width: 40px;
  height: 40px;
  background: var(--cream-100);
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-method .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.2rem;
}
.contact-method .value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-800);
}
.contact-method a.value { color: var(--gold-600); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone-200);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form .form-sub { color: var(--stone-700); font-size: 0.95rem; margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-800);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200,158,84,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .hint { font-size: 0.78rem; color: var(--stone-500); margin-top: 0.3rem; }

/* ============================================================
   AREAS LIST
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
}
.areas-grid a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--navy-700);
  border-bottom: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.areas-grid a:hover { color: var(--gold-600); }
.areas-grid a::before { content: "→"; color: var(--gold-500); opacity: 0.7; font-size: 0.85rem; }

.region-block { margin-bottom: 2.5rem; }
.region-block h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold-500);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-600);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--stone-700);
  border-top: 1px solid var(--stone-200);
  padding-top: 1.25rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-bar .container {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-bar span::before {
  content: "✓";
  color: var(--gold-500);
  font-weight: 700;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,158,84,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200,158,84,.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.footer-grid h5 {
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-500); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.prose p { margin-bottom: 1.1rem; line-height: 1.75; color: var(--stone-700); }
.prose ul { margin-bottom: 1.5rem; }
.prose ul li { margin-bottom: 0.5rem; color: var(--stone-700); }
.prose strong { color: var(--navy-800); }

/* ============================================================
   IMAGE / SHOWCASE SECTIONS
   ============================================================ */
.showcase {
  padding: 3.5rem 0 0.5rem;
  background: #fff;
}
.showcase-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(13, 31, 61, 0.35);
  background: var(--navy-900);
}
.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inline banner for county/town pages — much smaller */
.page-banner {
  margin: 0 auto 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(13, 31, 61, 0.25);
  max-width: 900px;
}
.page-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Timber species gallery */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.species-card {
  background: #fff;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--stone-200);
  box-shadow: 0 4px 14px -6px rgba(13, 31, 61, 0.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.species-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(13, 31, 61, 0.22);
}
.species-card img {
  display: block;
  width: 100%;
  height: auto;
}
.species-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}
.species-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 .3rem;
  color: var(--navy-900);
}
.species-card p {
  margin: 0;
  color: var(--stone-700);
  font-size: .95rem;
  line-height: 1.55;
}

/* Overview poster on the services hub */
.overview-poster {
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(13, 31, 61, 0.3);
}
.overview-poster img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .showcase { padding: 2rem 0 0.25rem; }
  .page-banner { margin-bottom: 1.25rem; }
  .species-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .species-card h3 { font-size: 1.05rem; }
  .species-card p { font-size: .85rem; }
}
@media (max-width: 480px) {
  .species-grid { grid-template-columns: 1fr; }
}
