@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1c3d6b;
  --navy-dark: #10233f;
  --gold: #b8912f;
  --gold-light: #d4af5a;
  --cream: #f7f5f0;
  --charcoal: #2b2b2b;
  --gray: #6b7280;
  --line: #e2ddd0;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  color: #b6c0d1;
  font-size: 13px;
}
.top-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 32px;
}
.top-bar .rating { display: flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 600; }
.top-bar .rating .stars { letter-spacing: 1px; }
.top-bar a.phone-link { color: #dfe4ec; font-weight: 500; }
.top-bar a.phone-link:hover { color: var(--gold-light); }

/* Header */
header.site {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; }

.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #fff;
}

.brand-text .sub {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
}

nav.main { display: flex; gap: 34px; }

nav.main a {
  font-size: 14px;
  font-weight: 500;
  color: #e7e9ee;
  letter-spacing: 0.3px;
  transition: color 0.15s ease;
}

nav.main a:hover, nav.main a.active { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 13px !important;
}

.nav-cta:hover { background: var(--gold); color: var(--navy-dark) !important; }

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 90px 32px 110px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p.lede {
  color: #cdd6e4;
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.15s ease;
}

.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); }

.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.hero-mark { justify-self: center; }

/* Trust badges strip */
.badges-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 40px 32px;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.badge-item h3 { font-size: 15.5px; margin-bottom: 6px; color: var(--navy); }
.badge-item p { font-size: 13.5px; color: var(--gray); }
.badge-item .mark { color: var(--gold); font-size: 20px; margin-bottom: 10px; display: block; }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 4px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 4px 20px; color: var(--gray); font-size: 14.5px; max-width: 640px; }

/* Service area cards */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.area-card h3 { font-size: 17px; margin-bottom: 12px; }
.area-card p { font-size: 14.5px; color: var(--gray); margin-bottom: 4px; }
.area-card a { color: var(--navy); font-weight: 600; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta .row { display: grid; grid-template-columns: 1fr 1fr; }
.sticky-cta a {
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sticky-cta a.call { background: var(--navy-dark); }
.sticky-cta a.estimate { background: var(--gold); color: var(--navy-dark); }

@media (max-width: 640px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 52px; }
  .badges-grid, .area-grid { grid-template-columns: 1fr; }
}

/* Divider - mountain motif */
.peak-divider {
  display: block;
  width: 100%;
  height: 46px;
  margin: 0 auto;
}

/* Sections */
section { padding: 88px 32px; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }

.section-head .eyebrow { color: var(--gold); }

.section-head h2 { font-size: 34px; margin-bottom: 14px; }

.section-head p { color: var(--gray); font-size: 16px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--cream);
  padding: 40px 32px;
}

.service-card .num {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 { font-size: 20px; margin-bottom: 10px; }

.service-card p { color: var(--gray); font-size: 14.5px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item .cap {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,35,63,0.75), rgba(16,35,63,0.05));
  z-index: 1;
}

/* Testimonials */
.section-navy { background: var(--navy); color: #fff; }
.section-navy .section-head h2 { color: #fff; }
.section-navy .section-head p { color: #b6c0d1; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.t-card p.quote {
  font-size: 15px;
  color: #dfe4ec;
  margin-bottom: 20px;
}

.t-card .who { font-size: 13px; color: var(--gold-light); font-weight: 600; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-grid h2 { font-size: 32px; margin-bottom: 18px; }
.about-grid p { color: var(--gray); margin-bottom: 16px; font-size: 15.5px; }

.stat-row { display: flex; gap: 40px; margin-top: 32px; }
.stat .n { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); font-weight: 700; }
.stat .l { font-size: 12.5px; color: var(--gray); letter-spacing: 0.4px; text-transform: uppercase; margin-top: 4px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--charcoal);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.info-block { margin-bottom: 28px; }
.info-block h3 { font-size: 15px; margin-bottom: 6px; }
.info-block p, .info-block a { color: var(--gray); font-size: 15px; }

/* CTA band */
.cta-band {
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 64px 32px;
}
.cta-band h2 { color: var(--navy-dark); font-size: 30px; margin-bottom: 14px; }
.cta-band p { color: #4a3a12; margin-bottom: 28px; }
.cta-band .btn-primary { background: var(--navy); color: #fff; }
.cta-band .btn-primary:hover { background: var(--navy-dark); }

/* Footer */
footer.site {
  background: var(--navy-dark);
  color: #b6c0d1;
  padding: 56px 32px 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer.site h4 { color: #fff; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 9px; }
footer.site a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 12.5px;
  color: #7d8aa0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 32px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 38px; }
.page-hero p { color: #cdd6e4; margin-top: 12px; }

/* Responsive */
@media (max-width: 860px) {
  nav.main { display: none; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .hero-mark { order: -1; width: 140px; margin: 0 auto; }
  .services-grid, .gallery-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
