/* ===== Variables ===== */
:root {
  --navy: #1c2d4a;
  --navy-dark: #14213a;
  --cream: #f4ecdc;
  --cream-soft: #faf6ec;
  --red: #a53d2d;
  --red-dark: #8a3125;
  --text: #23293a;
  --text-muted: #5a6478;
  --border: #e3dcc9;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(28, 45, 74, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); color: var(--navy); line-height: 1.2; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 10px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead {
  max-width: 640px;
  color: var(--text-muted);
  margin-top: 12px;
}

section { padding: 80px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-call { background: var(--navy); color: #fff; padding: 10px 18px; font-size: 0.9rem; }
.btn-call:hover { background: var(--navy-dark); }
.btn-block { width: 100%; justify-content: center; }
.icon { width: 16px; height: 16px; fill: currentColor; }
.icon-lg { width: 26px; height: 26px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.brand-sub { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

.site-nav { display: flex; gap: 20px; }
.site-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text); position: relative; }
.site-nav a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.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(--navy); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--cream-soft) 0%, #fff 100%);
  padding: 90px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.hero-lead { color: var(--text-muted); max-width: 520px; margin-bottom: 22px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.badge-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-mark { width: 100%; max-width: 320px; filter: drop-shadow(0 20px 30px rgba(28,45,74,0.18)); }

/* ===== Divider strips (angled break between sections) ===== */
.divider { height: 46px; position: relative; z-index: 1; }
.divider-navy { background: #fff; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.divider-navy::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.divider-cream { background: var(--navy); clip-path: polygon(0 0, 100% 100%, 0 100%); }
.divider-cream::after {
  content: "";
  position: absolute; inset: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* ===== Trust Bar ===== */
.trust-bar { background: var(--navy); padding: 20px 0 48px; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.trust-badge-red { background: var(--red); color: var(--cream); }
.trust-badge-cream { background: var(--cream); color: var(--navy); }
.trust-item:nth-child(2) .trust-badge,
.trust-item:nth-child(4) .trust-badge { transform: rotate(-8deg); }
.trust-item:nth-child(1) .trust-badge,
.trust-item:nth-child(3) .trust-badge { transform: rotate(8deg); }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.trust-item span { font-size: 0.78rem; color: #b9c2d6; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-copy p { color: var(--text-muted); margin-bottom: 14px; }
.about-points { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.about-points li {
  padding-left: 26px;
  position: relative;
  font-weight: 500;
  color: var(--text);
}
.about-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ===== Services ===== */
.services { background: var(--cream-soft); }
.services h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px 24px 24px 4px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px) rotate(-0.6deg); box-shadow: 0 16px 34px rgba(28,45,74,0.14); }
.service-card:nth-child(even) { border-radius: 24px 24px 4px 24px; }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--cream);
}
.service-card:nth-child(2n) .service-icon { background: var(--red); }
.service-card:nth-child(3n) .service-icon { background: var(--cream); color: var(--navy); border: 2px solid var(--navy); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Options ===== */
.options h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.option-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.option-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(28,45,74,0.14); }
.option-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--cream);
}
.option-card:nth-child(2) .option-icon { background: var(--red); }
.option-card:nth-child(3) .option-icon { background: var(--cream); color: var(--navy); border: 2px solid var(--navy); }
.option-card h3 { font-size: 1.1rem; }
.option-card p { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; }
.option-link { font-weight: 700; color: var(--red); font-size: 0.9rem; }
.option-links { display: flex; gap: 18px; }
.options-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 28px; }

/* ===== Gallery / Photo Slideshow ===== */
.gallery h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.photo-slideshow {
  position: relative;
  max-width: 720px;
  margin: 44px auto 0;
  padding: 0 56px;
  touch-action: pan-y;
}
.photo-slide-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.photo-slide { display: none; width: 100%; height: 100%; user-select: none; -webkit-user-drag: none; }
.photo-slide.active { display: block; }
.photo-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.slide-nav:hover { background: var(--navy); color: #fff; }
.slide-prev { left: 0; }
.slide-next { right: 0; }
.slide-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; }
.dot.active { background: var(--red); }

/* ===== Service Area Map ===== */
.area-map-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ===== Service Area ===== */
.area { background: var(--cream-soft); }
.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.area-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.area-copy p { color: var(--text-muted); margin-bottom: 20px; }
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.area-list li {
  font-weight: 600;
  color: var(--navy);
  padding-left: 22px;
  position: relative;
}
.area-list li::before {
  content: "\2022";
  color: var(--red);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}
/* ===== Builders & Contractors ===== */
.builders-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
}
.builders-card .eyebrow { color: #e79485; }
.builders-card h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.builders-copy p { color: #c3cbdc; margin-bottom: 20px; }
.builders-points { display: flex; flex-direction: column; gap: 10px; }
.builders-points li { padding-left: 26px; position: relative; font-weight: 500; }
.builders-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.builders-actions { display: flex; flex-direction: column; gap: 14px; }
.btn-outline-light { border: 2px solid var(--cream); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: var(--cream); color: var(--navy); }

/* ===== Reviews ===== */
.reviews-summary {
  text-align: center;
  max-width: 520px;
  margin: 44px auto 0;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.rating-big { font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); margin-bottom: 6px; }
.rating-big span { color: var(--red); font-size: 1.4rem; display: block; margin-top: 4px; }
.reviews-summary p { color: var(--text-muted); margin-bottom: 20px; }
.reviews-note { text-align: center; color: var(--text-muted); margin-top: 24px; font-size: 0.9rem; }

/* ===== Contact ===== */
.contact { background: var(--navy); color: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact .eyebrow { color: #e79485; }
.contact h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.contact-copy p { color: #c3cbdc; margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-details a { color: var(--cream); font-weight: 600; }
.contact-details a:hover { color: var(--red); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}
.botcheck-field { display: none; }
.contact-form label { font-size: 0.85rem; font-weight: 600; margin-top: 12px; color: var(--navy); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form button { margin-top: 20px; }
.form-status { margin-top: 12px; font-size: 0.9rem; color: var(--red); text-align: center; min-height: 1.2em; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: #b9c2d6; padding: 48px 0 20px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { width: 44px; height: 44px; }
.footer-name { color: #fff; font-weight: 700; font-family: var(--font-display); }
.footer-tag { font-size: 0.85rem; color: #8f9ab5; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 0.8rem; color: #6b7690; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-call span { display: none; }

  .hero-inner,
  .about-inner,
  .area-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; }
  .hero-mark { max-width: 220px; }

  .services-grid,
  .options-grid { grid-template-columns: repeat(2, 1fr); }

  .builders-card { grid-template-columns: 1fr; padding: 40px; }
  .builders-actions { flex-direction: row; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .services-grid,
  .options-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .area-list { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .builders-card { padding: 32px 24px; }
  .builders-actions { flex-direction: column; }

  .photo-slideshow { padding: 0 44px; }
  .slide-nav { width: 36px; height: 36px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .photo-slideshow { padding: 0 6px; }
}
