:root {
  --tan: #c7b58a;
  --tan2: #bcae86;
  --navText: #2a2a2a;

  --blue: #3f6a8a;
  --blueDark: #2f5673;

  --panel: rgba(255, 255, 255, 0.78);
  --panelBorder: rgba(0, 0, 0, 0.06);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #fff;
}

/* ===============================
   TOP STRIP
================================ */
.topstrip {
  background: var(--tan);
  color: #2b2b2b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.topstrip-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topstrip-left,
.topstrip-right {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

/* ===============================
   HEADER / NAV
================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ✅ One clean header grid */
.site-header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 54px;
  width: auto;
}

/* Nav */
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #1f2a36;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

/* Hover underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--tan);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-nav a:hover::after {
  opacity: 1;
}

/* Buttons removed from header */
.header-actions {
  display: none;
}

/* ===============================
   BUTTONS (used in hero + intro)
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blueDark);
}

.btn-secondary {
  background: var(--tan2);
  color: #fff;
}

.btn-secondary:hover {
  filter: brightness(0.96);
}

.btn-lg {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
}

/* ===============================
   HERO
================================ */
.hero2 {
  position: relative;
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

.hero2-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 18px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero2-panel {
  width: min(1050px, 100%);
  margin-top: 76px;
  background: var(--panel);
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  padding: 42px 34px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero2-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero2-title {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  /* ✅ bold like requested */
  letter-spacing: 1px;
  color: #4b6f8c;
}

.hero2-sub {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0.78;
}

.hero2-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===============================
   INTRO SECTION (matches screenshot)
================================ */
.intro2 {
  background: #ffffff;
  padding: 80px 18px 40px;
  /* reduced bottom padding */
}

.intro2-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro2-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro2-divider {
  width: 90px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.intro2-text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #5a5a5a;
  letter-spacing: 0.2px;
}

.intro2-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===============================
   PREMIER SECTION (new heading + paragraph section)
================================ */
.premier2 {
  background: #f4f5f6;
  /* ✅ same light grey */
  padding: 70px 18px 80px;
}

.premier2-wrap {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.premier2-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.premier2-divider {
  width: 140px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.premier2-text {
  max-width: 920px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #5a5a5a;
  letter-spacing: 0.2px;
}

/* ================================
   FEATURE TILES (screenshot style)
================================ */
.feature-tiles {
  padding: 12px 18px 80px;
  /* almost touching */
  background: #f5f6f7;
}

.feature-tiles-wrap {
  max-width: 1100px;
  /* ⬅ was 1200px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  justify-items: center;
  /* ⬅ centers cards */
}

/* Whole card is a link */
.feature-card {
  position: relative;
  height: 520px;
  width: 100%;
  max-width: 520px;
  /* ⬅ key change */
  overflow: hidden;
  text-decoration: none;
  display: block;
}

/* Background image */
.feature-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blue overlay tint */
.feature-card-layer {
  position: absolute;
  inset: 0;
  background: rgba(63, 106, 138, 0.78);
  /* blue glass layer */
}

/* Content wrapper */
.feature-card-inner {
  position: relative;
  height: 100%;
  padding: 56px 46px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

/* Gold inset border */
.feature-card-border {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(199, 181, 138, 0.95);
  pointer-events: none;
  border-radius: 8px;
}

/* Icon at top */
.feature-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 34px;
  color: rgba(199, 181, 138, 0.95);
}

/* Title */
.feature-card-title {
  font-size: 44px;
  font-weight: 300;
  /* lighter like screenshot */
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* Paragraph */
.feature-card-text {
  font-size: 16px;
  line-height: 1.9;
  max-width: 520px;
  opacity: 0.95;
  margin: 0 auto;
}

/* CTA button at bottom */
.feature-card-btn {
  margin-top: auto;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.95);
  color: #3f6a8a;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 12px;
  padding: 18px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* Hover */
.feature-card:hover .feature-card-layer {
  background: rgba(63, 106, 138, 0.86);
}

.feature-card:hover .feature-card-btn {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
  .feature-tiles-wrap {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 520px;
  }
}

@media (max-width: 520px) {
  .feature-card-inner {
    padding: 42px 22px 28px;
  }

  .feature-card-title {
    font-size: 34px;
  }

  .feature-card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* ===============================
   PLACEHOLDER SECTIONS
================================ */
.placeholder {
  padding: 70px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.placeholder h2 {
  font-size: 28px;
  font-weight: 900;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 980px) {
  .site-header-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero2-panel {
    padding: 34px 20px;
  }

  .hero2-title {
    font-size: 38px;
  }

  .intro2-title {
    font-size: 30px;
  }

  .premier2-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .feature-tiles-wrap {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .hero2-title {
    font-size: 30px;
  }

  .btn {
    width: 100%;
  }
}

/* ===============================
   REVIEWS (Elfsight wrapper)
================================ */
.reviews {
  background: #ffffff;
  padding: 85px 18px 95px;
}

.reviews-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-size: 46px;
  font-weight: 500;
  /* similar to screenshot */
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  /* blue-grey heading */
  margin-bottom: 18px;
}

.reviews-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 40px;
  border-radius: 999px;
  opacity: 0.95;
}

/* Widget container */
.reviews-widget {
  max-width: 1200px;
  margin: 0 auto;
}

/* Keep widget nicely centered */
.reviews-widget>* {
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-title {
    font-size: 34px;
    letter-spacing: 1.4px;
  }
}

@media (max-width: 520px) {
  .reviews {
    padding: 70px 14px 80px;
  }

  .reviews-title {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

/* ===============================
   WHY CHOOSE (dark section)
================================ */
.why3 {
  background: radial-gradient(circle at 50% 0%, #4b4b4b 0%, #2f2f2f 45%, #222 100%);
  color: #fff;
  padding: 90px 18px 85px;
}

.why3-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why3-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.why3-title {
  font-size: 44px;
  font-weight: 500;
  /* matches screenshot look */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why3-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 22px;
  border-radius: 999px;
  opacity: 0.95;
}

.why3-lead {
  max-width: 980px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

/* Grid */
.why3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 18px;
}

/* Cards */
.why3-card {
  border: 2px solid rgba(199, 181, 138, 0.75);
  /* gold outline */
  border-radius: 10px;
  padding: 34px 22px 28px;
  background: rgba(0, 0, 0, 0.08);
}

.why3-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.15;
}

.why3-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Buttons (bottom) */
.why3-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.why3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  background: #fff;
  color: #1f2a36;
  min-width: 260px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.why3-btn-blue {
  background: #ffffff;
  color: var(--blue);
}

.why3-btn-tan {
  background: #ffffff;
  color: var(--tan2);
}

/* Responsive */
@media (max-width: 980px) {
  .why3-title {
    font-size: 34px;
  }

  .why3-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why3-btn {
    width: 100%;
    max-width: 380px;
  }
}

/* ================================
   SERVING AREAS (image + text)
================================ */
.serve {
  background: #ffffff;
}

.serve-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  /* matches the “flush” look */
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  /* image slightly wider than text */
  min-height: 760px;
}

/* Left image panel */
.serve-media {
  background-image: url("../static/serve-bg.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 760px;
}

/* Right content panel */
.serve-content {
  padding: 70px 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.serve-kicker {
  color: var(--tan2);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.serve-title {
  color: #4b6f8c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  /* screenshot look */
  font-size: 54px;
  line-height: 1.15;
  margin: 0;
}

.serve-divider {
  width: 210px;
  height: 3px;
  background: var(--tan2);
  margin: 26px auto 28px;
  border-radius: 999px;
  opacity: 0.95;
}

.serve-text {
  color: #5a5a5a;
  font-size: 18px;
  line-height: 1.9;
  max-width: 740px;
  margin: 0 auto 18px;
  font-weight: 400;
}

/* Locations grid */
.serve-locations {
  margin: 26px auto 40px;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px 54px;
  justify-content: center;
  text-align: left;
}

.serve-location {
  position: relative;
  padding-left: 34px;
  font-size: 20px;
  color: #2f2f2f;
  font-weight: 500;
  line-height: 1.4;
}

/* Pin icon */
.serve-location::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
  font-size: 18px;
  opacity: 0.9;
}

.serve-location-more::before {
  content: "🗺️";
}

/* Buttons row */
.serve-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.serve-location {
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 980px) {
  .serve-wrap {
    grid-template-columns: 1fr;
  }

  .serve-media {
    min-height: 420px;
  }

  .serve-content {
    padding: 52px 22px 56px;
  }

  .serve-title {
    font-size: 40px;
  }

  .serve-locations {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .serve-title {
    font-size: 32px;
  }

  .serve-text {
    font-size: 16px;
  }

  .serve-location {
    font-size: 18px;
  }

  .serve-actions .btn {
    width: 100%;
  }
}

/* ================================
   SERVING AREAS (edge-to-edge image)
================================ */
.serve {
  background: #ffffff;
  width: 100%;
}

/* Full-width grid */
.serve-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1.25fr;
  /* ✅ give text MORE space */
  min-height: 760px;
  margin: 0;
  padding: 0;
}

/* Left image */
.serve-media {
  background-image: url("../static/residential-interior-img.jpg");
  background-size: cover;
  background-position: left center;
  /* ✅ hard anchor left */
  background-repeat: no-repeat;
  min-height: 760px;
}

/* Right content panel */
.serve-content {
  padding: 70px 90px 60px 90px;
  display: flex;
  /* ✅ so align-items works */
  flex-direction: column;
  align-items: flex-start;
  /* ✅ left align */
  text-align: left;
  /* ✅ use width properly */
}

/* Top small line */
.serve-kicker {
  color: var(--tan2);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* Main title */
.serve-title {
  color: #4b6f8c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 40px;
  /* ✅ closer to screenshot */
  line-height: 1.15;
  margin: 0;
  max-width: 100%;
}

/* Divider */
.serve-divider {
  width: 210px;
  height: 3px;
  background: var(--tan2);
  margin: 26px 0 28px;
  /* ✅ not centered */
  border-radius: 999px;
  opacity: 0.95;
}

/* Paragraph text */
.serve-text {
  color: #5a5a5a;
  font-size: 18px;
  line-height: 1.9;
  max-width: 100%;
  /* ✅ fill the column */
  margin: 0 0 18px;
  /* ✅ not centered */
  font-weight: 400;
}

/* Locations grid */
.serve-locations {
  margin: 26px 0 40px;
  /* ✅ not centered */
  width: 100%;
  /* ✅ fill available width */
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px 54px;
  justify-content: start;
  /* ✅ left */
  text-align: left;
}

.serve-location {
  position: relative;
  padding-left: 34px;
  font-size: 20px;
  color: #2f2f2f;
  font-weight: 500;
  line-height: 1.4;
}

/* Pin icon */
.serve-location::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
  font-size: 18px;
  opacity: 0.9;
}

.serve-location-more::before {
  content: "🗺️";
}

/* Buttons row */
.serve-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  /* ✅ left aligned */
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 980px) {
  .serve-wrap {
    grid-template-columns: 1fr;
  }

  .serve-media {
    min-height: 420px;
  }

  .serve-content {
    padding: 52px 22px 56px;
    align-items: center;
    /* ✅ centre on mobile looks better */
    text-align: center;
  }

  .serve-divider {
    margin: 20px auto 22px;
    /* ✅ centre divider on mobile */
  }

  .serve-text {
    margin: 0 auto 18px;
  }

  .serve-locations {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    width: min(760px, 100%);
    margin: 22px auto 32px;
  }

  .serve-actions {
    justify-content: center;
  }

  .serve-title {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .serve-title {
    font-size: 32px;
  }

  .serve-text {
    font-size: 16px;
  }

  .serve-location {
    font-size: 18px;
  }

  .serve-actions .btn {
    width: 100%;
  }
}

/* ===============================
   FOOTER (matches screenshot)
================================ */

.site-footer {
  background: radial-gradient(circle at 50% 0%, #4b4b4b 0%, #2f2f2f 45%, #222 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 70px 18px 30px;
}

/* top logo centered */
.footer-brand {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
}

/* 5 columns like screenshot */
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 0.8fr;
  gap: 44px;
  align-items: start;
}

/* left paragraph column */
.footer-text {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

/* small license line (bottom-left) */
.footer-license {
  margin-top: 28px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.9);
}

/* headings (gold) */
.footer-title {
  color: var(--tan2);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(200, 215, 230, 0.92);
  /* light blue-grey like screenshot */
  font-weight: 500;
  font-size: 20px;
}

/* arrow / icon “chip” */
.footer-links .icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(120, 165, 205, 0.18);
  display: grid;
  place-items: center;
  color: rgba(200, 215, 230, 0.95);
  flex: 0 0 auto;
}

/* link styling */
.footer-links a {
  color: rgba(200, 215, 230, 0.92);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* phone + hours block (2nd column in screenshot) */
.footer-meta {
  display: grid;
  gap: 18px;
}

.footer-meta-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-meta-row .meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(120, 165, 205, 0.18);
  display: grid;
  place-items: center;
  color: rgba(200, 215, 230, 0.95);
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-meta-row .meta-title {
  font-weight: 500;
  font-size: 22px;
  color: rgba(200, 215, 230, 0.95);
  line-height: 1.2;
}

.footer-meta-row .meta-sub {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 52px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 60px 16px 28px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links li {
    font-size: 18px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-text {
    max-width: 100%;
  }
}

/* ===============================
   RESIDENTIAL PAGE STYLES
================================ */

/* Hero */
.pagehero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pagehero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

.pagehero-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagehero-panel {
  width: min(980px, 100%);
  margin-top: 60px;
  background: var(--panel);
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  padding: 38px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.pagehero-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.pagehero-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin: 0;
}

.pagehero-sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #5a5a5a;
}

.pagehero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Intro */
.resintro {
  background: #ffffff;
  padding: 80px 18px 80px;
}

.resintro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.resintro-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.resintro-divider {
  width: 120px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.resintro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #5a5a5a;
}

/* Services */
.resservices {
  background: #f4f5f6;
  padding: 85px 18px 95px;
}

.resservices-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.resservices-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.resservices-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 44px;
  border-radius: 999px;
  opacity: 0.95;
}

.resservices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.resservice-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.resservice-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.resservice-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(63, 106, 138, 0.12);
  color: #3f6a8a;
  font-size: 18px;
}

.resservice-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f2a36;
}

.resservice-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
}

/* Feature block (image + text) */
.resfeature {
  background: #ffffff;
  padding: 95px 18px;
}

.resfeature-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.resfeature-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.resfeature-content {
  text-align: left;
}

.resfeature-kicker {
  color: var(--tan2);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

.resfeature-title {
  color: #4b6f8c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.resfeature-divider {
  width: 160px;
  height: 3px;
  background: var(--tan2);
  margin: 22px 0 22px;
  border-radius: 999px;
}

.resfeature-text {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.resfeature-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 26px;
  display: grid;
  gap: 10px;
}

.resfeature-list li {
  color: #2f2f2f;
  font-weight: 500;
  font-size: 16px;
}

.resfeature-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===============================
   RES FAQ (matches screenshot)
================================ */
.resfaq {
  background: #c7b58a;
  /* your tan */
  padding: 80px 18px;
}

.resfaq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 44px;
  align-items: center;
}

/* Left panel */
.resfaq-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.resfaq-badge {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 54px;
  font-weight: 700;
}

.resfaq-lefttitle {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

/* Right side accordion */
.resfaq-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Use <details> as the accordion cards */
.resfaq-acc {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* remove default marker */
.resfaq-acc>summary {
  list-style: none;
}

.resfaq-acc>summary::-webkit-details-marker {
  display: none;
}

.resfaq-q {
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  color: #3f6a8a;
  /* blue-grey like screenshot */
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 14px;
}

.resfaq-plus {
  font-size: 22px;
  font-weight: 400;
  color: #3f6a8a;
  line-height: 1;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.resfaq-a {
  padding: 0 20px 18px;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
}

/* rotate plus when open */
.resfaq-acc[open] .resfaq-plus {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 980px) {
  .resfaq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resfaq-lefttitle {
    font-size: 38px;
  }

  .resfaq {
    padding: 70px 16px;
  }
}

@media (max-width: 520px) {
  .resfaq-lefttitle {
    font-size: 32px;
  }

  .resfaq-badge {
    width: 96px;
    height: 96px;
    font-size: 44px;
  }

  .resfaq-q {
    font-size: 13px;
    padding: 16px 16px;
  }

  .resfaq-a {
    padding: 0 16px 16px;
  }
}

/* Quote anchor */
.quoteanchor {
  background: #f4f5f6;
  /* light grey */
  padding: 85px 18px 95px;
}

.quoteanchor-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quoteanchor-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.quoteanchor-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 26px;
  border-radius: 999px;
}

.quoteanchor-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
}

.quoteanchor-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .pagehero-title {
    font-size: 34px;
  }

  .resservices-grid {
    grid-template-columns: 1fr;
  }

  .resfeature-wrap {
    grid-template-columns: 1fr;
  }

  .resfaq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .pagehero-panel {
    padding: 28px 18px;
  }

  .resintro-title {
    font-size: 28px;
  }

  .resservices-title,
  .resfaq-title,
  .quoteanchor-title {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

/* ===============================
   RESIDENTIAL FOOTER = HOME FOOTER
   (CSS alias so footer2 uses the same styling)
================================ */

/* main footer wrapper */
.footer2 {
  background: radial-gradient(circle at 50% 0%, #4b4b4b 0%, #2f2f2f 45%, #222 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 70px 18px 30px;
}

/* top logo centered */
.footer2-brand {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.footer2-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.footer2-brand-sub {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* 5 columns like home screenshot */
.footer2-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 0.8fr;
  gap: 44px;
  align-items: start;
}

/* left paragraph column */
.footer2-about p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

/* headings (gold) */
.footer2-heading {
  color: var(--tan2);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* lists */
.footer2-list,
.footer2-quick {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer2-list li,
.footer2-quick li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(200, 215, 230, 0.92);
  font-weight: 500;
  font-size: 20px;
}

.footer2-list a,
.footer2-quick a {
  color: rgba(200, 215, 230, 0.92);
  text-decoration: none;
}

.footer2-list a:hover,
.footer2-quick a:hover {
  color: #fff;
}

/* contact + hours block */
.footer2-contact {
  display: grid;
  gap: 18px;
}

.footer2-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer2-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(120, 165, 205, 0.18);
  display: grid;
  place-items: center;
  color: rgba(200, 215, 230, 0.95);
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 18px;
}

.footer2-link {
  font-weight: 500;
  font-size: 22px;
  color: rgba(200, 215, 230, 0.95);
  line-height: 1.2;
  text-decoration: none;
}

.footer2-link:hover {
  color: #fff;
}

.footer2-title-sm {
  font-weight: 500;
  font-size: 22px;
  color: rgba(200, 215, 230, 0.95);
  line-height: 1.2;
}

.footer2-muted {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* bottom bar */
.footer2-bottom {
  max-width: 1200px;
  margin: 52px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer2-license {
  display: inline-block;
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer2 {
    padding: 60px 16px 28px;
  }

  .footer2-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer2-list li,
  .footer2-quick li {
    font-size: 18px;
  }

  .footer2-heading {
    font-size: 20px;
  }

  .footer2-about p {
    max-width: 100%;
  }
}

/* ===============================
   GALLERY CAROUSEL
================================ */
.gallery {
  background: #ffffff;
  padding: 90px 18px 95px;
}

.gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 18px;
}

.gallery-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 40px;
  border-radius: 999px;
  opacity: 0.95;
}

/* shell */
.gallery-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* track */
.gallery-track {
  width: min(1100px, 100%);
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 6px;
}

/* slides */
.gallery-slide {
  flex: 0 0 460px;
  /* ⬅ wider cards */
  scroll-snap-align: start;
}

.gallery-slide img {
  width: 100%;
  height: 300px;
  /* ⬅ taller images */
  object-fit: cover;
  border-radius: 18px;
}

/* arrows */
.gallery-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, background 0.15s ease;
  user-select: none;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.65);
}

.gallery-arrow:active {
  transform: translateY(0px);
}

.gallery {
  padding-bottom: 40px;
  /* ⬅ was probably 80–100px */
}

@media (max-width: 980px) {
  .gallery-title {
    font-size: 34px;
    letter-spacing: 1.4px;
  }

  .gallery-slide img {
    height: 420px;
  }
}

@media (max-width: 520px) {
  .gallery {
    padding: 70px 14px 80px;
  }

  .gallery-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .gallery-slide img {
    height: 320px;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
}

/* Hero */
.compagehero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.compagehero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

.compagehero-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compagehero-panel {
  width: min(980px, 100%);
  margin-top: 60px;
  background: var(--panel);
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  padding: 38px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.compagehero-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.compagehero-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin: 0;
}

.compagehero-sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #5a5a5a;
}

.compagehero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* Intro */
.comintro {
  background: #ffffff;
  padding: 80px 18px 80px;
}

.comintro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.comintro-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.comintro-divider {
  width: 120px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.comintro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #5a5a5a;
}

/* Services */
.comservices {
  background: #f4f5f6;
  padding: 85px 18px 95px;
}

.comservices-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comservices-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.comservices-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 44px;
  border-radius: 999px;
  opacity: 0.95;
}

.comservices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.comservice-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.comservice-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comservice-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(63, 106, 138, 0.12);
  color: #3f6a8a;
  font-size: 18px;
}

.comservice-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f2a36;
}

.comservice-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
}

/* Feature block (image + text) */
.comfeature {
  background: #ffffff;
  padding: 95px 18px;
}

.comfeature-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.comfeature-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.comfeature-content {
  text-align: left;
}

.comfeature-kicker {
  color: var(--tan2);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

.comfeature-title {
  color: #4b6f8c;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.comfeature-divider {
  width: 160px;
  height: 3px;
  background: var(--tan2);
  margin: 22px 0 22px;
  border-radius: 999px;
}

.comfeature-text {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.comfeature-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 26px;
  display: grid;
  gap: 10px;
}

.comfeature-list li {
  color: #2f2f2f;
  font-weight: 500;
  font-size: 16px;
}

.comfeature-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===============================
   COM FAQ (matches screenshot)
================================ */
.comfaq {
  background: #c7b58a;
  /* your tan */
  padding: 80px 18px;
}

.comfaq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 44px;
  align-items: center;
}

/* Left panel */
.comfaq-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.comfaq-badge {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 54px;
  font-weight: 700;
}

.comfaq-lefttitle {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

/* Right side accordion */
.comfaq-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Use <details> as the accordion cards */
.comfaq-acc {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* remove default marker */
.comfaq-acc>summary {
  list-style: none;
}

.comfaq-acc>summary::-webkit-details-marker {
  display: none;
}

.comfaq-q {
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  color: #3f6a8a;
  /* blue-grey like screenshot */
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 14px;
}

.comfaq-plus {
  font-size: 22px;
  font-weight: 400;
  color: #3f6a8a;
  line-height: 1;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.comfaq-a {
  padding: 0 20px 18px;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
}

/* rotate plus when open */
.comfaq-acc[open] .comfaq-plus {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 980px) {
  .comfaq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comfaq-lefttitle {
    font-size: 38px;
  }

  .comfaq {
    padding: 70px 16px;
  }
}

@media (max-width: 520px) {
  .comfaq-lefttitle {
    font-size: 32px;
  }

  .comfaq-badge {
    width: 96px;
    height: 96px;
    font-size: 44px;
  }

  .comfaq-q {
    font-size: 13px;
    padding: 16px 16px;
  }

  .comfaq-a {
    padding: 0 16px 16px;
  }
}

/* Quote anchor */
.comquote {
  background: #f4f5f6;
  /* light grey */
  padding: 85px 18px 95px;
}

.comquote-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.comquote-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.comquote-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 26px;
  border-radius: 999px;
}

.comquote-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
}

.comquote-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}



/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  background: #ffffff;
  padding: 90px 18px 100px;
}

.about-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-section h1 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 22px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 18px;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section {
  background: #f4f5f6;
  padding: 90px 18px 100px;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 40px;
}

/* FAQ items */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3f6a8a;
  margin: 0 0 10px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  margin: 0;
}



/* ===============================
   ABOUT PAGE STYLES
================================ */

/* HERO */
.abhero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.abhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

.abhero-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abhero-panel {
  width: min(980px, 100%);
  margin-top: 60px;
  background: var(--panel);
  border: 1px solid var(--panelBorder);
  border-radius: 14px;
  padding: 38px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.abhero-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0.85;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.abhero-title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin: 0;
}

.abhero-sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #5a5a5a;
}

.abhero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ABOUT INTRO */
.aboutintro {
  background: #ffffff;
  padding: 80px 18px;
}

.aboutintro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.aboutintro-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.aboutintro-divider {
  width: 120px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.aboutintro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #5a5a5a;
}

.aboutintro-highlights {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.aboutintro-chip {
  background: #f4f5f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2a36;
}

/* VALUES */
.aboutvalues {
  background: #f4f5f6;
  padding: 85px 18px 95px;
}

.aboutvalues-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.aboutvalues-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.aboutvalues-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 44px;
  border-radius: 999px;
  opacity: 0.95;
}

.aboutvalues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}

.aboutvalue-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.aboutvalue-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f2a36;
}

.aboutvalue-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
}

/* ===============================
   ABOUT FAQ (own classes, same look)
================================ */
.abfaq {
  background: #c7b58a;
  padding: 80px 18px;
}

.abfaq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 44px;
  align-items: center;
}

.abfaq-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.abfaq-badge {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 54px;
  font-weight: 700;
}

.abfaq-lefttitle {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

.abfaq-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abfaq-acc {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* remove default marker */
.abfaq-acc>summary {
  list-style: none;
}

.abfaq-acc>summary::-webkit-details-marker {
  display: none;
}

.abfaq-q {
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #3f6a8a;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 14px;
}

.abfaq-plus {
  font-size: 22px;
  font-weight: 400;
  color: #3f6a8a;
  line-height: 1;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.abfaq-a {
  padding: 0 20px 18px;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
}

/* rotate plus when open */
.abfaq-acc[open] .abfaq-plus {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .abhero-title {
    font-size: 34px;
  }

  .aboutvalues-grid {
    grid-template-columns: 1fr;
  }

  .abfaq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .abfaq-lefttitle {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .abhero-panel {
    padding: 28px 18px;
  }

  .aboutintro-title {
    font-size: 28px;
  }

  .aboutvalues-title {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .abfaq-lefttitle {
    font-size: 32px;
  }

  .abfaq-badge {
    width: 96px;
    height: 96px;
    font-size: 44px;
  }

  .abfaq-q {
    font-size: 13px;
    padding: 16px 16px;
  }

  .abfaq-a {
    padding: 0 16px 16px;
  }
}




/* ===============================
   CONTACT (Formspree)
================================ */
.contact2 {
  background: #f4f5f6;
  /* light grey like your sections */
  padding: 90px 18px 95px;
}

.contact2-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact2-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4b6f8c;
  margin-bottom: 16px;
}

.contact2-divider {
  width: 140px;
  height: 3px;
  background: var(--tan2);
  margin: 0 auto 24px;
  border-radius: 999px;
  opacity: 0.95;
}

.contact2-lead {
  max-width: 820px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
}

/* Layout */
.contact2-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}

/* Left info */
.contact2-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.contact2-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 0;
}

.contact2-ico {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(63, 106, 138, 0.12);
  color: #3f6a8a;
  font-size: 18px;
}

.contact2-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f2a36;
  margin-bottom: 6px;
}

.contact2-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: #3f6a8a;
}

.contact2-link:hover {
  text-decoration: underline;
}

.contact2-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
}

.contact2-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(31, 42, 54, 0.75);
}

/* Right form */
.contact2-formcard {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.contact2-form {
  width: 100%;
}

.contact2-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact2-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f2a36;
  margin-bottom: 8px;
}

.contact2-field input,
.contact2-field select,
.contact2-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  padding: 12px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.contact2-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact2-field input:focus,
.contact2-field select:focus,
.contact2-field textarea:focus {
  border-color: rgba(63, 106, 138, 0.55);
  box-shadow: 0 0 0 3px rgba(63, 106, 138, 0.12);
}

/* Full width field */
.contact2-field-full {
  grid-column: 1 / -1;
}

/* Submit */
.contact2-submit {
  margin-top: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.contact2-submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.contact2-submit:active {
  transform: translateY(0px);
}

.contact2-privacy {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(31, 42, 54, 0.65);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .contact2-grid {
    grid-template-columns: 1fr;
  }

  .contact2-title {
    font-size: 34px;
    letter-spacing: 1.4px;
  }
}

@media (max-width: 520px) {
  .contact2 {
    padding: 70px 14px 80px;
  }

  .contact2-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .contact2-fields {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   AREA PAGES (Shared Styles)
================================ */

.area-hero {
  background: #f4f5f6;
  padding: 110px 18px 90px;
  text-align: center;
}

.area-hero h1 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.area-hero p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: #5a5a5a;
}

.area-section {
  padding: 90px 18px;
  background: #ffffff;
}

.area-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.area-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #4b6f8c;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.area-divider {
  width: 140px;
  height: 3px;
  background: #c7b58a;
  margin-bottom: 28px;
}

.area-text {
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 36px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
  font-size: 16px;
  color: #2f2f2f;
  font-weight: 500;
}

.area-footer {
  background: #2f2f2f;
  color: #ffffff;
  padding: 70px 18px;
  text-align: center;
}

.area-footer p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .area-list {
    grid-template-columns: 1fr;
  }

  .area-hero h1 {
    font-size: 34px;
  }
}

.meta-title-small {
  font-size: 0.85rem;
  font-weight: 500;
  word-break: break-word;
  /* helps on mobile */
}