/* ============================================================
   CATAWBA HOME IMPROVEMENT LLC
   style.css — Shared stylesheet for all pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --slate:        #1c2b2b;
  --slate-mid:    #243535;
  --slate-light:  #344a4a;
  --brass:        #b8892a;
  --brass-light:  #d4a84b;
  --brass-pale:   #f0d898;
  --linen:        #f5f0e8;
  --linen-dark:   #ede5d0;
  --linen-mid:    #e0d5be;
  --charcoal:     #2a2a28;
  --text:         #2a2a28;
  --text-mid:     #4a4843;
  --text-light:   #6e6a62;
  --border:       #d0c8b0;
  --white:        #fdfaf4;
  --red:          #8b2c2c;
  --green:        #2c5c3a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius:       4px;
  --radius-md:    8px;
  --shadow-sm:    0 2px 8px rgba(28,43,43,0.08);
  --shadow-md:    0 6px 24px rgba(28,43,43,0.12);
  --shadow-lg:    0 16px 48px rgba(28,43,43,0.18);

  --max-width:    1120px;
  --nav-height:   68px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--slate);
}

h1 { font-size: clamp(36px, 6vw, 68px); font-weight: 900; }
h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

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

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.section-head {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-head h2 { margin-bottom: 16px; }

.section-head p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--slate);
  border-color: var(--brass);
}

.btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(253,250,244,0.4);
}

.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn-outline-dark {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline-dark:hover {
  background: var(--slate);
  color: var(--white);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(28,43,43,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,137,42,0.2);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--brass);
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(253,250,244,0.7);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--slate);
  border: 1px solid rgba(184,137,42,0.2);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(253,250,244,0.75);
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-item:hover {
  color: var(--brass);
  background: rgba(255,255,255,0.04);
}

.nav-cta {
  background: var(--brass);
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(52,74,74,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 80%, rgba(184,137,42,0.08) 0%, transparent 50%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-in 0.6s ease forwards 0.1s;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brass);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-in 0.6s ease forwards 0.25s;
}

.hero h1 em {
  font-style: normal;
  color: var(--brass);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  color: rgba(253,250,244,0.68);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: hero-in 0.6s ease forwards 0.4s;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-in 0.6s ease forwards 0.55s;
}

.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(184,137,42,0.15);
  padding: 16px 32px;
  opacity: 0;
  animation: hero-in 0.6s ease forwards 0.7s;
}

.hero-trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(253,250,244,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-item svg, .trust-item .ti {
  color: var(--brass);
  font-size: 15px;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--slate);
  padding: calc(var(--nav-height) + 64px) 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--brass), transparent);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(253,250,244,0.65);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumb a { color: rgba(253,250,244,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span { color: rgba(253,250,244,0.3); }

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--linen-mid);
  border: 2px solid var(--linen-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  display: block;
  transition: background 0.2s;
}

.service-card:hover { background: var(--linen); }

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--slate);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: background 0.2s;
}

.service-card:hover .service-card-icon { background: var(--brass); }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.service-card:hover h3 { color: var(--brass); }

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brass), var(--slate-light));
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  align-items: flex-start;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--slate);
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--brass);
  position: relative;
  z-index: 2;
}

.step-body { padding-top: 12px; }

.step-body h4 {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

/* ── Testimonial Placeholders ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brass);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--slate);
}

.testimonial-city {
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-mono);
}

.stars {
  color: var(--brass);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* ── Gallery Placeholder ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--linen-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px dashed var(--border);
}

.gallery-placeholder .icon {
  font-size: 32px;
  opacity: 0.4;
}

/* ── Image Placeholder ────────────────────────────────────── */
.img-placeholder {
  background: var(--linen-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  padding: 40px 20px;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--slate);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(253,250,244,0.6); max-width: 480px; margin: 0 auto 36px; font-size: 17px; }

/* ── Service Area Map ─────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.city-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--linen);
  border-radius: var(--radius);
  border-left: 3px solid var(--brass);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: background 0.2s;
}

.city-item:hover { background: var(--linen-dark); }

.city-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

/* ── Stats Row ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--linen-mid);
  border: 2px solid var(--linen-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 64px;
}

.stat-box {
  background: var(--slate);
  padding: 40px 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: rgba(253,250,244,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

/* ── About Preview ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body h2 { margin-bottom: 20px; }
.about-body p { color: var(--text-mid); font-size: 16px; line-height: 1.8; }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-check {
  width: 24px; height: 24px;
  background: var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.about-point p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Service Page ─────────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-detail-body h2 { margin-bottom: 20px; }
.service-detail-body p { color: var(--text-mid); font-size: 16px; margin-bottom: 20px; }

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  padding: 12px 16px;
  background: var(--linen);
  border-radius: var(--radius);
}

.includes-item::before {
  content: '✓';
  color: var(--brass);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.sidebar-card {
  background: var(--slate);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.sidebar-card h4 {
  color: var(--brass);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sidebar-card p {
  font-size: 14px;
  color: rgba(253,250,244,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sidebar-card .btn { width: 100%; justify-content: center; }

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(253,250,244,0.7);
}

.sidebar-contact-item:last-child { border-bottom: none; }

.sidebar-contact-item .icon { color: var(--brass); font-size: 16px; flex-shrink: 0; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); font-size: 16px; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--slate);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--brass);
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.contact-cta-box {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.contact-cta-box h3 { margin-bottom: 16px; }

.contact-cta-box p {
  color: var(--text-mid);
  font-size: 16px;
  margin-bottom: 28px;
}

.contact-cta-box .btn { margin: 0 auto; }

.license-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--slate);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(253,250,244,0.45);
  letter-spacing: 0.5px;
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--slate);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { }

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--brass);
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(253,250,244,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-lic {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(253,250,244,0.3);
  letter-spacing: 0.5px;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(253,250,244,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(253,250,244,0.3);
  font-family: var(--font-mono);
  margin: 0;
}

/* ── Utilities ────────────────────────────────────────────── */
.bg-linen   { background: var(--linen); }
.bg-slate   { background: var(--slate); }
.text-brass { color: var(--brass); }
.text-white { color: var(--white); }
.mt-0       { margin-top: 0; }
.divider    { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--slate);
    padding: 20px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(184,137,42,0.2);
    z-index: 190;
  }

  .nav-menu.open .nav-cta-mobile {
    display: block;
    margin-top: 12px;
    text-align: center;
    background: var(--brass);
    color: var(--slate);
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
  }

  .nav-dropdown-menu { position: static; display: block; background: transparent; border: none; box-shadow: none; padding: 4px 0 4px 16px; }
  .nav-dropdown-item { padding: 8px 10px; }

  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 60px 20px; }
  .hero-trust-inner { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .page-hero { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr; }
}
