/* ============ VARIABLES ============ */
:root {
  --navy: #1B2A4A;
  --navy-mid: #253A5E;
  --blue: #3E5C8A;
  --rose: #C2918A;
  --rose-light: #DBBAB4;
  --cream: #F3F0EE;
  --cream-alt: #EAE4E1;
  --white: #FFFFFF;
  --text-dark: #2A2A2A;
  --text-muted: #6B6B6B;
  --border-light: #E2DCD8;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

h1, h2, h3 { font-family: var(--font-serif); color: var(--navy); line-height: 1.25; }

section { scroll-margin-top: 80px; }

.eyebrow, .hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 24px;
}

.section-heading h2 { font-size: 34px; margin-bottom: 16px; }

.section-intro { color: var(--text-muted); font-size: 17px; }

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

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

.btn-full { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img { height: 48px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  justify-content: center;
}

.main-nav a { color: var(--navy); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--rose); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--rose) !important; color: var(--white) !important; }

.phone-link {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.lang-toggle {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.lang-toggle:hover { background: var(--rose); color: var(--white); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--navy); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 75%, var(--rose) 100%);
  padding: 110px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow { color: var(--rose-light); }

.hero h1 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--cream);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-tags {
  color: var(--rose-light);
  font-size: 14px;
  margin-top: 24px;
  letter-spacing: 0.3px;
}

/* ============ ABOUT ============ */
.about { padding: 100px 24px; background: var(--white); }

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-text h2 { font-size: 32px; margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--text-dark); font-size: 16px; }

/* ============ SERVICES ============ */
.services { padding: 100px 24px; background: var(--cream); }

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.12);
}

.service-card img { width: 100%; height: 200px; object-fit: cover; }

.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 19px; margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 14.5px; }

/* ============ WHY CHOOSE ============ */
.why-choose { padding: 100px 24px; background: var(--navy); }
.why-choose .eyebrow { color: var(--rose-light); }
.why-choose h2 { color: var(--white); }

.why-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  border-left: 2px solid var(--rose);
  padding-left: 20px;
}
.why-item h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.why-item p { color: var(--rose-light); font-size: 14.5px; opacity: 0.9; }

/* ============ SERVICE AREA ============ */
.service-area { padding: 100px 24px; background: var(--white); text-align: center; }

.area-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
}
.area-list li {
  font-size: 16px;
  padding-left: 24px;
  position: relative;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.area-note { color: var(--text-muted); font-size: 15px; }
.area-note a { color: var(--blue); font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 24px; background: var(--cream); text-align: center; }

.testimonial-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.06);
}
.testimonial-card .quote {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-card .author { font-weight: 600; color: var(--navy); font-size: 14px; }
.testimonial-card .author span { font-weight: 400; color: var(--text-muted); }

.reviews-link { margin-top: 36px; }
.reviews-link a { color: var(--blue); font-weight: 600; font-size: 15px; }

/* ============ ESTIMATE / CONTACT ============ */
.estimate { padding: 100px 24px; background: var(--white); }

.estimate-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.estimate-text h2 { font-size: 32px; margin-bottom: 16px; }
.estimate-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }

.phone-cta {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--rose);
  padding-bottom: 4px;
}

.estimate-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--text-dark);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-field textarea { resize: vertical; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); padding: 60px 24px 40px; text-align: center; }

.footer-logo { height: 42px; margin: 0 auto 24px; }

.footer-phone a {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-location, .footer-hours {
  color: var(--rose-light);
  font-size: 14px;
  margin-top: 8px;
}

.footer-yelp { margin-top: 16px; }
.footer-yelp a {
  color: var(--rose-light);
  font-size: 14px;
  text-decoration: underline;
}

.footer-copy {
  color: var(--rose-light);
  opacity: 0.6;
  font-size: 12.5px;
  margin-top: 28px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .phone-link { display: none; }
  .mobile-menu-btn { display: flex; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 320px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }

  .estimate-inner { grid-template-columns: 1fr; gap: 40px; }
  .estimate-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .section-heading h2 { font-size: 26px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
