@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:              #0d1b2a;
  --bg-alt:          #101e2d;
  --surface:         #172840;
  --surface-raised:  #1d3352;
  --copper:          #c4813a;
  --copper-light:    #dba355;
  --copper-dark:     #9a6428;
  --copper-glow:     rgba(196, 129, 58, 0.12);
  --cream:           #f0e4d0;
  --cream-muted:     #907f6a;
  --white:           #faf8f4;
  --error:           #e05252;
  --success:         #4caf7d;
  --border:          rgba(196, 129, 58, 0.2);
  --border-subtle:   rgba(255, 255, 255, 0.06);

  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Jost', 'Segoe UI', sans-serif;

  --nav-h:   72px;
  --max-w:   1160px;
  --r:       4px;
  --r-lg:    10px;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-spr:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Utility ────────────────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 5px 14px 5px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--copper);
  color: #0d1b2a;
}
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 129, 58, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 228, 208, 0.25);
}
.btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}

/* ─── Section spacing ────────────────────────────────────────────────────── */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header .tag   { margin-bottom: 16px; }
.section-header h2     { font-size: clamp(30px, 4vw, 50px); font-weight: 600; margin-bottom: 14px; }
.section-header p      { font-size: 15.5px; color: var(--cream-muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ─── Fade-up scroll animation ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark { flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-top {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo-bottom {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(240, 228, 208, 0.65);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--copper-light); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--copper);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 0.2s;
}
.nav-phone:hover { background: var(--copper-glow); border-color: var(--copper-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* mobile nav */
@media (max-width: 800px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }

  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    padding-top: calc(var(--nav-h) + 32px);
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: -1;
  }
  .nav.mobile-open .nav-links a { font-size: 18px; padding: 16px 40px; }
  .nav.mobile-open .nav-phone {
    display: flex;
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .nav.mobile-open .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.mobile-open .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
/* Blueprint grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 129, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 129, 58, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 20%, transparent 80%);
}
/* Bottom copper line */
.hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero-badge { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 600;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-light);
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17.5px);
  font-weight: 300;
  color: rgba(240, 228, 208, 0.6);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 228, 208, 0.4);
}
.hero-cred-dot {
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}
/* Decorative geometric element */
.hero-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero-deco-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 129, 58, 0.1);
  border-radius: 4px;
}
.hero-deco-ring:nth-child(2) {
  inset: 22px;
  border-color: rgba(196, 129, 58, 0.07);
}
.hero-deco-ring.circle {
  inset: 30%;
  border-radius: 50%;
  border: 2px solid rgba(196, 129, 58, 0.18);
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.04); }
}
.hero-deco-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-deco-cross::before,
.hero-deco-cross::after {
  content: '';
  position: absolute;
  background: rgba(196, 129, 58, 0.25);
}
.hero-deco-cross::before { width: 1px; height: 40px; left: 0; top: -20px; }
.hero-deco-cross::after  { width: 40px; height: 1px; top: 0; left: -20px; }
@media (max-width: 900px) { .hero-deco { display: none; } }

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35), 0 0 0 1px var(--border);
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--copper);
  margin-bottom: 22px;
}
.service-card h3     { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.service-card p      { font-size: 14.5px; color: var(--cream-muted); line-height: 1.75; margin-bottom: 24px; }
.service-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* ─── WHAT WE INSPECT ────────────────────────────────────────────────────── */
.inspect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .inspect-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .inspect-grid { grid-template-columns: repeat(2, 1fr); } }

.inspect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 22px 12px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: border-color 0.25s, background 0.25s;
}
.inspect-item:hover { border-color: var(--border); background: var(--surface); }
.inspect-item svg   { width: 30px; height: 30px; color: var(--copper); }
.inspect-item span  {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 228, 208, 0.55);
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-text .tag    { margin-bottom: 20px; }
.about-text h2      { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.about-text > p     { font-size: 15px; color: var(--cream-muted); line-height: 1.8; margin-bottom: 14px; }

.about-creds        { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.about-cred         { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(240,228,208,0.75); }
.about-cred-icon {
  width: 34px; height: 34px;
  background: var(--copper-glow);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196,129,58,0.08) 0%, transparent 55%),
    radial-gradient(circle at 78% 22%, rgba(196,129,58,0.06) 0%, transparent 50%);
}
/* Blueprint dots inside visual */
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,129,58,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 36px;
}
.inspector-avatar {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--surface-raised);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
}
.about-visual-inner h3       { font-size: 30px; font-weight: 700; margin-bottom: 4px; }
.about-visual-inner .title   { font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; }

.license-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.license-badge .lbl  { font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); }
.license-badge .val  { font-size: 13px; font-weight: 600; color: var(--cream); letter-spacing: 0.04em; }

.cert-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.cert-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--copper-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--copper-light);
}

/* ─── STATS BAND ─────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--surface);
  border-block: 1px solid var(--border-subtle);
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item   { display: flex; flex-direction: column; gap: 6px; }
.stat-number { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; color: var(--copper-light); line-height: 1; }
.stat-label  { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-muted); }

/* ─── PROCESS STEPS ──────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--border) 30%, transparent 50%, var(--border) 70%, var(--border));
  background: var(--border-subtle);
}
@media (max-width: 768px) {
  .process-steps    { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
}
.process-step  { text-align: center; padding: 8px; }
.step-number {
  width: 54px; height: 54px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--copper);
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 19px; margin-bottom: 8px; }
.process-step p  { font-size: 13.5px; color: var(--cream-muted); line-height: 1.65; }

/* ─── SERVICE AREA ───────────────────────────────────────────────────────── */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.area-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  color: rgba(240, 228, 208, 0.65);
  transition: all 0.2s;
}
.area-chip:hover       { border-color: var(--border); color: var(--cream); }
.area-chip.primary     { border-color: var(--border); color: var(--copper-light); }

/* ─── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-block: 1px solid var(--border-subtle);
  padding: clamp(56px, 7vw, 90px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(196,129,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2      { font-size: clamp(28px, 4vw, 46px); margin-bottom: 12px; position: relative; }
.cta-band > .container > p { font-size: 15px; color: var(--cream-muted); margin-bottom: 28px; position: relative; }
.cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--copper-light);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  position: relative;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--cream); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo-text        { line-height: 1.1; }
.footer-logo-text .top   { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-logo-text .btm   { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); }
.footer-logo-wrap        { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark        { flex-shrink: 0; opacity: 0.8; }
.footer-brand p          { font-size: 13.5px; color: var(--cream-muted); line-height: 1.7; margin: 12px 0 20px; max-width: 250px; }
.footer-certs            { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge              { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,228,208,0.3); padding: 4px 10px; border: 1px solid var(--border-subtle); border-radius: 3px; }

.footer-col h4           { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 16px; }
.footer-col ul           { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a      { font-size: 13.5px; color: rgba(240,228,208,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-line     { font-size: 13px; color: rgba(240,228,208,0.5); margin-bottom: 9px; line-height: 1.5; }
.footer-contact-line a   { color: rgba(240,228,208,0.5); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--copper-light); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(240,228,208,0.25); }
.footer-bottom-certs { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─── PAGE HEADER (inner pages) ──────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 88px));
  padding-bottom: clamp(36px, 5vw, 56px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,129,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,129,58,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 20%, transparent 85%);
}
.page-header > .container { position: relative; z-index: 1; }
.page-header .tag          { margin-bottom: 16px; }
.page-header h1            { font-size: clamp(36px, 5.5vw, 68px); margin-bottom: 14px; }
.page-header p             { font-size: 16px; color: var(--cream-muted); max-width: 500px; line-height: 1.75; }

/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}
.pricing-table thead th {
  text-align: left;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 2px solid var(--copper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.pricing-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: rgba(240, 228, 208, 0.8);
}
.pricing-table tbody td.price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--copper-light);
}
.pricing-table tbody tr:hover td { background: rgba(23, 40, 64, 0.5); }
.pricing-table tbody tr:last-child td { border-bottom: none; }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.addon-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: border-color 0.25s, transform 0.25s;
}
.addon-card:hover       { border-color: var(--border); transform: translateY(-3px); }
.addon-card .addon-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 8px;
}
.addon-card h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.addon-card p  { font-size: 13px; color: var(--cream-muted); line-height: 1.65; }

.pricing-note {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--copper);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-top: 24px;
  align-items: flex-start;
}
.pricing-note svg { width: 18px; height: 18px; color: var(--copper); flex-shrink: 0; margin-top: 1px; }

.commercial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.commercial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(196,129,58,0.06) 0%, transparent 70%);
}
.commercial-card > * { position: relative; z-index: 1; }
.commercial-card h3  { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 14px; }
.commercial-card p   { font-size: 15px; color: var(--cream-muted); max-width: 500px; margin: 0 auto 28px; line-height: 1.75; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open      { border-color: var(--border); }
.faq-question {
  width: 100%;
  background: var(--surface);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover    { background: var(--surface-raised); }
.faq-question h3       { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--cream); line-height: 1.4; }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 700px; }
.faq-answer-inner           { padding: 0 24px 24px; background: var(--bg); }
.faq-answer-inner p         { font-size: 14.5px; color: var(--cream-muted); line-height: 1.8; }
.faq-answer-inner ul        { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.faq-answer-inner ul li::before { content: '—'; color: var(--copper); margin-right: 10px; }
.faq-answer-inner ul li     { font-size: 14px; color: var(--cream-muted); line-height: 1.7; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.contact-info .tag   { margin-bottom: 20px; }
.contact-info h2     { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.contact-info > p    { font-size: 14.5px; color: var(--cream-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-details     { display: flex; flex-direction: column; gap: 16px; }
.contact-detail      { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--copper-glow);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
}
.contact-detail-text span  { font-size: 10px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream-muted); display: block; margin-bottom: 2px; }
.contact-detail-text a,
.contact-detail-text p     { font-size: 14px; color: var(--cream); margin: 0; line-height: 1.55; }
.contact-detail-text a:hover { color: var(--copper-light); }

/* Form card */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-card h3 { font-size: 24px; margin-bottom: 24px; }
.form-grid            { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .span-2    { grid-column: span 2; }
@media (max-width: 540px) { .form-grid .span-2 { grid-column: span 1; } }

.form-field   { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.form-field label.req::after { content: ' *'; color: var(--copper); }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(196,129,58,0.1); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(144,127,106,0.45); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input.err,
.form-field textarea.err { border-color: var(--error); }
.field-err  { font-size: 11.5px; color: var(--error); min-height: 16px; }

.form-footer  { margin-top: 8px; display: flex; flex-direction: column; gap: 14px; }
.form-result  {
  padding: 13px 17px;
  border-radius: var(--r);
  font-size: 13.5px;
  line-height: 1.55;
  display: none;
}
.form-result.success { background: rgba(76,175,125,0.1); border: 1px solid rgba(76,175,125,0.2); color: #6fcf97; display: block; }
.form-result.error   { background: rgba(224,82,82,0.1);  border: 1px solid rgba(224,82,82,0.2);  color: #ff8787; display: block; }

/* ─── Divider line ───────────────────────────────────────────────────────── */
.copper-line {
  width: 48px; height: 2px;
  background: var(--copper);
  margin-bottom: 20px;
}

/* ─── Responsive helpers ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .btn     { padding: 12px 22px; font-size: 12px; }
}
