/* ============================================================
   TRUSTUS Care — styles.css  (redesign-v2)
   Navy #1C2B4A · Rose #C8526A · Blush #FAE8EC
   ============================================================ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:           #111111;
  --navy-deep:      #111D33;
  --forest:         #111111;
  --navy-soft:      #E8EEF8;
  --terracotta:     #C8526A;
  --terracotta-deep:#b04460;
  --terracotta-soft:#FAE8EC;
  --sage:           #E07A90;
  --sage-soft:      #FAE8EC;
  --beige:          #E07A90;
  --cream:          #FDF8F5;
  --ink:            #111111;
  --ink-2:          #111111;
  --ink-3:          #111111;
  --mute:           #444444;
  --bg:             #FDF8F5;
  --bg-soft:        #F6EFE9;
  --line:           #EBE5DF;
  --line-2:         #D4CCC6;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 2px 12px rgba(28,43,74,.07);
  --shadow-md:      0 8px 32px rgba(28,43,74,.12);
  --shadow-lg:      0 20px 60px rgba(28,43,74,.18);
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--beige); }

h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600; line-height: 1.18; letter-spacing: -0.02em;
}

h3 { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
h4 { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
h5 { font-family: 'Nunito', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--terracotta); margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block; width: 28px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 40px 0; }
.section-sm { padding: 64px 0; }

.section-navy {
  background: var(--sage-soft);
}
.section-navy .section-header h2,
.section-navy .process-step h4 { color: var(--navy); }
.section-navy .section-header p,
.section-navy .process-step p  { color: var(--ink-3); }
.section-navy .eyebrow { color: var(--sage); }
.section-navy .eyebrow::before { background: var(--sage); }
.section-navy .process-step-icon img { filter: none; opacity: 1; }
.section-navy .process-step-icon svg { stroke: var(--sage); }

/* ── Section Header ─────────────────────────────────────────── */
.section-header { max-width: 640px; margin: 0 auto; text-align: center; }
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--ink-3); font-size: 1.08rem; line-height: 1.72; text-align: left; }
.section-header-left { max-width: 100%; text-align: left; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terracotta); color: #fff;
  padding: 13px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,82,106,.42);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line-2);
  padding: 12px 30px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy-soft); transform: translateY(-2px); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.38);
  padding: 12px 30px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-lg { padding: 16px 40px; font-size: 0.95rem; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,251,248,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(28,43,74,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 96px; padding: 0 32px;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo img { height: 86px; width: auto; object-fit: contain; mix-blend-mode: multiply; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-2);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active { background: var(--navy-soft); color: var(--navy); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 224px; padding: 8px; padding-top: 16px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 600; color: var(--ink-2);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--navy-soft); color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
  padding: 8px 12px; border-radius: 8px; white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--navy); }
.nav-phone svg { color: var(--terracotta); flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: #fff; flex-direction: column;
  padding: 24px 24px 40px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-header img { height: 44px; width: auto; }
.mobile-nav-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--ink); font-weight: 300; cursor: pointer;
}
.mobile-nav-links { flex: 1; }
.mobile-nav-links a,
.mobile-nav-links button {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line); width: 100%; text-align: left;
}
.mobile-submenu { display: none; padding: 8px 0 8px 16px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  font-size: 0.95rem; color: var(--ink-3); font-weight: 500;
  padding: 10px 4px; border-bottom: 1px solid var(--line);
  justify-content: flex-start;
}
.mobile-submenu a:last-child { border-bottom: none; }
.mobile-nav-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-secondary { justify-content: center; text-align: center; }

/* ── EYEBROW LARGE (section title variant) ──────────────────── */
.eyebrow-lg {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.eyebrow-lg::before { width: 36px; height: 3px; }

/* ── HERO (SPLIT LAYOUT) ────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 680px;
  overflow: hidden;
}

/* ── HERO FULL-WIDTH VARIANT ────────────────────────────────── */
.hero.hero-full {
  display: flex;
  align-items: center;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.hero-full .hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-full .hero-slide {
  opacity: 0; transition: opacity 1.4s ease;
  background-position: center center; background-size: cover;
}
.hero-full .hero-slide.active { opacity: 1; }
.hero-full .hero-overlay {
  display: block; position: absolute; inset: 0;
  background: rgba(250, 232, 236, 0.85);
  z-index: 1;
}
.hero-full-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  max-width: 1200px; width: 100%;
  padding: 80px 32px;
  margin: 0 auto;
}
.hero-full-content h1 {
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 22px;
}
.hero-full-content .eyebrow { color: var(--terracotta); }
.hero-lead,
.hero-body {
  font-size: 1rem; color: var(--navy);
  font-family: 'Nunito', sans-serif; font-weight: 500;
  line-height: 1.8;
}
.hero-lead { margin-bottom: 16px; }
.hero-body { margin-bottom: 0; }

/* icon-box SVG icon support (How It Works) */
.icon-box .process-step-icon {
  width: 80px; height: 80px; margin: 0 auto 18px;
}
.icon-box .process-step-icon svg {
  width: 100%; height: 100%; stroke: var(--terracotta);
}

.hero-left {
  background: var(--sage-soft);
  display: flex; align-items: center;
  padding: 88px 72px 88px 80px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -32px;
  width: 64px; height: 100%;
  background: var(--sage-soft);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

.hero-right {
  position: relative; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { display: none; }

.hero-content { position: relative; z-index: 1; }
.hero-content .eyebrow { color: var(--terracotta); }
.hero-content .eyebrow::before { background: var(--terracotta); }
.hero-content h1 { color: var(--navy); margin-bottom: 22px; }
.hero-content p { color: var(--ink-2); font-size: 1.05rem; max-width: 520px; margin-bottom: 36px; line-height: 1.72; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.01em;
}
.hero-trust-item svg { color: var(--terracotta); flex-shrink: 0; }

/* Hero services list (domiciliary page) */
.hero-services-label { font-weight: 700; color: var(--navy); margin-top: 18px; margin-bottom: 8px; font-size: 0.97rem; }
.hero-checklist { max-width: 560px; }
.hero-checklist li { color: var(--navy); font-size: 0.93rem; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: flex-end;
}
.page-hero-slides { position: absolute; inset: 0; z-index: 0; }
.page-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.page-hero-slide.active { opacity: 1; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(250, 232, 236, 0.85);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 48px 32px;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.35); }
.page-hero-content h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero-content p { color: var(--ink-2); margin-top: 10px; font-size: 1.05rem; }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 0; }

.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.service-num {
  position: absolute; top: 0; right: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 7rem; font-weight: 600;
  line-height: 0.85; color: var(--navy);
  opacity: 0.055; user-select: none; pointer-events: none;
  z-index: 1;
}

.service-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; z-index: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
.service-icon { width: 160px; height: 160px; margin-bottom: 20px; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card-body h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.2rem; }
.service-subtitle { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--terracotta); margin-bottom: 10px; }
.service-card-body p { color: var(--ink-3); font-size: 0.92rem; line-height: 1.66; flex: 1; margin-bottom: 22px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 12px; color: var(--terracotta); }

/* ── ICON BOXES (Why Choose Us) ─────────────────────────────── */
.icon-boxes-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 0; }
.icon-boxes-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }

.icon-box {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px;
  text-align: center; min-width: 0;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-box img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 18px; }
.icon-box h4 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.icon-box p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.62; }

/* ── PROCESS STEPS (How It Works) ───────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.process-step {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px;
  text-align: center; min-width: 0; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step-icon { margin: 0 auto 24px; }
.step-num { display: none; }
.process-step-icon { width: 120px; height: 120px; margin-bottom: 18px; }
.process-step-icon img { width: 100%; height: 100%; object-fit: contain; }
.process-step-icon svg { width: 100%; height: 100%; }
.process-step h4 { margin-bottom: 12px; font-size: 1.1rem; }
.process-step p { font-size: 0.92rem; line-height: 1.7; }

/* How It Works section overrides */
.section-navy .process-step h4 { color: var(--navy); }
.section-navy .process-step p { color: var(--ink-3); }
.section-navy .section-header h2 { color: var(--navy); }
.section-navy .section-header .eyebrow { color: var(--sage); }
.section-navy .section-header .eyebrow::before { background: var(--sage); }

/* ── SUPPORT / WHO WE SUPPORT ───────────────────────────────── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.support-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; text-align: center; min-width: 0;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.support-card img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 18px; }
.support-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.support-card p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.62; }

/* ── VALUES / WHY CHOOSE US ─────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; min-width: 0;
  border-top: 3px solid var(--terracotta);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card::before {
  content: ''; display: block;
  width: 36px; height: 36px; border-radius: 50%; margin-bottom: 16px;
  background: var(--terracotta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/16px no-repeat;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card h4 { color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.66; }

/* ── ABOUT / CONTENT SECTIONS ───────────────────────────────── */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-block.reverse .about-img { order: 2; }
.about-block.reverse .about-text { order: 1; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-img::after {
  content: ''; position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  background: var(--terracotta-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-img img { width: 100%; height: 440px; object-fit: cover; }
.about-text h2 { color: var(--navy); margin-bottom: 18px; }
.about-text p { color: var(--ink-3); line-height: 1.78; margin-bottom: 20px; font-size: 0.97rem; }

.checklist { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; color: var(--ink-2); line-height: 1.5;
}
.checklist li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--terracotta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%; margin-top: 2px;
}

/* ── CHECK CARDS GRID ───────────────────────────────────────── */
.check-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 24px;
}
.check-card {
  display: flex; align-items: center; gap: 14px; min-width: 0;
  background: #fff; border-radius: var(--radius-lg);
  border-top: 3px solid var(--terracotta);
  box-shadow: var(--shadow-sm); padding: 24px 22px;
  font-size: 0.95rem; font-weight: 600; color: var(--ink-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.check-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.check-card::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--terracotta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ── PROPERTY SECTION ────────────────────────────────────────── */
.property-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start; padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.property-block:last-child { border-bottom: none; }

.property-main-img {
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3;
}
.property-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-main-img:hover img { transform: scale(1.03); }

.property-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.property-thumb {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  aspect-ratio: 1; border: 2px solid transparent;
  transition: border-color var(--transition);
}
.property-thumb:hover, .property-thumb.active { border-color: var(--terracotta); }
.property-thumb { position: relative; }
.more-overlay {
  position: absolute; inset: 0;
  background: rgba(28,43,74,0.58);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Nunito', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.02em;
  border-radius: 6px; pointer-events: none;
}
.property-thumb img { width: 100%; height: 100%; object-fit: cover; }

.property-info h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.4rem; }
.property-address {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; color: var(--mute); margin-bottom: 18px;
}
.property-info > p { color: var(--ink-3); line-height: 1.75; margin-bottom: 20px; font-size: 0.95rem; }

.property-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.property-tag {
  background: var(--navy-soft); color: var(--navy);
  border-radius: 20px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600;
}
.property-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.property-feature-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--ink-2);
}
.property-feature-item::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 50%;
}

/* ── CTA DARK ────────────────────────────────────────────────── */
.cta-dark { background: var(--forest); padding: 88px 0; }
.cta-dark-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cta-text h2 { color: #fff; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.cta-contact-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.cta-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: rgba(255,255,255,.8);
}
.cta-contact-list li a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.cta-contact-list li a:hover { color: #fff; }
.cta-contact-list svg { color: var(--terracotta); flex-shrink: 0; }

.quick-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 40px;
}
.quick-form h3 { color: #fff; margin-bottom: 28px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.65); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px; padding: 11px 14px;
  font-size: 0.92rem; color: #fff; font-family: inherit;
  transition: border-color var(--transition), background var(--transition); width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.38); }
.form-group select option { background: var(--navy); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--terracotta); background: rgba(255,255,255,.12); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-soft); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 28px; padding-bottom: 36px; }

.footer-logo-img {
  height: 56px; width: auto;
  object-fit: contain; margin-bottom: 12px;
  mix-blend-mode: multiply;
}
.footer-brand p { font-size: 0.85rem; color: var(--ink-3); line-height: 1.68; margin-bottom: 14px; max-width: 260px; }

.footer-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.footer-badge { height: 38px; width: auto; object-fit: contain; border-radius: 6px; background: var(--navy-soft); padding: 4px; }

.social-links { display: flex; gap: 8px; margin-top: 12px; }
.social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-soft); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: 0.82rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

.footer-col h5 { color: var(--ink-3); margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--ink-2); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--navy); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem; color: var(--ink-2);
}
.footer-contact-item a { color: var(--ink-2); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--navy); }
.footer-contact-item svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--ink-3); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(8,16,28,.96);
  flex-direction: column; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; font-weight: 300; cursor: pointer;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 1.5rem; cursor: pointer;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; color: rgba(255,255,255,.5); font-size: 0.85rem; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.contact-info-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; text-align: center; min-width: 0;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--terracotta);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-info-card .icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--terracotta-soft); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.contact-info-card h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.88rem; color: var(--ink-3); }

.contact-form-section { background: var(--bg-soft); }
.contact-form-wrap { max-width: 700px; margin: 0 auto; }
.contact-form-wrap .form-group label { color: var(--ink-2); font-size: 0.85rem; font-weight: 600; }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  background: #fff; border: 1.5px solid var(--line-2);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.95rem; color: var(--ink); font-family: inherit;
  transition: border-color var(--transition); width: 100%;
}
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group select:focus,
.contact-form-wrap .form-group textarea:focus { outline: none; border-color: var(--terracotta); }
.contact-form-wrap .form-group textarea { resize: vertical; min-height: 130px; }
.contact-form-wrap .form-group input[type="file"] { padding: 9px 12px; cursor: pointer; }

.referral-block {
  background: var(--sage); padding: 44px;
  border-radius: var(--radius-lg); color: #fff; margin-top: 44px;
}
.referral-block h3 { color: #fff; margin-bottom: 10px; }
.referral-block p { color: rgba(255,255,255,.82); line-height: 1.72; }
.referral-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 16px 0; }
.referral-list-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: rgba(255,255,255,.9); font-weight: 500; }
.referral-arrow { color: var(--beige); font-weight: 700; flex-shrink: 0; }

/* ── FLOATING CTA ────────────────────────────────────────────── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  background: var(--terracotta); color: #fff;
  padding: 13px 26px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 36px rgba(200,82,106,.48);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.float-cta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(200,82,106,.58);
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

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

/* ── 1024px (large tablet / small laptop) ─────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 72px 48px; }
  .hero-left::after { display: none; }
  .icon-boxes-4       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-info-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .check-cards-grid   { grid-template-columns: 1fr 1fr; }
}

/* ── 768px (tablet / large phone landscape) ───────────────── */
@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  .section    { padding: 52px 0; }

  /* nav */
  .nav-inner    { height: 64px; padding: 0 20px; }
  .nav-logo img { height: 40px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger    { display: flex; }

  /* home hero */
  .hero         { grid-template-columns: 1fr; min-height: auto; }
  .hero-left    { padding: 56px 24px 48px; order: 2; }
  .hero-right   { min-height: 280px; order: 1; }
  .hero-trust   { gap: 14px; }

  /* page hero */
  .page-hero          { min-height: auto; }
  .page-hero-content  { padding: 36px 20px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-checklist     { columns: 2; column-gap: 16px; }

  /* about */
  .about-block  { grid-template-columns: 1fr; gap: 32px; }
  .about-block.reverse .about-img,
  .about-block.reverse .about-text { order: unset; }
  .about-img img  { height: 260px; }
  .about-img::after { display: none; }

  /* grids */
  .services-grid      { grid-template-columns: repeat(3, 1fr); }
  .icon-boxes-4       { grid-template-columns: 1fr 1fr; }
  .icon-boxes-6       { grid-template-columns: 1fr 1fr; }
  .support-grid       { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .check-cards-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-grid       { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .contact-info-grid  { grid-template-columns: 1fr 1fr; }

  /* reduce icon & card size at tablet */
  .process-step       { padding: 24px 16px; }
  .process-step-icon  { width: 80px; height: 80px; }
  .support-card img,
  .icon-box img       { width: 90px; height: 90px; }

  /* forms */
  .cta-dark-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row       { grid-template-columns: 1fr !important; gap: 0 !important; }
  .quick-form     { padding: 28px 20px; }

  /* property */
  .property-block { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }

  /* eyebrow */
  .eyebrow { font-size: 1.1rem; }

  /* footer */
  .footer         { padding: 40px 0 0; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 8px; }

  .float-cta { bottom: 16px; right: 16px; padding: 10px 18px; font-size: 0.82rem; }
}

/* ── 480px (phone portrait) ───────────────────────────────── */
@media (max-width: 480px) {
  .section    { padding: 40px 0; }

  /* home hero */
  .hero-left  { padding: 44px 20px 40px; }
  .hero-cta   { flex-direction: column; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost-dark { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; }

  /* page hero */
  .page-hero-content  { padding: 28px 16px; }
  .hero-checklist     { columns: 1; }

  /* eyebrow */
  .eyebrow { font-size: 0.95rem; }

  /* grids → 1 column */
  .services-grid      { grid-template-columns: 1fr; }
  .icon-boxes-4       { grid-template-columns: 1fr; }
  .icon-boxes-6       { grid-template-columns: 1fr; }
  .support-grid       { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .check-cards-grid   { grid-template-columns: 1fr; gap: 12px; }
  .process-grid       { grid-template-columns: 1fr; gap: 14px; }

  /* card padding reduction */
  .check-card         { padding: 16px 18px; }
  .support-card,
  .value-card,
  .process-step,
  .icon-box           { padding: 24px 20px; }
  .support-card img,
  .icon-box img       { width: 80px; height: 80px; }
  .process-step-icon  { width: 80px; height: 80px; }

  /* contact */
  .contact-info-grid  { grid-template-columns: 1fr; }

  /* property */
  .property-thumbs    { grid-template-columns: repeat(3, 1fr); }

  /* footer */
  .footer-grid        { grid-template-columns: 1fr; }
}

/* ── 375px (small phone) ──────────────────────────────────── */
@media (max-width: 375px) {
  .container  { padding: 0 14px; }
  .section    { padding: 32px 0; }
  .btn-primary, .btn-secondary, .btn-ghost-dark { padding: 11px 20px; font-size: 0.86rem; }
  .contact-info-grid  { grid-template-columns: 1fr; }
  .page-hero-content  { padding: 22px 14px; }
}
