/* ==========================================================================
   Thomas Construction LLC — Design System
   Pure CSS. No frameworks. Premium / quiet-luxury construction brand.
   Palette: charcoal, warm off-white, stone neutrals, bronze accent.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color — palette: white · charcoal · black · brand orange (#F1773F, sampled from logo).
     Brand-orange derivatives keep the --bronze* names so every existing rule inherits them. */
  --charcoal: #20242a;
  --charcoal-2: #2a2f36;
  --black: #0e1013;
  --ink: #17191d;
  --slate: #444b54;
  --slate-light: #687078;
  --stone: #9a9a98;
  --offwhite: #ffffff;      /* page background */
  --bg-alt: #f4f4f2;        /* subtle alternating sections */
  --paper: #ffffff;         /* cards / surfaces */
  --line: #e7e5e1;
  --line-dark: #343a41;
  --orange: #f1773f;        /* brand orange */
  --bronze: #f1773f;        /* alias of brand orange */
  --bronze-dark: #d85f22;   /* deeper orange — text-on-white, hovers */
  --bronze-soft: #f6a878;   /* light orange — accents on dark */
  --bronze-tint: #fcede3;   /* faint orange wash — chips, icon backgrounds */
  --green: #2f5d4f;
  --white: #ffffff;
  --success: #2f7d54;

  /* Type */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
  --step-3: clamp(1.8rem, 1.55rem + 1.25vw, 2.6rem);
  --step-4: clamp(2.2rem, 1.8rem + 2vw, 3.4rem);
  --step-5: clamp(2.6rem, 2rem + 3vw, 4.4rem);

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius: 4px;
  --radius-lg: 10px;
  --gap: clamp(1rem, 0.7rem + 1.5vw, 2rem);
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20, 23, 26, 0.06), 0 2px 6px rgba(20, 23, 26, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 23, 26, 0.08), 0 2px 6px rgba(20, 23, 26, 0.05);
  --shadow-lg: 0 22px 50px rgba(20, 23, 26, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--slate);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--bronze-dark); text-decoration: none; }
a:hover { color: var(--bronze); }
ul, ol { padding-left: 1.25rem; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--bronze); outline-offset: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { max-width: 72ch; }
p + p { margin-top: 1rem; }
.lead { font-size: var(--step-1); color: var(--slate); line-height: 1.6; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze-dark);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--bronze-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--charcoal); color: #cfd4da; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--bronze-tint { background: var(--bronze-tint); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); }
.section--dark .section-head p { color: #b3bac2; }

.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.skip-link {
  position: absolute; left: 0.5rem; top: -3rem; z-index: 200;
  background: var(--charcoal); color: #fff; padding: 0.65rem 1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.5rem; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  padding: 0.85rem 1.6rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  line-height: 1.1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--bronze); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bronze-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--charcoal); color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: var(--step-1); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,254,251,0.94);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand img { width: 48px; height: 48px; flex: none; border-radius: 50%; }
@media (max-width: 480px) { .brand img { width: 42px; height: 42px; } .brand { font-size: 1.05rem; } }
.brand small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze-dark); font-weight: 700; }
.brand-name { line-height: 1.05; }

.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.main-nav > ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; padding: 0; margin: 0; }
.main-nav a { color: var(--charcoal); font-weight: 500; font-size: 0.98rem; padding: 0.55rem 0.7rem; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 0.3rem; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--bronze-dark); background: var(--bronze-tint); }
.has-dropdown { position: relative; }
.dropdown-toggle { background: none; border: 0; color: var(--charcoal); font-weight: 500; font-size: 0.98rem; padding: 0.55rem 0.7rem; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 0.3rem; }
.dropdown-toggle:hover { color: var(--bronze-dark); background: var(--bronze-tint); }
.dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.2s var(--ease); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 280px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 0.5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s var(--ease);
}
.dropdown li { margin: 0; }
.dropdown a { display: block; padding: 0.6rem 0.8rem; font-size: 0.95rem; border-radius: var(--radius); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { font-weight: 700; color: var(--ink); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem; }
.header-phone:hover { color: var(--bronze-dark); }
.header-phone svg { width: 16px; height: 16px; color: var(--bronze-dark); }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--radius); width: 46px; height: 42px; padding: 0; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 22px; height: 2px; background: var(--charcoal); transition: 0.25s var(--ease); }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 76px; right: 0; left: auto; bottom: auto;
    height: calc(100vh - 76px); height: calc(100dvh - 76px);
    width: min(360px, 86vw); background: var(--paper);
    border-left: 1px solid var(--line); box-shadow: var(--shadow-lg); flex-direction: column; align-items: stretch;
    padding: 1.25rem; gap: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; transform: translateX(110%); transition: transform 0.3s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0.1rem; width: 100%; }
  .main-nav a, .dropdown-toggle { padding: 0.8rem 0.6rem; font-size: 1.05rem; width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 0.5rem 0.8rem; padding: 0; min-width: 0; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
  .header-cta .header-phone { display: none; }
}
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,23,26,0.4); opacity: 0; visibility: hidden; transition: 0.3s var(--ease); z-index: 99; }
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20,23,26,0.55) 0%, rgba(20,23,26,0.80) 100%),
    url("/assets/img/Expirement Website Background Image.png") center / cover no-repeat,
    #1c1f23;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(135deg, rgba(241,119,63,0.24) 0%, transparent 45%);
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(4rem, 3rem + 8vw, 8.5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: #d7dbe0; max-width: 56ch; margin-top: 1.25rem; }
.hero .btn-row { margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.16); }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #d7dbe0; font-weight: 500; }
.hero-badge svg { width: 18px; height: 18px; color: var(--bronze-soft); flex: none; }

.page-hero { background: var(--charcoal); color: #fff; }
.page-hero .container { padding-block: clamp(2.75rem, 2rem + 4vw, 4.5rem); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lead { color: #c9ced4; margin-top: 1rem; }

/* Service page hero with photo background (image set per page) */
.page-hero--photo { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero--photo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,23,26,0.74) 0%, rgba(20,23,26,0.86) 100%);
}
.page-hero--photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(135deg, rgba(241,119,63,0.24) 0%, transparent 45%);
}
.page-hero--photo > .container { position: relative; z-index: 1; }
/* Taller hero variant — reveals more of the background photo */
.page-hero--tall { display: flex; align-items: center; min-height: clamp(440px, 44vw, 640px); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; color: var(--slate-light); }
.breadcrumbs li:not(:last-child)::after { content: "›"; color: var(--stone); }
.breadcrumbs a { color: var(--slate); }
.page-hero .breadcrumbs { margin-bottom: 1rem; }
.page-hero .breadcrumbs a, .page-hero .breadcrumbs li { color: #aab1b9; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--charcoal-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; justify-content: center; padding-block: 1.1rem; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; color: #d7dbe0; font-size: 0.92rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--bronze-soft); flex: none; }

/* ---------- Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--bronze-soft); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card h3 { font-size: var(--step-1); }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--bronze-dark); }
.card p { font-size: 0.97rem; color: var(--slate); flex: 1; }
.card-link { font-weight: 600; color: var(--bronze-dark); display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; }
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with icon */
.svc-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--bronze-tint); color: var(--bronze-dark); display: grid; place-items: center; margin-bottom: 0.25rem; }
.svc-icon svg { width: 28px; height: 28px; }

/* ---------- Placeholder image system ---------- */
.ph-img {
  position: relative; display: flex; align-items: flex-end; aspect-ratio: 4 / 3; width: 100%;
  background: linear-gradient(135deg, #2b3036 0%, #3c434b 55%, #2b3036 100%);
  color: #e7d9c6; overflow: hidden;
}
.ph-img::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px);
}
.ph-img::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; transform: translate(-50%, -120%);
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4b48c' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3Cpath d='M8 5l1.5-2h5L16 5'/%3E%3C/svg%3E");
  opacity: 0.75;
}
.ph-img span { position: relative; z-index: 1; width: 100%; padding: 0.7rem 0.9rem; font-size: 0.74rem; font-family: var(--font-body); letter-spacing: 0.02em; background: linear-gradient(0deg, rgba(20,23,26,0.85), transparent); color: #e7d9c6; }
.ph-img.ratio-wide { aspect-ratio: 16 / 9; }
.ph-img.ratio-square { aspect-ratio: 1 / 1; }
.ph-img.ratio-tall { aspect-ratio: 3 / 4; }

/* ---------- Why-choose feature list ---------- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--bronze-tint); color: var(--bronze-dark); display: grid; place-items: center; flex: none; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.feature p { font-size: 0.96rem; }
.section--dark .feature-icon { background: rgba(181,121,58,0.2); color: var(--bronze-soft); }
.section--dark .feature p { color: #b3bac2; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { position: relative; padding-left: 4.5rem; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -0.2rem; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--bronze); width: 3.4rem; }
.step h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.step p { font-size: 0.96rem; }
.section--dark .step p { color: #b3bac2; }

/* ---------- Split / media sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }
.split-media .ph-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-family: var(--font-display); font-size: var(--step-4); color: var(--bronze); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--slate); margin-top: 0.4rem; }
.section--dark .stat-label { color: #b3bac2; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: var(--bronze); letter-spacing: 2px; font-size: 1rem; }
.testimonial blockquote { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.45; color: var(--ink); }
.testimonial cite { font-style: normal; font-size: 0.92rem; color: var(--slate); }
.testimonial cite strong { display: block; color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.filter-btn { background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.9rem; font-weight: 600; color: var(--slate); transition: 0.18s var(--ease); }
.filter-btn:hover { border-color: var(--bronze-soft); color: var(--bronze-dark); }
.filter-btn[aria-pressed="true"] { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.gallery-item.hide { display: none; }
.gallery-item .ph-img { aspect-ratio: 4/3; }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.25rem 2.5rem 1.25rem 0; font-family: var(--font-display); font-size: var(--step-1); color: var(--ink); position: relative; display: flex; gap: 1rem; align-items: flex-start; }
.faq-q:hover { color: var(--bronze-dark); }
.faq-q::after { content: ""; position: absolute; right: 0.2rem; top: 1.6rem; width: 14px; height: 14px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d85f22' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); transition: transform 0.25s var(--ease); }
.faq-q[aria-expanded="true"]::after { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.faq-a-inner { padding: 0 0 1.4rem; color: var(--slate); }
.faq-a-inner p { margin-bottom: 0.8rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-group-title { margin: 2.5rem 0 0.5rem; font-size: var(--step-2); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 480px; }
th, td { text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
thead th { background: var(--charcoal); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #f7f7f5; }
td strong { color: var(--bronze-dark); }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field label .req { color: var(--bronze-dark); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; padding: 0.7rem 0.85rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(181,121,58,0.15); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.85rem; color: var(--slate-light); margin-top: 1rem; }
.form-success { display: none; background: #eef6f0; border: 1px solid #bcdcc7; color: #1f5a37; padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.25rem; }
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--charcoal) 0%, #2b3138 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 1.5rem + 3vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 140% at 90% 0%, rgba(241,119,63,0.28), transparent 50%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: #c9ced4; margin-inline: auto; margin-bottom: 1.75rem; }

/* ---------- Prose (article / legal / md-style content) ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--step-3); margin-top: 2.5rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.75rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--bronze); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { border-left: 3px solid var(--bronze); padding-left: 1.2rem; font-family: var(--font-display); font-size: var(--step-1); color: var(--ink); }
.prose .callout { background: var(--bronze-tint); border: 1px solid var(--bronze-soft); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.prose .callout p { margin: 0; }

.disclaimer { background: var(--bronze-tint); border: 1px solid var(--bronze-soft); border-left: 4px solid var(--bronze); border-radius: var(--radius); padding: 1.1rem 1.35rem; font-size: 0.95rem; color: var(--slate); }
.sample-note { font-size: 0.82rem; color: var(--slate-light); font-style: italic; text-align: center; margin-top: 1.25rem; }

/* ---------- Pills / chips ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { background: var(--bronze-tint); color: var(--bronze-dark); border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.85rem; font-weight: 600; }
.check-list { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.25rem; width: 20px; height: 20px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d85f22' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }
.section--dark .check-list li::before { filter: brightness(1.3); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 1rem; }
.team-photo.ph-img { aspect-ratio: 1; align-items: center; justify-content: center; }
.team-photo.ph-img span { background: none; text-align: center; }
.team-card h3 { font-size: var(--step-1); }
.team-role { color: var(--bronze-dark); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aab1b9; padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem) 2rem; font-size: 0.94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: #aab1b9; }
.site-footer a:hover { color: var(--bronze-soft); }
.site-footer .btn--primary, .site-footer .btn--primary:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand small { color: var(--bronze-soft); }
.footer-brand p { font-size: 0.92rem; color: #9aa1a9; max-width: 32ch; }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--bronze-soft); flex: none; margin-top: 0.2rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.footer-badge { font-size: 0.72rem; border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 0.3rem 0.55rem; color: #c9ced4; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.85rem; color: #7e858d; }
.footer-bottom a { color: #7e858d; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--slate-light); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }
.anchor-offset { scroll-margin-top: 100px; }
.local-list { columns: 3; column-gap: 2rem; list-style: none; padding: 0; }
.local-list li { margin-bottom: 0.5rem; break-inside: avoid; }
@media (max-width: 700px) { .local-list { columns: 2; } }
@media (max-width: 420px) { .local-list { columns: 1; } }
.map-embed { border: 0; width: 100%; height: 360px; border-radius: var(--radius-lg); filter: grayscale(0.2) contrast(1.05); }

/* ---------- Options / customization box (dark) ---------- */
.options-box { background: var(--charcoal); color: #cfd4da; border-radius: var(--radius-lg); padding: clamp(1.25rem, 1rem + 1vw, 1.85rem); }
.options-box .opt-intro { color: #c9ced4; font-size: 0.95rem; margin: 0 0 0.25rem; }
.options-box h3 { color: #fff; font-size: var(--step-1); margin-top: 1.6rem; }
.options-box h3.first { margin-top: 0.85rem; }
.options-box .opt-sub { color: #9aa1a9; font-size: 0.88rem; margin: 0.3rem 0 0.9rem; }
.options-box ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 1.4rem; }
.options-box li { position: relative; padding-left: 1.05rem; margin-bottom: 0.5rem; font-size: 0.86rem; line-height: 1.35; break-inside: avoid; color: #d7dbe0; }
.options-box li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }
@media (max-width: 500px) { .options-box ul { columns: 1; } }
