/* ============================================================
   HOMECRAFT — Brand Stylesheet
   Warm Minimalism | Premium | Architectural
   ============================================================ */

/* BRAND TOKENS */
:root {
  /* Core Brand Colors */
  --charcoal:        #2C2C2C;
  --charcoal-deep:   #1E1E1E;
  --charcoal-mid:    #3D3D3D;
  --taupe:           #A89F91;
  --taupe-light:     #C4BDB4;
  --taupe-dark:      #8C8277;
  --ivory:           #FAF9F7;
  --ivory-deep:      #F3F1ED;
  --ivory-mid:       #EDE9E3;
  --white:           #FFFFFF;

  /* Semantic Aliases */
  --primary:         var(--charcoal);
  --primary-deep:    var(--charcoal-deep);
  --accent:          var(--taupe);
  --accent-light:    var(--taupe-light);
  --accent-dark:     var(--taupe-dark);
  --bg-light:        var(--ivory);
  --bg-mid:          var(--ivory-deep);
  --bg-warm:         var(--ivory-mid);

  /* Text */
  --text-dark:       var(--charcoal);
  --text-body:       #4A4845;
  --text-muted:      #7A7672;
  --text-light:      #A89F91;

  /* Borders */
  --border:          #E4E0DA;
  --border-light:    #EDEBE7;
  --border-warm:     #D6D1CA;

  /* Shadows — warm, soft */
  --shadow-xs:   0 1px 4px rgba(44,44,44,0.06);
  --shadow-sm:   0 2px 10px rgba(44,44,44,0.08);
  --shadow-md:   0 6px 24px rgba(44,44,44,0.10);
  --shadow-lg:   0 12px 48px rgba(44,44,44,0.12);
  --shadow-xl:   0 24px 72px rgba(44,44,44,0.14);

  /* Radius */
  --r-xs:  2px;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Inter', system-ui, sans-serif;

  /* Layout */
  --header-h:    110px;
  --transition:  all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ============================================================ TOP BAR */
.topbar {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.6rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.topbar-left a, .topbar-left span {
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 0.45rem;
  transition: var(--transition);
  text-transform: uppercase;
}
.topbar-left a:hover { color: var(--taupe-light); }
.topbar-right { display: flex; gap: 0.75rem; }
.topbar-right a {
  color: rgba(255,255,255,0.45);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 0.8rem;
}
.topbar-right a:hover { color: var(--taupe-light); background: rgba(255,255,255,0.08); }

/* ============================================================ HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-h);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 88px;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── LOGO ── */
.logo-link {
  display: flex; align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
/* Real logo image — header */
.header-logo-img {
  height: 96px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}
.header.scrolled .header-logo-img {
  height: 78px;
}
/* Footer logo — invert to show on dark charcoal background */
.footer-logo {
  margin-bottom: 1.5rem;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Invert white bg to transparent-ish on dark: use brightness filter */
  filter: brightness(0) invert(1) opacity(0.82);
}
/* Keep old text classes for any fallback */
.logo-text {
  display: flex; flex-direction: column;
  gap: 0.15rem;
}
.logo-main {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── NAVIGATION ── */
.nav-list {
  display: flex; align-items: center; gap: 0;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--charcoal);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}
.nav-link .fa-chevron-down {
  font-size: 0.6rem;
  transition: var(--transition);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--taupe);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 100;
}
.has-dropdown.open .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.has-dropdown.open .fa-chevron-down { transform: rotate(180deg); }
.dropdown li a {
  display: flex; align-items: center;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--ivory);
  color: var(--charcoal);
  padding-left: 1.5rem;
}

/* ── HEADER ACTIONS ── */
.header-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-shrink: 0;
}
.btn-portal {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  border: 1.5px solid var(--charcoal);
  position: relative;
  overflow: hidden;
}
.btn-portal::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-portal span { position: relative; z-index: 1; }
.btn-portal:hover::before { transform: scaleX(1); }
.btn-portal:hover { border-color: var(--taupe); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { border-color: var(--taupe); }
.btn-primary.btn-large { padding: 1.1rem 2.8rem; font-size: 0.8rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--charcoal);
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* ============================================================ SECTION COMPONENTS */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--taupe);
}
.section-label.light { color: var(--taupe-light); }
.section-label.light::before { background: var(--taupe-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* IMG PLACEHOLDERS */
.img-placeholder {
  background: var(--ivory-mid);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: var(--taupe-light);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Architectural scratch lines */
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(168,159,145,0.08) 12px,
      rgba(168,159,145,0.08) 13px
    );
}
.img-placeholder i { font-size: 2.2rem; opacity: 0.5; position: relative; }
.img-placeholder span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; position: relative; }
.img-placeholder.large  { height: 380px; }
.img-placeholder.xlarge { height: 500px; }
.img-placeholder.medium { height: 230px; }

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 94vh;
  background: var(--charcoal);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
/* Architectural geometric pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 60px,
      rgba(168,159,145,0.04) 60px,
      rgba(168,159,145,0.04) 61px
    ),
    repeating-linear-gradient(
      30deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.025) 80px,
      rgba(255,255,255,0.025) 81px
    );
  z-index: 1;
  pointer-events: none;
}
.hero-overlay { display: none; }

/* Split layout wrapper */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  gap: 4rem;
  min-height: 94vh;
}

/* LEFT — text side */
.hero-content {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(168,159,145,0.35);
  color: var(--taupe-light);
  padding: 0.4rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--taupe);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--taupe-light); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}
.stat { padding: 0 2.5rem 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 0.25rem 2.5rem 0.25rem 0;
}

/* RIGHT — photo side */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 4rem 0;
  overflow: visible;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-photo {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) contrast(1.02);
  border-radius: 2px;
}
.hero-photo-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(44,44,44,0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 2px;
}
/* Decorative taupe border accent — offset frame */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  top: -1rem; right: -1rem;
  bottom: 1rem; left: 1rem;
  border: 1.5px solid rgba(168,159,145,0.35);
  z-index: 0;
  pointer-events: none;
  border-radius: 2px;
}
/* Badge card on photo */
.hero-photo-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  padding: 0.85rem 1.2rem;
  display: flex; align-items: center; gap: 0.85rem;
  box-shadow: var(--shadow-xl);
  z-index: 3;
  border-left: 3px solid var(--taupe);
}
.hero-photo-badge i { font-size: 1.3rem; color: var(--taupe); flex-shrink: 0; }
.hero-photo-badge strong { display: block; font-size: 0.82rem; color: var(--charcoal); font-weight: 700; letter-spacing: 0.05em; }
.hero-photo-badge span { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem; display: block; }

/* Scroll hint — removed in new layout, keep for possible future use */
.hero-scroll { display: none; }

/* ============================================================ TRUST BAR */
.trust-bar {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.trust-items {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--taupe); font-size: 0.9rem; }

/* ============================================================ INTRO */
.intro-section { padding: 8rem 0; background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.intro-text .section-title { margin-bottom: 1.5rem; }
.intro-text p {
  color: var(--text-body); line-height: 1.9;
  margin-bottom: 1.25rem; font-size: 0.975rem; font-weight: 300;
}
.intro-text .btn-primary { margin-top: 0.75rem; }
.intro-visual { position: relative; }
.intro-img-main { overflow: hidden; border-radius: 0; position: relative; }
.intro-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.intro-img-main:hover .intro-photo { transform: scale(1.03); }
.intro-badge-card {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.intro-badge-card i { font-size: 1.4rem; color: var(--taupe); }
.intro-badge-card strong { display: block; font-size: 0.82rem; color: var(--charcoal); font-weight: 700; letter-spacing: 0.05em; }
.intro-badge-card span { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; display: block; }
.intro-img-secondary {
  position: absolute; top: -2rem; right: -2rem;
  width: 42%; overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ============================================================ SERVICES GRID */
.services-section { padding: 8rem 0; background: var(--ivory); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Architectural scratch lines on hover */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 12px,
    rgba(168,159,145,0.06) 12px,
    rgba(168,159,145,0.06) 13px
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--taupe);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--ivory); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card--featured {
  background: var(--charcoal);
  border: none;
}
.service-card--featured:hover { background: var(--charcoal-mid); }
.service-card--featured .service-icon,
.service-card--featured h3,
.service-card--featured p { color: var(--white); }
.service-card--featured .service-link { color: var(--taupe-light); }
.service-card--featured::before {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 12px,
    rgba(255,255,255,0.04) 12px,
    rgba(255,255,255,0.04) 13px
  );
}
.service-card--featured::after { background: var(--taupe); }
.service-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-card-label::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--taupe);
}
.service-card--featured .service-card-label { color: var(--taupe-light); }
.service-card--featured .service-card-label::before { background: var(--taupe-light); }
.service-icon { font-size: 1.6rem; color: var(--taupe); margin-bottom: 1.25rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.service-card h3 small {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.3rem;
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; flex: 1; font-weight: 300; }
.service-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--taupe-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 1rem; }
.services-cta { text-align: center; margin-top: 3.5rem; }

/* ============================================================ PROCESS */
.process-section {
  background: var(--charcoal);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(168,159,145,0.04) 40px,
    rgba(168,159,145,0.04) 41px
  );
}
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto; }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 5rem;
  position: relative; z-index: 1;
}
.process-step { flex: 1; padding: 0 2rem; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 2rem; right: -1px;
  width: 1px; height: calc(100% - 4rem);
  background: rgba(168,159,145,0.2);
}
.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(168,159,145,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.step-content p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; }
.process-connector { display: none; }

/* ============================================================ PROGRAMS */
.programs-section { padding: 8rem 0; background: var(--white); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.program-card { padding: 4rem; position: relative; overflow: hidden; }
.program-card.hostcare { background: var(--charcoal); }
.program-card.homeshield { background: var(--ivory); }
.program-icon { font-size: 2rem; color: var(--taupe); margin-bottom: 1rem; }
.program-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.program-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--taupe); }
.program-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.program-card.hostcare h3 { color: var(--white); }
.program-card.homeshield h3 { color: var(--charcoal); }
.program-card h3 span {
  color: var(--taupe); display: block;
  font-size: 0.8rem; font-family: var(--font-body);
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; margin-top: 0.4rem;
}
.program-card p { font-size: 0.9rem; line-height: 1.85; margin-bottom: 1.75rem; font-weight: 300; }
.program-card.hostcare p { color: rgba(255,255,255,0.65); }
.program-card.homeshield p { color: var(--text-muted); }
.program-features { margin-bottom: 2.5rem; }
.program-features li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid;
}
.program-card.hostcare .program-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.07); }
.program-card.homeshield .program-features li { color: var(--text-body); border-color: var(--border); }
.program-features li:last-child { border-bottom: none; }
.program-features li i { color: var(--taupe); flex-shrink: 0; font-size: 0.8rem; }

/* ============================================================ TESTIMONIALS */
.testimonials-section { padding: 8rem 0; background: var(--ivory); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.testimonial-card { background: var(--white); padding: 2.5rem; position: relative; }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-display); font-size: 6rem;
  color: var(--taupe); opacity: 0.12; line-height: 1;
}
.stars { color: var(--taupe); margin-bottom: 1.25rem; font-size: 0.8rem; letter-spacing: 0.15em; }
.testimonial-card p {
  font-size: 0.92rem; color: var(--text-body); line-height: 1.85;
  margin-bottom: 1.75rem; font-style: italic; font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: var(--taupe-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--charcoal); font-weight: 600; letter-spacing: 0.04em; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; display: block; }

/* ============================================================ BLOG PREVIEW */
.blog-preview-section { padding: 8rem 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.blog-card { background: var(--white); transition: var(--transition); overflow: hidden; }
.blog-card:hover { background: var(--ivory); }
.featured-blog { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-img-placeholder {
  background: var(--ivory-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--taupe-light); font-size: 2.5rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 12px,
    rgba(168,159,145,0.1) 12px,
    rgba(168,159,145,0.1) 13px
  );
}
.blog-img-placeholder i { position: relative; opacity: 0.5; }
.blog-card-img { position: relative; overflow: hidden; min-height: 220px; }
.featured-blog .blog-card-img { min-height: 100%; }
.blog-card-photo { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.featured-blog .blog-card-photo { height: 100%; min-height: 260px; }
.blog-card:hover .blog-card-photo { transform: scale(1.04); }
.blog-content { padding: 2.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 0.9rem; align-items: center; flex-wrap: wrap; }
.blog-cat {
  background: var(--charcoal); color: var(--white);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.25rem 0.7rem;
}
.blog-date { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; }
.blog-content h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 0.75rem; line-height: 1.25;
  letter-spacing: -0.01em;
}
.blog-content h3 a:hover { color: var(--taupe-dark); }
.blog-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; font-weight: 300; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 1rem; color: var(--taupe-dark); }

/* ============================================================ CTA BANNER */
.cta-banner {
  position: relative;
  background: var(--charcoal);
  padding: 7rem 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent, transparent 60px,
    rgba(168,159,145,0.04) 60px,
    rgba(168,159,145,0.04) 61px
  );
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,159,145,0.1) 0%, transparent 60%);
}
.cta-banner-overlay { display: none; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 500; color: var(--white);
  line-height: 1.12; margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.cta-content p {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 480px; margin: 0 auto 2.75rem;
  line-height: 1.85; font-weight: 300;
}
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================ FOOTER */
.footer { background: var(--charcoal-deep); }
.footer-top { padding: 6rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.82);
}
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--taupe); }
.footer-logo .logo-icon svg path { stroke: var(--taupe); }
.footer-col p {
  font-size: 0.875rem; color: rgba(255,255,255,0.4);
  line-height: 1.85; margin-bottom: 1.75rem; font-weight: 300;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--taupe); color: var(--taupe-light); }
.footer-col h4 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-col h4::before { content: ''; display: block; width: 16px; height: 1px; background: var(--taupe); }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.4);
  font-weight: 300; transition: var(--transition); letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: var(--taupe-light); padding-left: 6px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  color: rgba(255,255,255,0.4); font-size: 0.83rem;
  margin-bottom: 0.85rem; font-weight: 300;
}
.footer-contact li i { color: var(--taupe); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.8rem; }
.footer-contact li a { color: rgba(255,255,255,0.4); }
.footer-contact li a:hover { color: var(--taupe-light); }
.btn-footer-cta {
  display: inline-flex;
  background: transparent;
  color: var(--taupe-light);
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(168,159,145,0.35);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 1.5rem;
  transition: var(--transition);
}
.btn-footer-cta:hover { background: var(--taupe); color: var(--white); border-color: var(--taupe); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300; letter-spacing: 0.04em; }

/* ============================================================ PAGE HERO */
.page-hero {
  position: relative;
  background: var(--charcoal);
  padding: 6rem 0 4.5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(168,159,145,0.04) 40px,
    rgba(168,159,145,0.04) 41px
  );
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(168,159,145,0.1) 0%, transparent 55%);
}
.page-hero-overlay { display: none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500; color: var(--white);
  margin-bottom: 1rem; line-height: 1.08;
  letter-spacing: -0.02em;
}
.page-hero-content p {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.85; margin-bottom: 1.75rem; font-weight: 300;
}
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.breadcrumb a:hover { color: var(--taupe-light); }
.breadcrumb i { font-size: 0.55rem; }

/* ============================================================ SERVICES DETAIL */
.services-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 100;
}
.subnav-list { display: flex; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.subnav-list::-webkit-scrollbar { display: none; }
.subnav-list a {
  padding: 1.1rem 1.3rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: var(--transition);
}
.subnav-list a:hover, .subnav-list a.active { color: var(--charcoal); border-bottom-color: var(--taupe); }

.service-detail-section { padding: 8rem 0; }
.alt-bg { background: var(--ivory); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 56px; height: 56px; background: var(--ivory-mid);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--taupe); margin-bottom: 1.5rem;
}
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 1.25rem; line-height: 1.1; letter-spacing: -0.02em;
}
.service-lead {
  font-size: 1.05rem; color: var(--charcoal); font-weight: 500;
  line-height: 1.7; margin-bottom: 1rem;
}
.service-detail-content p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-weight: 300;
}
.service-features { margin: 1.75rem 0 2.25rem; }
.service-features li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem; color: var(--text-body);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--taupe); flex-shrink: 0; font-size: 0.75rem; }
.service-detail-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 1.75rem;
}
.ds { background: var(--white); padding: 1.25rem; text-align: center; }
.alt-bg .ds { background: var(--ivory); }
.ds span {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; color: var(--taupe-dark); line-height: 1;
}
.ds p { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; letter-spacing: 0.06em; font-weight: 400; }

/* Programs */
.program-section { padding: 8rem 0; }
.hostcare-section { background: var(--ivory); }
.homeshield-section { background: var(--white); }
.program-hero-content { max-width: 880px; margin: 0 auto; text-align: center; }
.program-hero-header { margin-bottom: 4rem; }
.program-icon-large { font-size: 3rem; color: var(--taupe); margin-bottom: 1.25rem; }
.program-tag-large {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--taupe);
  border: 1px solid rgba(168,159,145,0.35);
  padding: 0.4rem 1.2rem; display: inline-block; margin-bottom: 1.5rem;
}
.program-hero-content h2 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500; color: var(--charcoal); margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.program-hero-content h2 span {
  color: var(--taupe); font-size: 1rem;
  display: block; font-family: var(--font-body);
  font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.program-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 3rem; text-align: left; }
.pf-card { background: var(--white); padding: 1.75rem; transition: var(--transition); }
.hostcare-section .pf-card { background: var(--white); }
.homeshield-section .pf-card { background: var(--ivory); }
.pf-card:hover { background: var(--ivory-mid); }
.pf-card i { font-size: 1.3rem; color: var(--taupe); margin-bottom: 0.85rem; }
.pf-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.pf-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ============================================================ ABOUT */
.about-story { padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-visual { position: relative; }
.about-badge {
  position: absolute; bottom: -2rem; right: -1.5rem;
  background: var(--charcoal); padding: 1.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-badge-number {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 600; line-height: 1; color: var(--white);
}
.about-badge-text { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-light); margin-top: 0.4rem; }
.about-content .section-title { margin-bottom: 1rem; }
.lead-text { font-size: 1.05rem; font-weight: 500; color: var(--charcoal); line-height: 1.7; margin-bottom: 1.25rem; }
.about-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; font-weight: 300; }
.about-values { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.value-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: var(--ivory); }
.value-item i { color: var(--taupe); font-size: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 0.2rem; font-weight: 700; letter-spacing: 0.04em; }
.value-item span { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; }

.stats-section { padding: 5rem 0; background: var(--charcoal); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.stat-card { background: var(--charcoal); padding: 3rem 2rem; text-align: center; }
.stat-icon { font-size: 1.5rem; color: var(--taupe); margin-bottom: 1.25rem; }
.stat-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-title { font-size: 0.65rem; font-weight: 700; color: var(--taupe); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.85rem; }
.stat-card p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }

.why-section { padding: 8rem 0; background: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.why-card { background: var(--white); padding: 2.5rem; transition: var(--transition); }
.why-card:hover { background: var(--ivory); }
.why-icon {
  width: 48px; height: 48px; background: var(--ivory-mid);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--taupe); margin-bottom: 1.5rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

.team-section { padding: 8rem 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.team-card { background: var(--ivory); padding: 2.5rem; text-align: center; transition: var(--transition); }
.team-card:hover { background: var(--white); }
.team-avatar {
  width: 72px; height: 72px; background: var(--charcoal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--taupe); margin: 0 auto 1.25rem;
}
.team-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.35rem; font-weight: 600; }
.team-role { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 0.85rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.service-area-section { padding: 6rem 0; background: var(--ivory); text-align: center; }
.area-content h2 { font-family: var(--font-display); font-size: 2.8rem; color: var(--charcoal); margin-bottom: 1.25rem; line-height: 1.2; font-weight: 500; letter-spacing: -0.02em; }
.area-content p { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.85; font-weight: 300; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-bottom: 2.5rem; }
.area-tags span {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
}

/* ============================================================ BLOG */
.blog-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.filter-list { display: flex; overflow-x: auto; scrollbar-width: none; }
.filter-btn {
  padding: 1.1rem 1.25rem; background: none; border: none;
  border-bottom: 2px solid transparent; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  transition: var(--transition); white-space: nowrap; margin-bottom: -1px;
}
.filter-btn:hover, .filter-btn.active { color: var(--charcoal); border-bottom-color: var(--taupe); }

.blog-section { padding: 5rem 0 8rem; background: var(--ivory); }
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border: 1px solid var(--border);
}
.blog-featured-img { position: relative; overflow: hidden; min-height: 400px; }
.blog-featured-img .img-placeholder { height: 100%; min-height: 400px; border: none; }
.blog-featured-photo { width: 100%; height: 100%; min-height: 400px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-featured-card:hover .blog-featured-photo { transform: scale(1.04); }
.blog-featured-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--charcoal); color: var(--white);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
}
.blog-featured-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-content h2 {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--charcoal); margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.02em;
}
.blog-featured-content h2 a:hover { color: var(--taupe-dark); }
.blog-featured-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-weight: 300; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem; }
.tag { background: var(--ivory); border: 1px solid var(--border); color: var(--text-muted); padding: 0.2rem 0.7rem; font-size: 0.7rem; letter-spacing: 0.06em; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2px; }
.blog-post-card { background: var(--white); transition: var(--transition); overflow: hidden; }
.blog-post-card:hover { background: var(--ivory); }
.blog-post-img { position: relative; overflow: hidden; }
.blog-post-img .img-placeholder { height: 210px; border: none; }
.blog-post-photo { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-post-card:hover .blog-post-photo { transform: scale(1.04); }
.blog-post-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--charcoal); color: var(--white);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
}
.blog-post-content { padding: 1.75rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.blog-post-content h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.3; letter-spacing: -0.01em;
}
.blog-post-content h3 a:hover { color: var(--taupe-dark); }
.blog-post-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-weight: 300; }

.newsletter-section { padding: 4rem 0; background: var(--charcoal); }
.newsletter-box { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.newsletter-icon { font-size: 2rem; color: var(--taupe); flex-shrink: 0; }
.newsletter-content { flex: 1; min-width: 200px; }
.newsletter-content h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.35rem; }
.newsletter-content p { font-size: 0.875rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.newsletter-form { display: flex; gap: 0.5rem; flex-shrink: 0; }
.newsletter-form input {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.8rem 1.1rem; font-size: 0.85rem; width: 280px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; border-color: var(--taupe); }

/* ============================================================ ARTICLE */
.article-hero { padding: 5rem 0 3.5rem; }
.article-meta-hero { display: flex; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta-hero span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.article-section { padding: 5rem 0 8rem; background: var(--ivory); }
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.article-lead-img { margin-bottom: 0; }
.article-lead-img .img-placeholder { height: 400px; border: none; }
.article-body { background: var(--white); border: 1px solid var(--border); }
.article-content { padding: 3rem; }
.article-content h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin: 2.25rem 0 0.85rem; font-weight: 600; }
.article-content p { font-size: 0.95rem; color: var(--text-body); line-height: 1.9; margin-bottom: 1.25rem; font-weight: 300; }
.article-content ul, .article-content ol { margin: 0.75rem 0 1.5rem 1.5rem; }
.article-content li { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.5rem; font-weight: 300; }
.article-content a { color: var(--taupe-dark); border-bottom: 1px solid var(--taupe-light); transition: var(--transition); }
.article-content a:hover { color: var(--charcoal); }
.article-content strong { color: var(--charcoal); font-weight: 700; }
.article-tags { padding: 1.5rem 3rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.article-share { padding: 1.5rem 3rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; }
.article-share span { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.article-share a {
  width: 34px; height: 34px; background: var(--ivory);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted); transition: var(--transition);
}
.article-share a:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.article-sidebar { display: flex; flex-direction: column; gap: 1.5px; position: sticky; top: calc(var(--header-h) + 2rem); }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); padding: 1.75rem; }
.sidebar-widget h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 0.85rem; font-weight: 600; }
.sidebar-widget p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; font-weight: 300; }
.sidebar-links li { margin-bottom: 0; }
.sidebar-links a {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: var(--text-body);
  padding: 0.6rem 0; border-bottom: 1px solid var(--border-light);
  transition: var(--transition); letter-spacing: 0.02em;
}
.sidebar-links a:hover { color: var(--taupe-dark); padding-left: 6px; }
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links i { color: var(--taupe); font-size: 0.8rem; width: 14px; }
.sidebar-contact p { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; color: var(--text-body); margin-bottom: 0.6rem; }
.sidebar-contact i { color: var(--taupe); }
.sidebar-contact a:hover { color: var(--taupe-dark); }
.related-posts { margin-top: 5rem; }

/* ============================================================ CONTACT */
.contact-section { padding: 8rem 0; background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--charcoal); margin-bottom: 0.75rem; font-weight: 500; letter-spacing: -0.02em; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2.25rem; font-weight: 300; }
.contact-form { background: var(--white); border: 1px solid var(--border); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block; font-size: 0.68rem; font-weight: 700;
  color: var(--charcoal); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--ivory); border: 1px solid var(--border);
  padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); border-radius: 0; appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--taupe);
  background: var(--white); box-shadow: 0 0 0 3px rgba(168,159,145,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; font-weight: 300; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--taupe-dark); }
.form-check label { font-size: 0.78rem; font-weight: 300; text-transform: none; letter-spacing: 0; color: var(--text-muted); cursor: pointer; line-height: 1.6; }
.form-message { margin-top: 1rem; padding: 1rem 1.25rem; font-size: 0.85rem; }
.form-message.success { background: #f0f7f0; border-left: 3px solid #5a8a5a; color: #2d5a2d; }
.form-message.error { background: #faf0f0; border-left: 3px solid #8a5a5a; color: #5a2d2d; }

.contact-info-card { background: var(--white); border: 1px solid var(--border); padding: 2.25rem; margin-bottom: 2px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin-bottom: 1.75rem; font-weight: 600; }
.contact-info-items { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px; background: var(--ivory);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--taupe); flex-shrink: 0;
}
.ci-content { display: flex; flex-direction: column; }
.ci-content strong { font-size: 0.65rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.2rem; }
.ci-content a, .ci-content span { font-size: 0.85rem; color: var(--text-body); display: block; line-height: 1.5; font-weight: 300; }
.ci-content a:hover { color: var(--taupe-dark); }
.service-area-mini { margin-bottom: 1.75rem; }
.service-area-mini h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--charcoal); margin-bottom: 0.85rem; }
.area-tags-mini { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.area-tags-mini span { background: var(--ivory); border: 1px solid var(--border); color: var(--text-muted); padding: 0.2rem 0.65rem; font-size: 0.7rem; }
.contact-social h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--charcoal); margin-bottom: 0.85rem; }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-links a { display: flex; align-items: center; gap: 0.65rem; font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); font-weight: 300; }
.social-links a:hover { color: var(--taupe-dark); }
.why-contact-card { background: var(--charcoal); padding: 2.25rem; }
.why-contact-card h4 { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); margin-bottom: 1.75rem; font-weight: 500; }
.next-steps { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
.ns { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ns:last-child { border-bottom: none; }
.ns-num {
  width: 28px; height: 28px; background: rgba(168,159,145,0.2);
  border: 1px solid rgba(168,159,145,0.3); color: var(--taupe-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
  font-family: var(--font-display);
}
.ns strong { display: block; font-size: 0.82rem; color: var(--white); margin-bottom: 0.2rem; font-weight: 600; letter-spacing: 0.04em; }
.ns p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; font-weight: 300; }

.trust-row-section { padding: 3.5rem 0; background: var(--white); border-top: 1px solid var(--border); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.tr-item { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.75rem; border-right: 1px solid var(--border); transition: var(--transition); }
.tr-item:last-child { border-right: none; }
.tr-item:hover { background: var(--ivory); }
.tr-item i { font-size: 1.3rem; color: var(--taupe); flex-shrink: 0; }
.tr-item strong { display: block; font-size: 0.8rem; color: var(--charcoal); font-weight: 700; letter-spacing: 0.04em; }
.tr-item span { font-size: 0.72rem; color: var(--text-muted); font-weight: 300; margin-top: 0.15rem; display: block; }

/* ============================================================ ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.55s ease forwards; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps { gap: 0; }
}
@media (max-width: 960px) {
  .intro-grid, .about-grid, .service-detail-grid,
  .programs-grid, .contact-grid, .article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .article-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-blog { grid-column: auto; display: block; }
  .blog-posts-grid { grid-template-columns: 1fr 1fr; }
  .program-features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-step::after { display: none; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Hero stacks on tablet */
  .hero-inner { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 0; min-height: auto; }
  .hero-photo-wrap { padding: 0 0 3rem; }
  .hero-photo { max-height: 320px; }
  .hero-photo-frame { max-width: 100%; }
  .hero-content { padding: 5rem 0 2rem; }
  .hero-photo-badge { left: 0.75rem; bottom: 1rem; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header-logo-img { height: 76px; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1.75rem 2rem; display: none; flex-direction: column;
    box-shadow: var(--shadow-xl); z-index: 998;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link {
    padding: 1rem 0; border-bottom: 1px solid var(--border);
    border-radius: 0; justify-content: space-between;
    font-size: 0.8rem;
  }
  .nav-link::after { display: none; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--ivory); display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .hero { min-height: 88vh; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 0 2rem 0 0; }
  .services-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.5rem; }
  .trust-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .program-features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
}


/* ============================================================ SERVICE PHOTO GRIDS */
.svc-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.svc-photo-slot {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ivory);
  border: 1px dashed var(--border);
}
.svc-photo-slot.svc-photo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.svc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-photo-slot:hover .svc-photo { transform: scale(1.04); }
.svc-slot-ph {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--taupe);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.svc-slot-ph i { font-size: 1.8rem; opacity: 0.4; }
.svc-photo-slot.svc-slot-empty .svc-photo { display: none; }
.svc-photo-slot.svc-slot-empty .svc-slot-ph { display: flex; }

/* ============================================================ HOME PHOTO STRIP */
.photo-strip-section {
  padding: 5rem 0;
  background: var(--ivory);
}
.strip-more-link {
  color: var(--taupe);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.strip-more-link:hover { color: var(--charcoal); }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 2.5rem;
  align-items: start;
}
.strip-item { position: relative; overflow: hidden; border-radius: 2px; }
.strip-item.strip-tall { grid-row: span 2; }
.strip-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.strip-item:not(.strip-tall) .strip-img-wrap {
  aspect-ratio: 4/3;
}
.strip-item.strip-tall .strip-img-wrap {
  aspect-ratio: 3/5;
}
.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.strip-img-wrap.strip-ph .strip-img { display: none; }
.strip-ph-icon {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #f0ede8;
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strip-ph-icon i { font-size: 2rem; opacity: 0.35; }
.strip-img-wrap.strip-ph .strip-ph-icon { display: flex; }
.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.strip-item:hover .strip-img { transform: scale(1.06); }
.strip-item:hover .strip-overlay { opacity: 1; }
.strip-label {
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.strip-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================ PORTFOLIO PAGE */
.portfolio-filter-bar { display: none; }

.portfolio-section { padding: 4rem 0 6rem; }
.portfolio-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.portfolio-intro p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Unified photo grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pf-unified .pf-item { break-inside: avoid; }

.pf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pf-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ede8;
}
.pf-item.pf-tall .pf-img-wrap { aspect-ratio: 3/4; }
.pf-item.pf-wide .pf-img-wrap { aspect-ratio: 16/7; }
.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pf-card:hover .pf-img { transform: scale(1.05); }
.pf-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--taupe);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pf-placeholder i { font-size: 2.2rem; opacity: 0.35; }
.pf-img-wrap.pf-placeholder-active .pf-img { display: none; }
.pf-img-wrap.pf-placeholder-active .pf-placeholder { display: flex; }
/* Items with no img at all always show placeholder */
.pf-img-wrap:not(:has(img)) .pf-placeholder,
.pf-img-wrap:has(img + .pf-placeholder) .pf-placeholder { display: flex; }
.pf-img-wrap:not(:has(.pf-img)) .pf-placeholder { display: flex; }

.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-zoom {
  background: rgba(255,255,255,0.95);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.pf-zoom:hover { transform: scale(1.1); }
.pf-info {
  padding: 1rem 1.2rem 1.2rem;
}
.pf-cat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}
.pf-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.pf-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Portfolio CTA */
.portfolio-cta {
  margin-top: 4rem;
  text-align: center;
}
.portfolio-cta-inner {
  background: var(--charcoal);
  padding: 3.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.portfolio-cta-inner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ============================================================ LIGHTBOX */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pf-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.pf-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pf-lb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.pf-lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 9999;
}
.pf-lb-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}
.pf-lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 0.75rem;
}
.pf-lb-close, .pf-lb-prev, .pf-lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
  z-index: 10000;
}
.pf-lb-close:hover, .pf-lb-prev:hover, .pf-lb-next:hover { background: rgba(255,255,255,0.2); }
.pf-lb-close { top: 1.5rem; right: 1.5rem; }
.pf-lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.pf-lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* About page photo */
.about-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ============================================================ RESPONSIVE — PORTFOLIO */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .strip-item.strip-tall { grid-row: span 1; }
  .strip-item.strip-tall .strip-img-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .strip-item.strip-tall { grid-row: span 1; }
  .strip-item.strip-tall .strip-img-wrap { aspect-ratio: 4/3; }
  .svc-photo-grid { grid-template-columns: 1fr; }
  .svc-photo-slot.svc-photo-wide { grid-column: span 1; aspect-ratio: 4/3; }
}


/* ============================================================
   PROGRAM PAGES — HomeShield & HostCare Pro
   ============================================================ */

/* ---- PROGRAM HERO ---- */
.prog-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.prog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.homeshield-hero .prog-hero-bg { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1e1e1e 100%); }
.hostcare-hero   .prog-hero-bg { background: linear-gradient(135deg, #1a1515 0%, #2c2420 50%, #1e1a18 100%); }
.prog-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,159,145,0.08) 0%, transparent 65%);
}
.prog-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 80px, rgba(168,159,145,0.03) 80px, rgba(168,159,145,0.03) 81px),
    repeating-linear-gradient(35deg,  transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
}
.prog-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  padding: 8rem 0 6rem;
}
.prog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--taupe-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.prog-badge-dot {
  width: 6px; height: 6px;
  background: var(--taupe);
  border-radius: 50%;
  display: inline-block;
}
.prog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.prog-by {
  font-size: 0.38em;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: var(--font-primary);
}
.prog-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 480px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2.75rem;
}
.prog-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.prog-hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.pht-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 2rem;
}
.pht-item i { color: var(--taupe); font-size: 0.9rem; }
.pht-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  margin-right: 2rem;
}

/* Hero visual side */
.prog-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.prog-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  filter: brightness(0.88) contrast(1.05);
}
.prog-hero-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(168,159,145,0.15) 0%, rgba(168,159,145,0.05) 100%);
  border: 1px solid rgba(168,159,145,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(168,159,145,0.25);
}
.prog-hero-img-ph.hostcare-ph { color: rgba(168,159,145,0.25); }
/* Decorative offset border */
.prog-hero-img-frame::before {
  content: '';
  position: absolute;
  top: -1.2rem; right: -1.2rem;
  bottom: 1.2rem; left: 1.2rem;
  border: 1.5px solid rgba(168,159,145,0.25);
  border-radius: 2px;
  z-index: -1;
}
/* Floating info cards on the image */
.prog-floating-card {
  position: absolute;
  background: var(--white);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 2px;
  min-width: 190px;
  z-index: 4;
}
.prog-fc-1 { bottom: 3rem; left: -2.5rem; border-left: 3px solid var(--taupe); }
.prog-fc-2 { top: 2.5rem;  right: -2rem; border-left: 3px solid var(--charcoal); }
.prog-floating-card i { font-size: 1.2rem; color: var(--taupe); flex-shrink: 0; }
.prog-floating-card strong { display: block; font-size: 0.78rem; color: var(--charcoal); font-weight: 700; letter-spacing: 0.04em; }
.prog-floating-card span   { font-size: 0.67rem; color: var(--text-muted); }
.hostcare-fc { border-left-color: #b87d4b !important; }
.hostcare-fc i { color: #b87d4b; }

/* ---- PROBLEM SECTION ---- */
.prog-problem-section {
  padding: 6rem 0;
  background: var(--ivory);
}
.prog-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.prog-problem-text { padding-top: 0.5rem; }
.prog-pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 2px;
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pain-card > i {
  font-size: 1.3rem;
  color: var(--taupe);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hostcare-pain > i { color: #b87d4b; }
.pain-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.pain-card span   { font-size: 0.77rem; color: var(--text-muted); line-height: 1.65; }

/* ---- WHAT IT IS — FEATURE LIST ---- */
.prog-what-section {
  padding: 6rem 0;
  background: var(--white);
}
.prog-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.prog-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.prog-feature-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.pfi-icon {
  width: 46px;
  height: 46px;
  background: var(--ivory);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--taupe);
  flex-shrink: 0;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.prog-feature-item:hover .pfi-icon {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.hostcare-icon { color: #b87d4b; }
.prog-feature-item:hover .hostcare-icon { background: #b87d4b; border-color: #b87d4b; color: var(--white); }
.pfi-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.pfi-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Photo stack visual */
.prog-img-stack { position: relative; }
.prog-img-main {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.prog-stack-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}
.prog-img-ph {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0ede8;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  color: var(--taupe);
  opacity: 0.5;
  border-radius: 2px;
}
.prog-img-ph span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.prog-img-ph.small { font-size: 1.8rem; aspect-ratio: 4/2; }
.prog-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 48%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 3px solid var(--white);
}
.prog-stat-bubble {
  position: absolute;
  top: 1.5rem;
  left: -2rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.4rem;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  z-index: 3;
}
.hostcare-bubble { background: #b87d4b; }
.psb-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.psb-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ---- HOW IT WORKS STEPS ---- */
.prog-steps-section {
  padding: 6rem 0;
  background: var(--charcoal);
}
.hostcare-steps { background: #2a1f1a; }
.prog-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3.5rem;
}
.prog-step {
  text-align: center;
  padding: 0 1.5rem;
}
.ps-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(168,159,145,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.ps-icon {
  width: 58px; height: 58px;
  background: rgba(168,159,145,0.1);
  border: 1px solid rgba(168,159,145,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--taupe);
  margin: 0 auto 1.25rem;
}
.prog-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.prog-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.prog-step-arrow {
  color: rgba(168,159,145,0.3);
  font-size: 1rem;
  align-self: center;
  padding-top: 3rem;
}

/* ---- WHAT'S INCLUDED ---- */
.prog-included-section {
  padding: 6rem 0;
  background: var(--ivory);
}
.prog-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.prog-included-col {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
}
.prog-included-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.prog-included-col h4 i { color: var(--taupe); }
.prog-included-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.prog-included-col li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}
.prog-included-col li i { color: var(--taupe); font-size: 0.65rem; flex-shrink: 0; }

/* ---- RESULTS SECTION (HostCare) ---- */
.prog-results-section {
  padding: 6rem 0;
  background: var(--white);
}
.prog-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.prog-result-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prog-result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prog-result-card.prc-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: scale(1.04);
}
.prc-icon {
  font-size: 2rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}
.prc-featured .prc-icon { color: var(--taupe-light); }
.prc-stat {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.prc-featured .prc-stat { color: var(--white); }
.prc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
}
.prog-result-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }
.prc-featured p { color: rgba(255,255,255,0.55); }

/* ---- TESTIMONIALS ---- */
.prog-testimonials-section {
  padding: 6rem 0;
  background: var(--charcoal);
}
.hostcare-testimonials { background: #221a16; }
.prog-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.prog-testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 2px;
}
.prog-testimonial--featured {
  background: rgba(168,159,145,0.1);
  border-color: rgba(168,159,145,0.2);
  position: relative;
  transform: translateY(-12px);
}
.pt-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(168,159,145,0.2);
  margin-bottom: 1rem;
}
.pt-stars { color: #f0b429; font-size: 0.8rem; margin-bottom: 1.25rem; letter-spacing: 0.1em; }
.prog-testimonial p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.pt-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.pt-avatar {
  width: 40px; height: 40px;
  background: var(--taupe);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.pt-author strong { display: block; font-size: 0.82rem; color: var(--white); font-weight: 600; }
.pt-author span   { font-size: 0.7rem; color: rgba(255,255,255,0.45); }

/* ---- FAQ ---- */
.prog-faq-section {
  padding: 6rem 0;
  background: var(--white);
}
.prog-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.prog-faq-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  border-radius: 2px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.prog-faq-item:hover { border-color: var(--taupe); box-shadow: 0 4px 16px rgba(168,159,145,0.1); }
.prog-faq-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.prog-faq-item h4 i { color: var(--taupe); font-size: 0.65rem; margin-top: 0.25rem; flex-shrink: 0; }
.prog-faq-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

/* ---- PROGRAM FINAL CTA ---- */
.prog-cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}
.homeshield-cta { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%); }
.hostcare-cta   { background: linear-gradient(135deg, #1e1008 0%, #2c1e14 60%, #3a2416 100%); }
.prog-cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,159,145,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.prog-cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.prog-cta-icon {
  font-size: 3rem;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.hostcare-cta-icon { color: #b87d4b; }
.prog-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.prog-cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.prog-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.prog-cta-note {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.35) !important;
  letter-spacing: 0.08em;
  margin-bottom: 0 !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .prog-hero-inner    { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 0 4rem; }
  .prog-hero-visual   { display: none; }
  .prog-problem-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .prog-what-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .prog-what-grid .prog-what-visual { display: none; }
  .prog-steps         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .prog-step-arrow    { display: none; }
  .prog-included-grid { grid-template-columns: 1fr 1fr; }
  .prog-results-grid  { grid-template-columns: 1fr 1fr; }
  .prog-result-card.prc-featured { transform: none; }
  .prog-testimonials-grid { grid-template-columns: 1fr; }
  .prog-testimonial--featured { transform: none; }
  .prog-faq-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .prog-pain-cards    { grid-template-columns: 1fr; }
  .prog-steps         { grid-template-columns: 1fr; }
  .prog-included-grid { grid-template-columns: 1fr; }
  .prog-results-grid  { grid-template-columns: 1fr; }
  .prog-hero-subtitle { font-size: 0.95rem; }
  .prog-cta-actions   { flex-direction: column; align-items: center; }
  .pht-divider        { display: none; }
  .pht-item           { padding-right: 1.25rem; }
}

/* Highlight program links in nav dropdown */
.dropdown li a[href="/homeshield"],
.dropdown li a[href="/hostcare"] {
  color: var(--taupe) !important;
  font-weight: 600;
}
.dropdown li a[href="/homeshield"]:hover,
.dropdown li a[href="/hostcare"]:hover {
  color: var(--charcoal) !important;
  background: rgba(168,159,145,0.08);
}

/* ---- Feature item with embedded photo (Rapid Repairs) ---- */
.prog-feature-item--photo { align-items: flex-start; flex-direction: row; }
.prog-feature-item--photo .pfi-text { width: 100%; }
.pfi-photo-wrap {
  position: relative;
  margin-top: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.pfi-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 4px;
}
.pfi-photo-wrap:hover .pfi-photo { transform: scale(1.03); }
.pfi-photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(44,44,44,0.88);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 3px solid #b87d4b;
  border-radius: 2px;
}
.pfi-photo-badge i { color: #b87d4b; font-size: 0.75rem; }
