:root {
  --cream: #FFFDF9;
  --cream-alt: #FBF6EC;
  --black: #1a1a1a;
  --gold: #C99A3B;
  --gold-light: #E8C169;
  --gold-dark: #8a6a24;
  --gray: #5b5f66;
  --gray-light: #8a8f98;
  --border: #ECE3CF;
  --red: #E4002B;
  --red-dark: #B4001F;
  --footer-bg: #171310;
  --radius: 14px;
  --font-logo: 'Playfair Display', serif;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --sticky-bar-h: 60px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
svg { width: 1em; height: 1em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }

.eyebrow {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-title { text-align: center; font-size: clamp(26px, 4vw, 38px); margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 36px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1200;
  box-shadow: 0 8px 22px rgba(201,154,59,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,154,59,0.45); }
.btn-white {
  background: #fff;
  color: var(--black);
  border-color: var(--border);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.btn-red {
  background: linear-gradient(135deg, #ff4d4d, var(--red));
  color: #fff;
  box-shadow: 0 8px 22px rgba(228,0,43,0.4);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(228,0,43,0.5); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 122px; width: auto; display: block; }
.logo-img-footer { height: 130px; }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--black); padding-bottom: 4px; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-dark); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.header-call:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(228,0,43,0.25); }
.header-call svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.header-call-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-call-text small { font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px; color: var(--gold-dark); text-transform: uppercase; }

.phone-number {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  animation: phonePulse 1.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-number { animation: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; }

/* HERO */
.hero { position: relative; overflow: hidden; padding-bottom: 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(255,253,249,0.94) 32%, rgba(255,253,249,0.55) 58%, rgba(255,253,249,0.15) 78%, rgba(255,253,249,0) 100%),
              linear-gradient(0deg, var(--cream) 0%, rgba(255,253,249,0) 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}
.hero-content { max-width: 620px; }
.hero-content h1 { font-size: clamp(34px, 5.5vw, 56px); margin-bottom: 20px; letter-spacing: 0.5px; }
.hero-sub { color: var(--gray); font-size: 17px; max-width: 480px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  margin-bottom: 48px;
  overflow: hidden;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}
.hero-badge:last-child { border-right: none; }
.hero-badge svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.hero-badge span { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.3px; }

/* SERVICES */
.services { padding: 88px 0 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.service-icon {
  width: 58px; height: 58px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-alt);
  border-radius: 12px;
}
.service-icon svg { width: 30px; height: 30px; color: var(--gold); }
.service-card h3 { font-size: 16px; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--gray); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.feature-item div { display: flex; flex-direction: column; gap: 4px; }
.feature-item strong { font-family: var(--font-head); font-size: 14px; color: var(--gold-dark); }
.feature-item span { font-size: 13px; color: var(--gray); }

/* ABOUT */
.about { padding: 80px 0; }
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(0,0,0,0.15);
}
.about-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.about h2 { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 18px; }
.about p { color: var(--gray); font-size: 16px; }

.about-work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
  text-align: left;
}
.about-work-item {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.about-work-item h4 { font-family: var(--font-head); font-size: 15px; color: var(--gold-dark); margin-bottom: 6px; }
.about-work-item p { font-size: 13.5px; color: var(--gray); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.why-card h3 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--gray); }

/* SERVICE AREAS */
.service-areas { padding: 80px 0; background: var(--cream-alt); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.area-card svg { width: 30px; height: 30px; color: var(--gold); }

/* REVIEWS */
.reviews { padding: 88px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-style: italic; color: var(--gray); margin-bottom: 14px; }
.review-name { font-weight: 700; font-size: 13px; }
.reviews-note { text-align: center; font-size: 12.5px; color: var(--gray-light); }

/* QUOTE / CONTACT */
.quote { padding: 88px 0; background: var(--cream-alt); }
.quote-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.quote-info h2 { font-size: clamp(26px, 4vw, 36px); margin: 8px 0 16px; }
.quote-info p { color: var(--gray); margin-bottom: 24px; }
.contact-line { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-bottom: 12px; }
.contact-line svg { width: 20px; height: 20px; color: var(--gold); }
a.contact-line svg { color: var(--red); }
.contact-line .phone-number { font-size: 24px; }

.emergency-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-left: 8px;
}
a.contact-line { flex-wrap: wrap; }
.emergency-tag-footer {
  display: inline-block;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,154,59,0.12);
  border-radius: 20px;
  padding: 3px 10px;
  margin: -4px 0 10px;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input, .quote-form select, .quote-form textarea {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.quote-form textarea { resize: vertical; }
.quote-form button { justify-content: center; }
.form-note { font-size: 13px; color: var(--gold-dark); min-height: 18px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* FOOTER */
.site-footer { background: var(--footer-bg); color: #cfc9bc; padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col p, .footer-col a { color: #cfc9bc; font-size: 14px; display: block; margin-bottom: 10px; }
.footer-col a.phone-number { color: var(--red); font-size: 18px; }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; color: #fff; }
.footer-col a:hover { color: var(--gold); }
.footer-logo { margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 13px; color: #8a8578; }

/* STICKY MOBILE CALL BAR */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #ff4d4d, var(--red));
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  height: var(--sticky-bar-h);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
}
.phone-number-sticky { font-size: 18px; color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.sticky-call-bar svg { width: 20px; height: 20px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .about-top { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .header-inner { height: 110px; }
  .logo-img { height: 92px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 15px; }
}

@media (max-width: 768px) {
  body { padding-bottom: var(--sticky-bar-h); }
  .sticky-call-bar { display: flex; }
  .site-header { position: static; }
  .header-inner { height: auto; min-height: 100px; padding: 10px 0; gap: 10px; }
  .logo-img { height: 70px; }
  .header-call {
    display: flex;
    padding: 6px 10px;
    border-width: 1.5px;
  }
  .header-call-text small { font-size: 9px; }
  .header-call .phone-number { font-size: 15px; animation: none; }
  .header-call svg { width: 18px; height: 18px; }
  .header-actions { gap: 10px; }
  .main-nav a { font-size: 16px; }
  .main-nav {
    position: fixed;
    top: 100px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform .25s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-badge:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-work { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
