/* =========================================================
   DocDoor | Locksmith Site
   Design system: deep navy + brass + warm cream
   ========================================================= */

:root {
  --navy:        #0B1A2E;
  --navy-2:      #0E2440;
  --navy-3:      #142E52;
  --brass:       #C9A368;
  --brass-2:     #B8924C;
  --brass-soft:  #E0C896;
  --cream:       #F7F2E8;
  --cream-2:     #FBF7EE;
  --paper:       #FFFFFF;
  --ink:         #0E1623;
  --ink-2:       #344155;
  --muted:       #6B7585;
  --line:        rgba(11, 26, 46, 0.10);
  --line-light:  rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 1px 2px rgba(11, 26, 46, 0.06), 0 1px 3px rgba(11, 26, 46, 0.04);
  --shadow-md: 0 8px 20px rgba(11, 26, 46, 0.08), 0 2px 6px rgba(11, 26, 46, 0.04);
  --shadow-lg: 0 24px 60px rgba(11, 26, 46, 0.14), 0 8px 20px rgba(11, 26, 46, 0.08);
  --shadow-glow: 0 10px 40px rgba(201, 163, 104, 0.25);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --container: 1180px;
  --header-h: 76px;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--navy); color: var(--paper);
  padding: 10px 16px; border-radius: 6px; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(11, 26, 46, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(201, 163, 104, 0.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 26, 46, 0.96);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--paper);
}
.brand-mark { flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.brand-tag {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.primary-nav {
  display: flex; gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.primary-nav a {
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--paper); }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(201, 163, 104, 0.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block; position: absolute;
  left: 11px; right: 11px;
  height: 2px; background: var(--brass);
  transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 36px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brass);
  color: var(--navy);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--brass-soft);
  box-shadow: 0 14px 50px rgba(201, 163, 104, 0.35);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-2) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-glow);
}
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--paper); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--paper);
  border-color: rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-link-light {
  color: var(--brass);
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
}
.btn-link-light:hover { color: var(--brass-soft); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 80% 10%, rgba(201,163,104,0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(20,46,82,0.6), transparent 60%),
    linear-gradient(180deg, #0A1828 0%, #0B1A2E 60%, #091525 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,163,104,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,163,104,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 140px);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--brass); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,163,104,0.15);
}
.eyebrow-light { color: var(--brass-soft); }

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
}
.hero-title span { display: block; }
.hero-title .accent {
  color: var(--brass);
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 36px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }

.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(201,163,104,0.18);
}
.hero-trust li {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-trust strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--brass);
}
.hero-trust span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* Hero illustration */
.hero-art {
  position: relative;
}
.hero-art svg {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid rgba(201,163,104,0.5);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--brass);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   SECTIONS | shared
   ========================================================= */
.section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.section-light  {
  background:
    radial-gradient(800px 500px at 8% -10%, rgba(201, 163, 104, 0.10), transparent 55%),
    radial-gradient(900px 600px at 100% 110%, rgba(201, 163, 104, 0.07), transparent 55%),
    linear-gradient(180deg, #FBF8F1 0%, #F4EDDD 100%);
  color: var(--ink);
}
.section-light::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11, 26, 46, 0.045) 1.1px, transparent 1.1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.section-light > .container { position: relative; z-index: 1; }
.section-cream  {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(201, 163, 104, 0.12), transparent 55%),
    radial-gradient(700px 500px at -5% 100%, rgba(11, 26, 46, 0.05), transparent 55%),
    linear-gradient(180deg, #F4EDDD 0%, #FBF8F1 100%);
  color: var(--ink);
}
.section-cream::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11, 26, 46, 0.04) 1.1px, transparent 1.1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.section-cream > .container { position: relative; z-index: 1; }
.section-dark   { background: var(--navy); color: var(--paper); }
.section-navy   { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--paper); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}
.section-dark .section-sub,
.section-navy .section-sub { color: rgba(255,255,255,0.72); }

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 32px;
}
.section-light .lead, .section-cream .lead { color: var(--ink-2); }

/* =========================================================
   SERVICES
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF3 100%);
  border: 1px solid rgba(11, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(11, 26, 46, 0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 50px rgba(11, 26, 46, 0.10),
    0 6px 16px rgba(201, 163, 104, 0.10);
  border-color: rgba(201, 163, 104, 0.45);
}
.service-card:hover::before { opacity: 1; transform: translateY(0); }
.service-card p { color: var(--ink-2); font-size: 15.5px; margin: 0; }
.service-card a { color: var(--brass-2); font-weight: 600; }
.service-card a:hover { text-decoration: underline; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FBF6E9 0%, #F2E7CC 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 22px;
  border: 1px solid rgba(201, 163, 104, 0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.service-card.featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(11,26,46,0.18);
}
.service-card.featured h3 { color: var(--paper); }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-card.featured a { color: var(--brass); }
.service-card.featured .service-icon {
  background: rgba(201, 163, 104, 0.12);
  color: var(--brass);
  border-color: rgba(201, 163, 104, 0.35);
}
.service-tag {
  position: absolute; top: 22px; right: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--brass);
  padding: 6px 10px;
  border-radius: 999px;
}

/* =========================================================
   SCREEN DOORS | feature section
   ========================================================= */
.section-dark { background: linear-gradient(180deg, #0B1A2E 0%, #0E2440 50%, #0B1A2E 100%); }
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,163,104,0.08), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(201,163,104,0.06), transparent 40%);
  pointer-events: none;
}

.screen-door-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.screen-door-art {
  position: relative;
  display: flex; justify-content: center;
}
.screen-door-art::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,163,104,0.15) 0%, transparent 60%);
  z-index: -1;
}
.screen-door-art svg {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}

.screen-door-copy h2 { color: var(--paper); }
.check-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  line-height: 1.5;
}
.check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201, 163, 104, 0.15);
  border: 1px solid rgba(201, 163, 104, 0.45);
  position: relative;
  margin-top: 1px;
}
.check::after {
  content: '';
  position: absolute;
  left: 6px; top: 4px;
  width: 6px; height: 11px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(45deg);
}

.screen-door-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

/* =========================================================
   WHO WE SERVE
   ========================================================= */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.serve-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF3 100%);
  border: 1px solid rgba(11, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(11, 26, 46, 0.04);
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 163, 104, 0.5);
  box-shadow:
    0 22px 50px rgba(11, 26, 46, 0.10),
    0 6px 16px rgba(201, 163, 104, 0.10);
}
.serve-card:hover::before { opacity: 1; transform: translateY(0); }
.serve-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.serve-icon::after {
  content: ''; position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brass), transparent);
  z-index: -1;
  opacity: 0.4;
}
.serve-card h3 { margin-bottom: 8px; }
.serve-card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.5; }

/* =========================================================
   ABOUT
   ========================================================= */
.section-cream { padding-top: 40px; }

.section-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--brass);
  margin-bottom: 80px;
}
.deco-line {
  flex: 0 0 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brass) 50%, transparent 100%);
  opacity: 0.85;
}
.deco-icon {
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(201, 163, 104, 0.35));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.about-stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat-card:nth-child(1) {
  grid-row: span 2;
  background: var(--navy);
  color: var(--paper);
  border-color: transparent;
  display: flex; flex-direction: column; justify-content: center;
  padding: 50px 22px;
}
.about-stat-card.alt {
  background: var(--brass);
  border-color: transparent;
  color: var(--navy);
}
.about-stat-card.alt svg { stroke: var(--navy); margin: 0 auto 14px; }
.big-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.02em;
}
.big-num span { font-size: 50px; vertical-align: top; margin-left: 4px; }
.big-label {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
}
.about-stat-card:nth-child(1) .big-label { color: rgba(255,255,255,0.78); }

.about-copy p {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 18px;
}
.about-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  margin-top: 24px !important;
}

/* =========================================================
   QUOTE FORM
   ========================================================= */
.section-navy::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(201,163,104,0.10), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(201,163,104,0.08), transparent 40%);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

.quote-copy h2 { color: var(--paper); }
.quote-contact { margin-top: 36px; }
.quote-phone {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  background: rgba(201, 163, 104, 0.08);
  border: 1px solid rgba(201, 163, 104, 0.25);
  border-radius: var(--radius);
  color: var(--brass);
  transition: background .2s ease, border-color .2s ease;
}
.quote-phone:hover { background: rgba(201, 163, 104, 0.14); border-color: rgba(201, 163, 104, 0.45); }
.quote-phone span { display: flex; flex-direction: column; line-height: 1.2; }
.quote-phone small {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.quote-phone strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  font-weight: 600;
}

.quote-form {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: block; margin-bottom: 18px; }
.form-row > .form-field { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.form-label em { color: var(--brass-2); font-style: normal; margin-left: 2px; }
.form-label small { color: var(--muted); font-weight: 500; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.quote-form select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230B1A2E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--paper);
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(201, 163, 104, 0.15);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #98A0AE; }

.btn-label, .btn-loading { transition: opacity .2s ease; }
.btn-loading { display: none; }
.quote-form.is-loading .btn-label { opacity: 0.4; }
.quote-form.is-loading .btn-loading { display: inline; }
.quote-form.is-loading button { pointer-events: none; }

.form-status {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 500;
  min-height: 22px;
}
.form-status.success { color: #2E7D5B; }
.form-status.error   { color: #C0392B; }

.form-fine {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #06111E;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-blurb {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
  color: rgba(255,255,255,0.6);
}
.footer-service-area {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 360px;
  color: rgba(255,255,255,0.5);
}
.footer-service-area strong {
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 10px; font-size: 14.5px; }
.footer-cols a { color: rgba(255,255,255,0.7); transition: color .2s ease; }
.footer-cols a:hover { color: var(--brass); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   MOBILE STICKY CALL BAR
   ========================================================= */
.mobile-call-bar {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--brass);
  color: var(--navy);
  font-weight: 700;
  padding: 14px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-art svg { max-width: 320px; margin: 0 auto; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-door-grid { grid-template-columns: 1fr; gap: 40px; }
  .screen-door-art { max-width: 280px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-art { max-width: 440px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .section-cta { padding: 60px 0; }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn-sm { padding: 8px 14px; font-size: 13px; }
  .header-cta .btn-sm svg { display: none; }
  .primary-nav { display: none; }
  .nav-toggle { display: block; }

  .primary-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,163,104,0.12);
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
  }
  .primary-nav.open a {
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .primary-nav.open a::after { display: none; }

  .hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 60px; min-height: 0; }
  .hero-inner { min-height: 0; }
  .hero-art { max-width: 240px; }
  .hero-trust { padding-top: 24px; }
  .scroll-cue { display: none; }

  .service-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; gap: 14px; }
  .check-list { grid-template-columns: 1fr; }

  .about-art { grid-template-columns: 1fr 1fr; }
  .about-stat-card:nth-child(1) { grid-row: auto; grid-column: span 2; padding: 30px 22px; }
  .big-num { font-size: 60px; }

  .section-decorator { gap: 14px; margin-bottom: 50px; }
  .deco-line { flex: 0 0 60px; }

  .quote-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row > .form-field { margin-bottom: 18px; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .mobile-call-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}
.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline: none;
}
