/* ============================================================
   DS Blinds — Premium Custom Blinds Michigan
   styles.css — Clean rewrite
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --gold:       #b58a2f;
  --gold-light: #d4aa52;
  --gold-pale:  #f5edda;
  --dark:       #1a1a1a;
  --charcoal:   #111;
  --mid:        #555;
  --gray:       #9a9a9a;
  --border:     #e5dfd6;
  --light:      #f7f5f1;
  --white:      #ffffff;
  --max:        1200px;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ---- Typography ---- */
h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; line-height: 1.1; }
h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.15; }
h3 { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
p { color: var(--mid); line-height: 1.75; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.topbar { padding: 14px 0 12px; }
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
.topbar-icon { height: 18px; width: auto; opacity: 0.55; }
.topbar-center { display: flex; justify-content: center; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 66px; width: auto; display: block; }
.topbar-right { display: flex; justify-content: flex-end; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: filter var(--transition);
}
.phone-pill:hover { filter: brightness(1.1); }
.phone-icon { height: 15px; width: 15px; }

.main-nav {
  border-top: 1px solid var(--border);
  padding: 11px 0 13px;
}
.main-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-active { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }

/* ============================================================
   HERO — CSS background, content anchored left
   ============================================================ */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* dark gradient fallback if image missing */
  background-color: #2e2e2e;
  z-index: 0;
}

/* Dark overlay — left-heavy so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

/* Content sits on the left */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  margin-left: clamp(28px, 10vw, 140px);
  padding: 60px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-content h1 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 14px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Hero Form */
.hero-form {
  background: rgba(255,255,255,0.97);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.hero-form > h3 {
  color: var(--dark);
  margin-bottom: 14px;
}
.form-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.form-row { display: flex; gap: 10px; }
.hero-form input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
}
.hero-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,138,47,0.1); }
.hero-form input::placeholder { color: #aaa; }

.btn {
  width: 100%;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  display: block;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--charcoal); padding: 16px 24px; }
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.trust-item strong { color: #fff; }
.trust-icon { font-size: 16px; }

/* ============================================================
   FEATURE SECTIONS (homepage product rows)
   ============================================================ */
.feature-section { padding: 76px 24px; background: var(--white); }
.feature-section:nth-of-type(odd) { background: var(--light); }

.feature-content {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-image:hover { transform: scale(1.018); box-shadow: 0 20px 56px rgba(0,0,0,0.16); }

.feature-text h2 { margin-bottom: 18px; color: var(--dark); }
.feature-text p { font-size: 15.5px; margin-bottom: 14px; }
.feature-text p:last-of-type { margin-bottom: 0; }
.feature-text p strong { color: var(--gold); font-weight: 600; }
.feature-text a.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--transition);
}
.feature-text a.feature-cta:hover { gap: 14px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero-simple {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 36px;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero-inner h1 { margin: 8px 0 10px; }
.page-hero-inner p { color: var(--mid); font-size: 16px; max-width: 600px; }
.page-hero-inner strong { color: var(--dark); }

.breadcrumb {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.breadcrumb a { color: var(--gold); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-page-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 48px 24px 80px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f7f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 12px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
}
.product-card-body p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.card-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.product-card-cta { background: var(--dark); border-color: var(--dark); justify-content: center; }
.product-card-cta .product-card-body { text-align: center; padding: 32px; justify-content: center; }
.product-card-cta h3 { color: #fff; font-size: 17px; margin-bottom: 12px; }
.product-card-cta p { color: rgba(255,255,255,0.68); }
.product-card-cta .card-link { color: var(--gold-light); margin-top: 16px; }
.cta-card-icon { font-size: 28px; margin-bottom: 12px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 24px 80px;
}
.product-page-img .breadcrumb { margin-bottom: 14px; }
.product-page-info h1 { margin: 0 0 14px; }
.product-intro { font-size: 15.5px; color: var(--mid); line-height: 1.8; margin-bottom: 26px; }

.product-features {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.product-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 16px;
}
.product-feature:last-child { border-bottom: none; }
.product-feature strong { color: var(--dark); font-weight: 600; white-space: nowrap; }
.product-feature span { color: var(--mid); text-align: right; }

.product-quote-form h3 { color: var(--gold); margin-bottom: 14px; }
.product-quote-form input,
.product-quote-form textarea {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
}
.product-quote-form input:focus,
.product-quote-form textarea:focus { outline: none; border-color: var(--gold); }
.product-quote-form .form-row { display: flex; gap: 10px; }
.product-quote-form .form-row input { margin-bottom: 10px; }
.product-quote-form textarea { resize: vertical; }

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.areas-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.areas-region { margin-bottom: 44px; }
.areas-region h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--dark);
}
.area-chip.home-base {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: #7a5c1a;
  font-weight: 500;
}
.areas-cta-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  margin-top: 8px;
}
.areas-cta-box h3 { font-size: 1.2rem; color: #fff; font-weight: 600; letter-spacing: 0; text-transform: none; margin-bottom: 10px; }
.areas-cta-box p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 24px; }
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 6px;
  transition: filter var(--transition);
}
.btn-gold:hover { filter: brightness(1.1); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 4px 6px;
  transition: background var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.contact-card-icon { font-size: 20px; flex-shrink: 0; }
.contact-card strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.contact-card span { font-size: 13px; font-weight: 500; color: var(--dark); }
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition);
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { outline: none; border-color: var(--gold); }
.contact-form-wrap .form-row { display: flex; gap: 12px; }
.contact-form-wrap .form-row input { margin-bottom: 12px; }
.contact-form-wrap textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  line-height: 1.9;
}
footer strong { color: rgba(255,255,255,0.85); }
footer a { color: var(--gold-light); }

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.form-success { margin-top: 10px; font-size: 13px; color: var(--dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   RESPONSIVE & MOBILE
   ============================================================ */

/* ---- Tablet (900px and below) ---- */
/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

/* ---- Tablet (900px) ---- */
@media (max-width: 900px) {
  .topbar-inner { gap: 8px; }
  .topbar-left { font-size: 11px; gap: 6px; }
  .topbar-icon { height: 14px; }
  .brand-logo { height: 54px; }
  .phone-pill { font-size: 13px; padding: 9px 16px; gap: 6px; }
  .phone-icon { height: 14px; width: 14px; }
  .main-nav-inner { gap: 22px; }
  .nav-link { font-size: 12px; }

  .hero { min-height: 620px; }
  .hero-content { margin-left: 0; padding: 36px 24px; max-width: 100%; }
  .hero-overlay { background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.55) 100%); }
  .hero-content h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .hero-form { max-width: 100%; }

  .feature-section { padding: 48px 20px; }
  .feature-content { grid-template-columns: 1fr; gap: 24px; }
  .feature-content-reverse .feature-image { order: -1; }
  .feature-image { height: 280px; }

  .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 32px 20px 60px; }
  .product-page-wrap { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px 60px; }
  .contact-info-cards { grid-template-columns: 1fr; gap: 10px; }
  .contact-form-wrap .form-row { flex-direction: column; }
  .areas-cta-box { padding: 28px 20px; }
}

/* ---- Mobile (600px) ---- */
@media (max-width: 600px) {

  /* ======================================================
     HEADER — Clean 2-row mobile layout
     Row 1 (topbar): Logo center | phone icon right
     Row 2 (nav):    Hidden behind hamburger
     ====================================================== */

  .site-header { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

  /* Topbar becomes: logo left-center, actions right */
  .topbar { padding: 0; }
  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 0;
  }

  /* Hide location text on mobile */
  .topbar-left { display: none; }

  /* Logo */
  .topbar-center { flex: 1; display: flex; justify-content: flex-start; padding-left: 4px; }
  .brand-logo { height: 46px; width: auto; }

  /* Phone icon button — round gold circle, icon only */
  .topbar-right { flex-shrink: 0; }
  .phone-pill {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  /* Hide the phone number text, keep icon */
  .phone-pill span.phone-number { display: none; }
  .phone-icon { height: 18px; width: 18px; }

  /* ---- HAMBURGER NAV ---- */
  .main-nav {
    position: relative;
    border-top: 1px solid var(--border);
    padding: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 300;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.28s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* "MENU" label next to hamburger */
  .main-nav::before {
    content: 'MENU';
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--mid);
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Collapsed nav drawer */
  .main-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
    border-top: none;
  }
  .main-nav-inner.open {
    max-height: 500px;
    padding: 8px 20px 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-link::before { content: '—'; color: var(--gold); font-size: 12px; }
  .nav-link:last-child { border-bottom: none; }
  .nav-active { color: var(--gold) !important; }
  .nav-active::before { content: '●'; font-size: 8px; }

  /* ---- Hero ---- */
  .hero { min-height: 100svh; max-height: 800px; }
  .hero-content { padding: 32px 20px 36px; }
  .hero-content h1 { font-size: clamp(1.75rem, 8vw, 2.2rem); margin-bottom: 10px; line-height: 1.15; }
  .hero-content > p { font-size: 14px; margin-bottom: 22px; line-height: 1.65; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-eyebrow span { font-size: 10px; letter-spacing: 0.14em; }
  .hero-overlay { background: linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.80) 50%, rgba(0,0,0,0.65) 100%); }

  /* Hero form — clean card */
  .hero-form {
    padding: 20px 18px 22px;
    border-radius: 12px;
    max-width: 100%;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .hero-form > h3 { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 14px; }
  .form-row { flex-direction: column; gap: 10px; }
  .hero-form input { padding: 13px 14px; font-size: 15px; border-radius: 8px; }
  .btn { font-size: 13px; padding: 15px; border-radius: 8px; letter-spacing: 0.1em; }

  /* ---- Trust bar ---- */
  .trust-bar { padding: 16px; }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    justify-items: start;
  }
  .trust-item { font-size: 11px; gap: 6px; }
  .trust-icon { font-size: 14px; }

  /* ---- Features ---- */
  .feature-section { padding: 36px 18px; }
  .feature-content { gap: 22px; }
  .feature-image { height: 220px; border-radius: 10px; }
  .feature-text h2 { font-size: 1.65rem; margin-bottom: 10px; }
  .feature-text p { font-size: 14.5px; margin-bottom: 10px; }
  .feature-text a.feature-cta { font-size: 11px; margin-top: 14px; }

  /* ---- Products grid ---- */
  .products-page-grid { grid-template-columns: 1fr; gap: 18px; padding: 24px 16px 50px; }
  .product-card-img { height: 210px; }
  .product-card-body { padding: 18px; }
  .product-card-body h3 { font-size: 15px; }

  /* ---- Product detail ---- */
  .product-page-wrap { padding: 24px 16px 50px; gap: 20px; }
  .product-page-info h1 { font-size: 1.9rem; }
  .product-intro { font-size: 14.5px; }
  .product-feature { padding: 11px 14px; font-size: 13.5px; }
  .product-quote-form { padding: 20px 18px; border-radius: 12px; }
  .product-quote-form input,
  .product-quote-form textarea { padding: 13px 14px; font-size: 15px; }
  .product-quote-form .form-row { flex-direction: column; }

  /* ---- Page hero simple ---- */
  .page-hero-simple { padding: 28px 0 22px; }
  .page-hero-inner h1 { font-size: 1.85rem; }
  .page-hero-inner p { font-size: 14.5px; }

  /* ---- Service areas ---- */
  .areas-page { padding: 28px 16px 50px; }
  .areas-region h2 { font-size: 1.2rem; }
  .area-chip { font-size: 12.5px; padding: 7px 13px; }
  .btn-gold, .btn-outline { display: block; width: 100%; text-align: center; margin: 6px 0; box-sizing: border-box; }

  /* ---- Contact ---- */
  .contact-page { padding: 28px 16px 50px; }
  .contact-card { padding: 14px; }
  .contact-form-wrap input,
  .contact-form-wrap textarea { font-size: 15px; padding: 13px 14px; }

  /* ---- Footer ---- */
  footer { padding: 32px 18px; font-size: 12px; line-height: 2.1; }
}

/* ---- Very small (380px) ---- */
@media (max-width: 380px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.6rem; }
}

/* ============================================================
   GUIDE / RESOURCE PAGE
   ============================================================ */
.guide-wrap { max-width: 860px; margin: 0 auto; padding: 48px 28px 80px; }
.guide-section { margin-bottom: 60px; }
.guide-section h2 { font-family: var(--serif); font-size: 1.9rem; color: var(--dark); margin-bottom: 14px; }
.guide-section > p { color: var(--mid); font-size: 15px; margin-bottom: 28px; }

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th { background: var(--dark); color: #fff; padding: 12px 16px; text-align: left; font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #faf9f6; }
.comparison-table a { color: var(--gold); font-weight: 600; text-decoration: none; }
.comparison-table a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin: 0 0 10px; }
.faq-item p { color: var(--mid); font-size: 15px; line-height: 1.7; margin: 0; }
.faq-item p a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* Guide CTA */
.guide-cta-section { margin-top: 20px; }
.guide-cta-box { background: var(--dark); color: #fff; border-radius: 14px; padding: 48px 40px; text-align: center; }
.guide-cta-box h2 { font-family: var(--serif); font-size: 2rem; color: #fff; margin-bottom: 12px; }
.guide-cta-box p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .guide-wrap { padding: 28px 16px 60px; }
  .guide-section h2 { font-size: 1.5rem; }
  .guide-cta-box { padding: 32px 20px; }
  .guide-cta-box h2 { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn, .cta-buttons .btn-outline-light { width: 100%; text-align: center; box-sizing: border-box; }
}
