/* ============================================
   TORONTO PRO PLUMBING — Premium Stylesheet
   Refined Dark Theme · Mobile-First
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg:          #0c0f14;
  --bg-mid:      #111620;
  --bg-card:     #161c28;
  --bg-card2:    #1c2333;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(200,169,110,0.25);

  --gold:        #c8a96e;
  --gold-light:  #e0c896;
  --gold-dim:    rgba(200,169,110,0.12);

  --white:       #ffffff;
  --text:        #e8eaf0;
  --text-muted:  #8892a4;
  --text-dim:    #5a6478;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --radius:      10px;
  --radius-lg:   16px;
  --max:         1080px;
  --nav-h:       68px;
}

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

/* ---- Sticky Bottom CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  gap: 1px;
  background: #000;
  box-shadow: 0 -2px 30px rgba(0,0,0,0.7);
}
.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 15px 10px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.sticky-cta a:active { opacity: 0.85; }
.sticky-cta .cta-call  { background: var(--gold); color: #0c0f14; flex: 1.5; }
.sticky-cta .cta-quote { background: var(--bg-card2); color: var(--text); }
.sticky-cta .cta-text  { background: var(--bg-card2); color: var(--text); }
.sticky-cta svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(12,15,20,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; color: var(--gold); }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: var(--border); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta-link {
  margin-left: 6px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: 8px;
  font-weight: 600;
}
.nav-links .nav-cta-link:hover { opacity: 0.9; }

.nav-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--border);
  color: var(--text);
}
.nav-menu-btn svg { width: 20px; height: 20px; }

/* Nav Drawer */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 940;
  backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--bg-mid);
  border-left: 1px solid var(--border);
  z-index: 950;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { right: 0; }
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}
.nav-drawer-logo span { color: var(--gold); }
.nav-close-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.nav-close-btn svg { width: 18px; height: 18px; }
.nav-drawer a.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-drawer a.drawer-link:hover,
.nav-drawer a.drawer-link.active { color: var(--white); background: var(--border); }
.nav-drawer a.drawer-link.active { color: var(--gold); }
.nav-drawer a.drawer-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-drawer-cta {
  margin-top: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px !important;
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
}

@media (min-width: 900px) {
  .nav { padding: 0 40px; }
  .nav-links { display: flex; }
  .nav-menu-btn { display: none; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 20px) 24px 110px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(12,15,20,0.5) 0%,
      rgba(12,15,20,0.65) 40%,
      rgba(12,15,20,0.92) 72%,
      var(--bg) 100%),
    url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1400&q=85')
      center 40% / cover no-repeat;
}
@media (max-width: 600px) {
  .hero-bg { background-position: 65% 40%; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.35; transform:scale(0.65); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 20px;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(200,169,110,0.2); }
  50%      { box-shadow: 0 4px 40px rgba(200,169,110,0.45); }
}
.hero-phone svg { width: 22px; height: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}
.trust-pill svg { width: 12px; height: 12px; color: var(--gold); }

/* ---- Stats Strip ---- */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 5px;
}

/* ---- Emergency Banner ---- */
.emergency-banner {
  background: rgba(200,169,110,0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 5;
  top: -18px;
}
.em-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.em-icon svg { width: 22px; height: 22px; color: var(--gold); }
.emergency-banner h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}
.emergency-banner p { color: var(--text-muted); font-size: 0.84rem; font-weight: 300; }
.emergency-banner a {
  margin-left: auto;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.emergency-banner a:hover { opacity: 0.88; }

/* ---- Sections ---- */
section {
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
section.full-bleed { max-width: none; }
.section-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.accent { color: var(--gold); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover { border-color: var(--border-gold); background: var(--bg-card2); }
.service-card .sc-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 13px;
}
.service-card .sc-icon svg { width: 19px; height: 19px; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card2), #1a2035);
  border-color: var(--border-gold);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-card.featured .sc-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  flex-shrink: 0;
}
.service-card.featured .sc-icon svg { color: var(--bg); width: 22px; height: 22px; }
.service-card.featured h3 { font-size: 1.05rem; }
.service-card.featured p { font-size: 0.875rem; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary svg { width: 17px; height: 17px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--border-gold); color: var(--gold); transform: translateY(-1px); }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---- Process Steps ---- */
.process-steps { display: flex; flex-direction: column; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; position: relative; }
.step-num {
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.step-content p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ---- Reviews ---- */
.reviews-section { background: var(--bg-mid); max-width: none; }
.stars { display: flex; gap: 3px; margin-bottom: 10px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); fill: var(--gold); }
.rating-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid var(--border-gold);
}
.rating-big {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.rating-info p { color: var(--text-dim); font-size: 0.8rem; }
.rating-info strong { font-size: 0.875rem; font-weight: 600; display: block; margin-top: 3px; color: var(--text); }
.google-badge {
  margin-left: auto;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 0.67rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.google-badge svg { width: 26px; height: 26px; }
.reviews-list { display: flex; flex-direction: column; gap: 10px; }
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: -14px; right: 16px;
  font-family: Georgia, serif; font-size: 5rem;
  color: rgba(200,169,110,0.07); line-height: 1;
}
.reviewer { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card2); border: 1px solid var(--border-gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.875rem; color: var(--white); }
.reviewer-date { font-size: 0.76rem; color: var(--text-dim); margin-top: 2px; }
.review-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.review-verified {
  display: flex; align-items: center; gap: 6px;
  margin-top: 13px; font-size: 0.73rem; color: var(--text-dim); font-weight: 500;
}
.review-verified svg { width: 13px; height: 13px; color: #4285F4; }

/* ---- Guarantees ---- */
.guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.guarantee-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 22px 16px; text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.guarantee-card:hover { border-color: var(--border-gold); }
.g-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-dim);
  margin: 0 auto 13px;
  display: flex; align-items: center; justify-content: center;
}
.g-icon svg { width: 22px; height: 22px; color: var(--gold); }
.guarantee-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem; font-weight: 400; color: var(--white); margin-bottom: 6px;
}
.guarantee-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; font-weight: 300; }

/* ---- Areas ---- */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.area-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 13px;
  font-size: 0.875rem; color: var(--text-muted); font-weight: 300;
  transition: border-color 0.2s, color 0.2s;
}
.area-pill:hover { border-color: var(--border-gold); color: var(--text); }
.area-pill svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: calc(var(--nav-h) + 44px) 24px 50px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

/* ---- Services List (inner page) ---- */
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-row {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.service-row:hover { border-color: var(--border-gold); }
.service-row-header { display: flex; align-items: center; gap: 13px; margin-bottom: 13px; flex-wrap: wrap; }
.service-row-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-row-icon svg { width: 21px; height: 21px; color: var(--gold); }
.service-row h2 {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}
.price { margin-left: auto; font-size: 0.9rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.service-row p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 13px; font-weight: 300; }
.service-row ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-row ul li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem; color: var(--text-muted); font-weight: 300;
}
.service-row ul li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

/* ---- Contact ---- */
.contact-grid { display: flex; flex-direction: column; gap: 10px; }
.contact-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--border-gold); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-card h3 {
  font-family: var(--font-serif); font-size: 0.9rem; font-weight: 400;
  color: var(--white); margin-bottom: 3px;
}
.contact-card p { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }
.contact-value { color: var(--gold); font-size: 0.9375rem; font-weight: 600; margin-top: 4px; }
.form-section {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 24px 20px; border: 1px solid var(--border-gold);
}
.form-section h2 {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 15px;
  color: var(--white); font-family: var(--font-sans);
  font-size: 0.9375rem; outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 96px; resize: none; }
.form-submit {
  width: 100%;
  background: var(--gold); color: var(--bg);
  padding: 15px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.9; }
.hours-grid {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--text); }
.hours-row .time { color: var(--gold); font-weight: 600; }
.hours-row.today { background: var(--gold-dim); }

/* ---- About ---- */
.about-hero-text {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300;
}
.owner-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border-gold); margin-bottom: 24px;
}
.owner-photo {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, var(--bg-card2), #1a2040);
  display: flex; align-items: center; justify-content: center;
}
.owner-photo-placeholder {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.owner-photo-placeholder svg { width: 42px; height: 42px; color: var(--gold); }
.owner-info { padding: 20px; }
.owner-info h2 {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--white);
}
.owner-info h2 em { font-style: italic; color: var(--gold); }
.owner-title { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 12px; font-weight: 300; }
.cert-list { display: flex; flex-direction: column; gap: 7px; }
.cert-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.875rem; color: var(--text-muted); font-weight: 300;
}
.cert-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ---- Badges & Footer ---- */
.license-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.license-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.2);
  border-radius: 7px; padding: 7px 11px;
  font-size: 0.75rem; font-weight: 500; color: var(--gold);
}
.license-badge svg { width: 12px; height: 12px; }
footer {
  background: #080b10;
  padding: 44px 24px 110px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 7px;
}
.footer-logo span { color: var(--gold); }
.footer-brand { margin-bottom: 26px; }
.footer-brand p { color: var(--text-dim); font-size: 0.84rem; line-height: 1.6; font-weight: 300; margin-top: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.footer-contact a {
  display: flex; align-items: center; gap: 9px;
  color: var(--text-muted); font-size: 0.875rem; transition: color 0.2s; font-weight: 300;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 22px; }
.footer-nav a {
  color: var(--text-dim); font-size: 0.875rem; padding: 6px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s; font-weight: 300;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 18px; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.78rem; text-align: center; font-weight: 300;
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ---- Responsive ---- */
@media (min-width: 640px) {
  section { padding: 88px 40px; }
  .page-header { padding: calc(var(--nav-h) + 54px) 40px 58px; }
  .hero { padding: calc(var(--nav-h) + 30px) 40px 120px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card.featured { grid-column: span 3; }
  .guarantees { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-buttons { flex-direction: row; justify-content: center; }
  .emergency-banner { margin: 0 40px; }
  .stats-strip { padding: 36px 40px; }
}
@media (min-width: 900px) {
  section { padding: 96px 60px; }
  .page-header { padding: calc(var(--nav-h) + 56px) 60px 64px; }
}
