/* ============================================
   HEARTWOOD CRAFT — Design System v3
   Dark-first. Gruvbox-anchored. Editorial.
   v3 update: editorial patterns from Claude Design
   layered on top of v2 — all v2 classes still work.
   ============================================ */

/* ─── Base variables (non-CMS) ─── */
:root {
  /* Backgrounds */
  --bg-dark: #23282d;
  --bg-darker: #1d2021;
  --bg-dark-tint: #2c3238;
  --bg-light: #f0f0f1;

  /* Text on dark */
  --fg1: #ebdbb2;
  --fg2: #d5c4a1;
  --fg3: #a7aaad;

  /* Accents */
  --copper: #cf995f;
  --copper-hover: #d9a876;
  --copper-press: #b0814d;
  --maroon: #9d0006;
  --link: #0085ba;

  /* Borders */
  --border-dark: rgba(235,219,178,0.08);
  --border-light: #c3c4c7;

  /* Legacy aliases (for templates that still use these) */
  --charcoal: #23282d;
  --charcoal-light: #2e3338;
  --white: #ffffff;
  --warm-white: #ebdbb2;
  --warm-gray: #1d2021;
  --gray-200: #d5c4a1;
  --gray-400: #a7aaad;
  --gray-600: #a7aaad;
  --copper-light: #d9a876;
  --copper-dark: #b0814d;
  --text: #ebdbb2;
  --text-muted: #a7aaad;

  /* Typography */
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-label: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: clamp(1.125rem, 1.05rem + 0.2vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 0.8vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  --text-4xl: clamp(2rem, 1.5rem + 1.5vw, 3rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  --space-lg: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  --space-xl: clamp(3rem, 2rem + 2.5vw, 5rem);
  --space-2xl: clamp(4rem, 2.5rem + 3.5vw, 7rem);

  /* Radii — restrained, architectural */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-sm: 4px;

  /* Shadows — warm-black depth, not Material elevation */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.35);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.55);
  --shadow-inset: inset 0 1px 0 rgba(235,219,178,0.04);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 380ms;

  /* All layout/sizing vars (max-width, logo, hero, nav, etc.)
     are defined in theme.json → injected via <style> in base.njk.
     Do NOT duplicate them here — the CMS is the single source. */
}

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }
a { color: var(--link); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out); }
a:hover { border-bottom-color: currentColor; text-decoration: none; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--fg2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ─── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--fg1); }
h1 { font-size: var(--text-4xl); font-weight: 700; line-height: 1.05; letter-spacing: -0.015em; }
h2 { font-size: var(--text-3xl); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: var(--text-xl); font-weight: 500; line-height: 1.25; letter-spacing: -0.005em; }
h4 {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg3);
}
p { line-height: 1.7; margin-bottom: 1rem; color: var(--fg2); max-width: 62ch; }

/* Editorial period accent — orange period at end of titles
   Use: <h1>Bathrooms<span class="period">.</span></h1> */
.period { color: var(--copper); }

/* Italic editorial tagline */
.tagline-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
  line-height: 1.2;
  color: var(--fg2);
  max-width: 28ch;
}

/* Short editorial rule — the Heartwood signature */
hr {
  border: 0;
  height: 2px;
  background: var(--copper);
  width: 64px;
  margin: var(--space-lg) 0;
}
hr.full { width: 100%; }
hr.short { width: 48px; }
hr.long { width: 96px; }

/* ─── Layout ───────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--container-padding-x); }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 var(--container-padding-x); }
.container-narrow { max-width: var(--max-width-narrow); }
.section { padding: var(--section-padding-y) 0; }
.section-alt { background: var(--bg-darker); }
.section-tight { padding: var(--space-lg) 0; }
.section-white { background: var(--bg-darker); }
.text-center { text-align: center; }
.section-subtitle { color: var(--fg3); font-size: var(--text-lg); max-width: 600px; margin: 0 auto var(--space-md); }
.tagline { font-size: clamp(1.25rem, 1rem + 0.7vw, 1.625rem); font-weight: 600; color: var(--fg1); line-height: 1.4; }

.grid-2, .grid-3, .services-grid, .testimonial-grid, .blog-grid, .portfolio-grid {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .grid-2, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3, .services-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Header (sticky, frosted glass) ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(35,40,45,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: rgba(207,153,95,0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem var(--header-padding-x);
  transition: padding 0.3s;
}
.site-header.scrolled .header-inner { padding-top: 0.4rem; padding-bottom: 0.4rem; }
@media (max-width: 1023px) {
  .header-inner { padding: 0.75rem 1.25rem; }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  border-bottom: none;
}
.logo:hover { text-decoration: none; border-bottom: none; }
.logo-img {
  height: var(--logo-height);
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo-img { height: var(--logo-height-mobile); }
}

/* Desktop nav */
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  color: var(--fg2);
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: none;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: color var(--dur-base), border-color var(--dur-base);
  background: none;
  font-family: var(--font-label);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link:focus { color: var(--fg1); border-bottom-color: var(--copper); text-decoration: none; }

/* Desktop dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  min-width: 220px;
  background: var(--bg-darker);
  border: 1px solid rgba(235,219,178,0.1);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav-dropdown-parent:hover .nav-dropdown,
.nav-dropdown-parent:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  color: var(--fg2);
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 0.8125rem;
  border-radius: 6px;
  transition: background 150ms;
  border-bottom: none;
}
.nav-dropdown-link:hover {
  background: var(--bg-dark);
  color: var(--fg1);
  text-decoration: none;
  border-bottom: none;
}
.dropdown-arrow { transition: transform 0.2s; }
.nav-dropdown-parent:hover .dropdown-arrow { transform: rotate(180deg); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.header-phone {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--copper); text-decoration: none; }
@media (max-width: 1024px) {
  .header-phone { display: none; }
}
.btn-get-started {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--copper);
  color: var(--bg-dark);
  border: none;
  border-bottom: none;
  border-radius: var(--border-radius);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn-get-started:hover {
  background: var(--copper-hover);
  color: var(--bg-dark);
  text-decoration: none;
  border-bottom: none;
}
.btn-get-started:active { background: var(--copper-press); }
@media (max-width: 767px) {
  .btn-get-started { display: none; }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(207, 153, 95, 0.1);
  border: 1.5px solid rgba(207, 153, 95, 0.3);
  border-radius: var(--border-radius);
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover, .nav-toggle:active { background: rgba(207, 153, 95, 0.2); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.hamburger-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--copper);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-sm) 0;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-list { padding: 0 1.5rem; }
.nav-mobile-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  color: var(--fg2);
  font-size: var(--text-base);
  font-weight: 500;
  background: none;
  border: none;
  border-bottom: none;
  font-family: var(--font-label);
  cursor: pointer;
  text-decoration: none;
}
.nav-mobile-link:hover { color: var(--fg1); text-decoration: none; border-bottom: none; }
.nav-mobile-dropdown-toggle .dropdown-arrow { transition: transform 0.3s; }
.nav-mobile-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }
.nav-mobile-dropdown { padding: 0 0 0.5rem 1rem; }
.nav-mobile-dropdown[hidden] { display: none; }
.nav-mobile-dropdown-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg3);
  font-size: var(--text-sm);
  text-decoration: none;
  border-bottom: none;
}
.nav-mobile-dropdown-link:hover { color: var(--fg1); text-decoration: none; border-bottom: none; }
.nav-mobile-cta { padding: var(--space-sm) 0; border-bottom: none; }

/* ─── Hero (legacy + editorial v3) ─────────────────────────────── */
.hero {
  position: relative;
  min-height: var(--hero-min-height);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 2rem + 4vw, 6rem) 0 clamp(2rem, 1.5rem + 2vw, 4rem);
}
.hero-short { min-height: var(--hero-short-min-height); }
.hero-no-image { background: var(--charcoal); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  display: flex;
  align-items: center;
}
.hero-overlay .container-wide { position: relative; z-index: 1; }

.hero h1 {
  color: var(--fg1);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  max-width: var(--hero-h1-max-width);
  font-size: var(--hero-h1-size);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.text-center .hero h1,
.text-center .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-subtitle {
  color: var(--fg2);
  font-size: var(--hero-subtitle-size);
  font-style: italic;
  max-width: var(--hero-subtitle-max-width);
  margin-top: var(--space-sm);
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hero-eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 1rem;
  display: block;
}
.hero hr {
  margin: 1.75rem 0 0;
  width: 96px;
}
.text-center .hero hr { margin-left: auto; margin-right: auto; }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.text-center .hero-cta { justify-content: center; }
@media (min-width: 480px) { .hero-cta { flex-direction: row; } }

/* Page header (no image fallback) */
.page-header {
  background: var(--charcoal);
  padding: var(--space-xl) 0 var(--space-lg);
}
.page-header h1 { color: var(--fg1); }
.page-header-image { padding: var(--space-lg) 0; }
.page-header-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.page-header-subtitle {
  color: var(--fg3);
  font-size: var(--text-lg);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* Page content */
.page-content h2 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.page-content h3 { margin-top: var(--space-md); margin-bottom: var(--space-xs); }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.5rem; }

/* ─── Cards (dark on dark) ─────────────────────────────────────── */
.card {
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
a.card:hover {
  background: var(--bg-dark-tint);
  border-color: rgba(207,153,95,0.35);
  box-shadow: var(--shadow-inset);
  text-decoration: none;
  border-bottom-color: rgba(207,153,95,0.35);
}

/* Service cards (editorial v3) */
.service-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: none;
  padding: 1.75rem;
}
.service-card:hover {
  text-decoration: none;
  border-bottom: none;
}
.service-icon {
  color: var(--copper);
  margin-bottom: 0;
  display: flex;
}
.service-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg1);
}
.service-card p {
  color: var(--fg2);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.card-link {
  font-family: var(--font-label);
  color: var(--fg1);
  font-weight: 500;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--copper);
  align-self: flex-start;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.01em;
}

/* Testimonial cards */
.testimonial-rating { color: var(--copper); letter-spacing: 0.1em; font-size: var(--text-lg); }
.testimonial-text { font-style: italic; line-height: 1.7; margin: 1rem 0; color: var(--fg2); }
.testimonial-author strong { display: block; color: var(--fg1); font-family: var(--font-label); font-weight: 500; }
.testimonial-author span { color: var(--fg3); font-size: var(--text-sm); }
.testimonial-source { font-size: var(--text-sm); color: var(--fg3); margin-top: var(--space-xs); }

/* Blog cards */
.blog-card {
  padding: 0;
  overflow: hidden;
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
}
.blog-card:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--border-dark);
  background: var(--bg-dark-tint);
  box-shadow: var(--shadow-inset);
}
.blog-card img {
  width: 100%;
  height: var(--blog-card-img-height);
  object-fit: cover;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.blog-card-body {
  padding: var(--blog-card-body-padding);
}
.blog-card h3 {
  font-size: var(--blog-card-title-size);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--fg1);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.blog-card-meta {
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin: 0;
}
.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--gray-200);
  line-height: 1.6;
  margin-top: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  text-decoration: none;
  border: none;
  border-bottom: none;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; border-bottom: none; }
.btn-primary { background: var(--copper); color: var(--bg-dark); }
.btn-primary:hover { background: var(--copper-hover); }
.btn-primary:active { background: var(--copper-press); }
.btn-secondary { background: transparent; color: var(--fg1); border: 1px solid var(--copper); padding: calc(0.875rem - 1px) calc(1.5rem - 1px); }
.btn-secondary:hover { background: rgba(207,153,95,0.08); border-color: var(--copper-hover); color: var(--fg1); }
.btn-outline { background: transparent; border: 2px solid var(--copper); color: var(--copper); }
.btn-outline:hover { background: var(--copper); color: var(--bg-dark); }
.btn-outline-light { background: transparent; border: 2px solid rgba(235,219,178,0.3); color: var(--fg1); }
.btn-outline-light:hover { background: rgba(235,219,178,0.08); color: var(--fg1); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.8125rem; }

/* CTA section */
.section-cta { padding: var(--space-xl) 0; }
.cta-buttons { display: flex; gap: var(--space-sm); justify-content: center; margin-top: var(--space-md); flex-wrap: wrap; }

/* ─── Forms ────────────────────────────────────────────────────── */
.section-form { padding: var(--space-xl) 0; }
.section-form h2 { text-align: center; margin-bottom: var(--space-xs); }
.section-form .section-subtitle { text-align: center; margin: 0 auto var(--space-lg); }
.form-grid { display: grid; gap: var(--space-sm); margin-bottom: var(--space-md); }
@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}
.form-field-full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--font-label);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
input, select, textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(235,219,178,0.1);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--bg-darker);
  color: var(--fg1);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--copper);
  outline: none;
  box-shadow: 0 0 0 3px rgba(207,153,95,0.15);
}
input::placeholder, textarea::placeholder { color: var(--fg3); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a7aaad' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg-darker);
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 120px; }
.form-error-msg { color: var(--maroon); font-size: var(--text-sm); margin-top: 0.25rem; }
.form-error-msg[hidden] { display: none; }
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color: var(--maroon); }
.form-success { text-align: center; padding: 3rem; }
.form-success[hidden] { display: none; }
.form-error-state[hidden] { display: none; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(207,153,95,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  color: var(--copper);
}
.form-note { color: var(--gray-400); font-size: var(--text-sm); text-align: center; margin-top: var(--space-sm); }
.optional { color: var(--gray-400); font-weight: 400; }
.btn-loading[hidden] { display: none; }

/* ── Contact form polish ── */
.hwc-form {
  background: var(--bg-darker);
  border: 1px solid rgba(207,153,95,0.25);
  border-radius: var(--border-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .hwc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .hwc-form .form-field:nth-child(n+5),
  .hwc-form button[type="submit"] {
    grid-column: 1 / -1;
  }
}

.hwc-form .form-field { margin-bottom: 0; }

.hwc-form label {
  display: block;
  color: var(--fg1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.required { color: var(--copper); }
.optional { color: var(--fg3); font-weight: 400; font-size: 0.6875rem; }

.hwc-form input,
.hwc-form select,
.hwc-form textarea {
  background: var(--bg-dark);
  border: 1px solid rgba(207,153,95,0.3);
  color: var(--fg1);
  border-radius: var(--border-radius);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
}
.hwc-form input:focus,
.hwc-form select:focus,
.hwc-form textarea:focus {
  border-color: var(--copper);
  outline: none;
  box-shadow: 0 0 0 3px rgba(207,153,95,0.15);
}
.hwc-form input::placeholder,
.hwc-form textarea::placeholder {
  color: var(--fg3);
}
.hwc-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a7aaad' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.5rem;
}
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg2);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--copper);
  cursor: pointer;
}

.hwc-form button[type="submit"],
.hwc-form .btn-primary {
  margin-top: 0.75rem;
  padding: 1rem 2rem;
  background: var(--copper);
  color: #23282d;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.hwc-form button[type="submit"]:hover,
.hwc-form .btn-primary:hover {
  background: var(--copper-hover);
  color: #23282d;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--bg-darker); color: var(--fg2); }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: var(--space-xl) 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--fg1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-logo { text-decoration: none; border-bottom: none; }
.footer-logo:hover { text-decoration: none; border-bottom: none; }
.footer-tagline {
  color: var(--fg2);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: normal;
  margin: var(--space-xs) 0 var(--space-sm);
  max-width: 36ch;
}
.footer-contact { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg2);
  text-decoration: none;
  font-size: var(--text-sm);
  border-bottom: none;
}
.footer-contact-link:hover { color: var(--copper); text-decoration: none; border-bottom: none; }

.site-footer h4 {
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: var(--font-label);
  margin-bottom: 1rem;
}
.site-footer ul { line-height: 2; }
.site-footer ul a {
  color: var(--fg2);
  text-decoration: none;
  border-bottom: none;
  font-size: 0.8125rem;
  transition: color var(--dur-base);
}
.site-footer ul a:hover { color: var(--fg1); text-decoration: none; border-bottom: none; }

.footer-chamber-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}
.footer-badge-link { display: flex; align-items: center; justify-content: center; }
.footer-badge { height: 56px; width: auto; object-fit: contain; }

.footer-bottom {
  border-top: 1px solid rgba(235,219,178,0.06);
  padding: var(--space-md) 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-family: var(--font-label);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg3);
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-legal { display: flex; gap: var(--space-md); text-transform: none; letter-spacing: 0.04em; }
.footer-legal a { color: var(--fg3); text-decoration: none; border-bottom: none; }
.footer-legal a:hover { color: var(--copper); border-bottom: none; }

/* ─── Blog styles ──────────────────────────────────────────────── */
.blog-post { padding-bottom: 0; }
.blog-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.blog-header { margin: 2rem 0; }
.blog-meta { color: var(--gray-600); font-size: var(--text-sm); margin-top: 0.5rem; }
.blog-body h2 { margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--copper); margin-bottom: var(--space-sm); }
.blog-body h3 { margin-top: var(--space-md); margin-bottom: var(--space-xs); }
.blog-body p { margin-bottom: 1rem; }
.blog-body img { width: 100%; border-radius: var(--border-radius); margin: 1.5rem 0; }
.blog-body blockquote {
  border-left: 2px solid var(--copper);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--fg3);
  margin: 1.5rem 0;
}
.blog-body ul, .blog-body ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.blog-body ol { list-style: decimal; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-cta {
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}
.blog-related { background: var(--bg-darker); padding: var(--space-xl) 0; }

/* ─── Portfolio / Our Work ─────────────────────────────────────── */
.portfolio-grid { gap: 1.5rem; }
.project-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.project-images {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}
@media (max-width: 767px) {
  .project-images { grid-template-columns: repeat(2, 1fr); }
}
.project-images figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.project-images figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.project-images figure:hover::after { opacity: 1; }
.project-images img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.project-images figure:hover img { transform: scale(1.06); }
.project-images figcaption {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-align: center;
  margin-top: 0.25rem;
}

/* Gallery lightbox */
.hwc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hwc-lightbox.active { opacity: 1; }
.hwc-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}
.hwc-lightbox__close,
.hwc-lightbox__prev,
.hwc-lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color 0.15s;
  font-family: inherit;
  padding: 8px;
  line-height: 1;
}
.hwc-lightbox__close:hover,
.hwc-lightbox__prev:hover,
.hwc-lightbox__next:hover { color: #fff; }
.hwc-lightbox__close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
}
.hwc-lightbox__prev,
.hwc-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-weight: 300;
}
.hwc-lightbox__prev { left: 1rem; }
.hwc-lightbox__next { right: 1rem; }
.hwc-lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
@media print { .hwc-lightbox { display: none !important; } }

/* ─── Scroll Animations ────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Utilities ────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.hidden, [hidden] { display: none !important; }

/* ─── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-darker);
  border-top: 1px solid rgba(207,153,95,0.4);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  font-size: var(--trust-bar-font-size);
  color: var(--fg2);
  text-align: center;
  font-family: var(--font-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
}

/* ─── Eyebrow label ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--fg3);
  display: block;
}
.eyebrow-accent { color: var(--copper); }

/* Numbered eyebrow ("01 — Your selections") */
.eyebrow-num {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-label);
}
.eyebrow-num__num {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 600;
  font-feature-settings: "tnum";
}

/* ─── Editorial section header ─────────────────────────────────── */
.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  margin-bottom: 1.25rem;
}
.section-header h2 {
  margin-top: 0;
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 22ch;
}
.section-header hr {
  margin: 1.5rem 0 0;
}
.section-header p { margin-top: 1.5rem; }

/* ─── Process steps (numbered) ─────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-dark);
}
.process-step:first-child { border-top: none; }
.step-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--copper);
  font-weight: 500;
  line-height: 1;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--fg1);
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.process-step p { font-size: 0.9375rem; line-height: 1.7; max-width: 52ch; color: var(--fg2); }

/* ─── Two-column editorial layout ──────────────────────────────── */
.editorial-split {
  display: grid;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .editorial-split { grid-template-columns: 1fr 1.4fr; }
}
.editorial-split .sticky { position: sticky; top: 120px; }

/* ─── Three-beat content stack (service detail) ────────────────── */
.three-beat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-dark);
}
.three-beat:first-child { border-top: 0; }
@media (min-width: 800px) {
  .three-beat {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
  }
}
.three-beat__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.25rem + 0.8vw, 2rem);
  font-weight: 600;
  color: var(--fg1);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.125rem;
}
.three-beat__heading + hr {
  border: 0;
  height: 2px;
  width: 48px;
  background: var(--copper);
  margin: 0;
}
.three-beat__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg2);
  max-width: 60ch;
}
.three-beat__body p { margin-bottom: 1rem; }
.three-beat__body p:last-child { margin-bottom: 0; }

/* ─── Stat strip (3-column number row) ─────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(235,219,178,0.1);
  border-bottom: 1px solid rgba(235,219,178,0.1);
}
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip__item + .stat-strip__item {
    border-left: 0 !important;
    border-top: 1px solid rgba(235,219,178,0.1);
  }
}
.stat-strip__item {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-strip__item + .stat-strip__item {
  border-left: 1px solid rgba(235,219,178,0.1);
}
.stat-strip__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "lnum";
}
.stat-strip__label {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ─── Editorial pull-quote ─────────────────────────────────────── */
.ed-quote {
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
}
.ed-quote hr {
  margin: 0 0 2rem;
  width: 48px;
}
.ed-quote__body {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--fg1);
  margin: 0;
}
.ed-quote__attr {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ed-quote__name {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg2);
}
.ed-quote__sep { color: var(--fg3); }
.ed-quote__meta {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.625rem;
  color: var(--fg3);
  font-weight: 500;
}

/* ─── Editorial CTA box ────────────────────────────────────────── */
.ed-cta {
  background: var(--bg-darker);
  border: 1px solid rgba(235,219,178,0.08);
  border-radius: var(--border-radius-lg);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.ed-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 96px;
  background: var(--copper);
}
.ed-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .ed-cta__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
  }
}
.ed-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  font-weight: 700;
  color: var(--fg1);
  margin: 14px 0 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ed-cta__lede {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--fg2);
  margin: 1.125rem 0 0;
  max-width: 48ch;
}
.ed-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── Photo placeholder (brand-compliant, no stock) ────────────── */
.photo-ph {
  background: #1a1c1d;
  background-image: repeating-linear-gradient(135deg, rgba(235,219,178,0.018) 0 12px, transparent 12px 24px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  border: 1px solid rgba(235,219,178,0.06);
  position: relative;
  overflow: hidden;
}
.photo-ph[data-aspect="16/9"]  { aspect-ratio: 16 / 9; }
.photo-ph[data-aspect="21/9"]  { aspect-ratio: 21 / 9; }
.photo-ph[data-aspect="4/3"]   { aspect-ratio: 4 / 3; }
.photo-ph[data-aspect="16/10"] { aspect-ratio: 16 / 10; }
.photo-ph[data-aspect="4/5"]   { aspect-ratio: 4 / 5; }
.photo-ph__label {
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  color: #5a5d61;
  font-size: 0.5625rem;
  font-weight: 500;
  text-transform: uppercase;
}
.photo-ph__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Project card (recent work grids) ─────────────────────────── */
.project-tile {
  background: var(--bg-darker);
  border: 1px solid rgba(235,219,178,0.06);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out);
  text-decoration: none;
  border-bottom: none;
  color: inherit;
}
.project-tile:hover {
  border-color: rgba(207,153,95,0.4);
  text-decoration: none;
  border-bottom-color: rgba(207,153,95,0.4);
}
.project-tile__body { padding: 1.375rem; }
.project-tile__loc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.project-tile__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--fg1);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ─── Homepage: Differentiators (legacy support) ───────────────── */
.differentiator-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
@media (min-width: 768px) {
  .differentiator-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .differentiator-grid { grid-template-columns: repeat(4, 1fr); }
}
.differentiator-item h3 {
  color: var(--copper);
  margin-bottom: var(--space-xs);
}
.differentiator-item p { color: var(--fg2); }

/* ─── Homepage: Service Previews ───────────────────────────────── */
.service-preview {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .service-preview { grid-template-columns: 2fr 3fr; }
  .service-preview.reverse :first-child { order: 2; }
}
@media (min-width: 1024px) {
  .service-preview { grid-template-columns: 1fr 1fr; }
}
.service-preview img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  height: clamp(250px, 20vw + 100px, 400px);
  object-fit: cover;
}
.service-preview h2 { margin-bottom: var(--space-sm); }
.service-preview .btn { margin-top: var(--space-sm); }

/* ─── Homepage: Areas Bar ──────────────────────────────────────── */
.areas-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}
.areas-links a {
  font-weight: 600;
  font-size: var(--text-lg);
}

/* ─── Homepage: Portfolio Strip ────────────────────────────────── */
.portfolio-strip {
  padding: var(--space-md) 0;
}
.portfolio-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 768px) {
  .portfolio-strip-grid { grid-template-columns: repeat(4, 1fr); }
}
.portfolio-strip-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

/* ─── Section Divider (vintage tool icons) ─────────────────────── */
.section-divider {
  text-align: center;
  padding: var(--space-md) 0;
}
.section-divider img {
  height: 80px;
  width: auto;
  opacity: 0.35;
  filter: sepia(0.3);
  display: inline-block;
}
