/* ============================================
   HAYAT CARE — STYLES
   Brand: slate navy #2C3E5C / terracotta #C97B5A / dark #1A2333
   Visiting home care
   ============================================ */

:root {
  /* Primary — slate navy. Trust + premium without NHS-teal. */
  --teal: #2C3E5C;
  --teal-dark: #1F2D44;
  --teal-light: #5C7494;
  --teal-50: #EEF2F7;
  /* Accent — terracotta. Warm, family, home. */
  --gold: #C97B5A;
  --gold-dark: #A85F42;
  --gold-light: #E0A083;
  /* Neutrals — slightly warmer than before, slate muted. */
  --dark: #1A2333;
  --ink: #1F2937;
  --muted: #64748B;
  /* Surfaces — warm ivory + clay cream. */
  --bg: #FAF6F0;
  --bg-alt: #F1E8DC;
  --line: #E5DDD0;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(26,35,51,.05), 0 2px 8px rgba(26,35,51,.04);
  --shadow-md: 0 4px 12px rgba(26,35,51,.06), 0 12px 32px rgba(26,35,51,.06);
  --shadow-lg: 0 12px 32px rgba(26,35,51,.10), 0 24px 64px rgba(26,35,51,.10);
  --container: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal-dark); }
em { font-style: italic; }
strong { font-weight: 600; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .5rem; font-family: 'Inter', sans-serif; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .35rem; font-family: 'Inter', sans-serif; }

p { margin-bottom: 1rem; }
.hl { color: var(--teal); }
.hl-gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: .75rem;
}
.eyebrow-light { color: var(--gold); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .section-sub { color: var(--muted); font-size: 1.05rem; margin-top: .5rem; }

.h2-light { color: var(--white); }
.p-light { color: rgba(255,255,255,.85); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); color: var(--white); box-shadow: 0 8px 20px rgba(44,62,92,.3); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--dark); box-shadow: 0 8px 20px rgba(201,123,90,.4); }
.btn-block { width: 100%; }

/* ========== NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 73px;
  padding: 12px var(--gutter);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.brand-mark { display: inline-flex; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.brand-name-accent { color: var(--teal); }
.brand-tagline {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 2px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.nav-active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 24px;
  gap: 4px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-menu a {
  padding: 10px 0;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.nav-cta-mobile {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
  text-align: center;
  margin-top: 8px;
  padding: 14px 0 !important;
  border-bottom: none !important;
}

/* ========== HERO ========== */
.hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44,62,92,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.15rem; color: var(--muted); margin-bottom: 2rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-trust li { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--teal); flex-shrink: 0; }

.hero-art {
  position: relative;
  min-height: 480px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 260px;
}
.hc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hc-icon svg { width: 22px; height: 22px; }
.hc-icon-fixed {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hc-icon-fixed svg { width: 22px; height: 22px; }
.hc-title { font-weight: 700; color: var(--dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; font-size: 1rem; }
.hc-body { font-size: .9rem; color: var(--muted); }

.hero-card-1 { top: 0; left: 0; }
.hero-card-2 { top: 50%; right: 0; transform: translateY(-50%); }
.hero-card-3 { bottom: 0; left: 18%; }

/* ========== HIRING STRIP (replaces old hiring-banner) ========== */
.hiring-strip {
  background: var(--dark);
  padding: 18px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hs-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
}
.hs-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 4px;
}
.hs-text p { margin: 0; }
.hs-text a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.hs-text a:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* ========== SERVICES ========== */
.services { padding: clamp(60px, 8vw, 100px) 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-card.featured { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.sc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sc-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .95rem; }
.sc-list { list-style: none; margin: 14px 0 18px; }
.sc-list li {
  padding-left: 20px;
  position: relative;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.sc-link {
  display: inline-block;
  font-weight: 600;
  color: var(--teal);
  font-size: .95rem;
  margin-top: auto;
}
.sc-link:hover { color: var(--teal-dark); }
.services-foot {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
}

/* ========== WHY ========== */
.why {
  background: var(--dark);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(44,62,92,.25) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.why-points { display: grid; gap: 24px; }
.why-point {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: background .2s, border-color .2s;
}
.why-point:hover { background: rgba(255,255,255,.07); border-color: var(--teal); }
.wp-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.why-point h4 { color: var(--white); margin-bottom: 6px; }
.why-point p { color: rgba(255,255,255,.7); font-size: .95rem; margin: 0; }

/* ========== HOW IT WORKS ========== */
.how { padding: clamp(60px, 8vw, 100px) 0; background: var(--bg-alt); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps li {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .2s;
}
.steps li:hover { transform: translateY(-4px); }
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.steps li h3 { margin-bottom: 8px; }
.steps li p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ========== AREAS GRID (where we operate) ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 22px;
  border-radius: var(--radius);
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.area:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
  display: block;
}
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ========== COMPARISON ========== */
.compare { padding: clamp(60px, 8vw, 100px) 0; }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}
.compare-table .th-us { background: var(--teal); color: var(--white); }
.compare-table td:first-child { font-weight: 500; color: var(--dark); }
.compare-table .td-us { color: var(--teal-dark); font-weight: 600; }
.compare-table tbody tr:hover { background: var(--bg-alt); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ========== FAQ ========== */
.faq-section { padding: clamp(60px, 8vw, 100px) 0; }
.faq {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 600;
  color: var(--dark);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 52px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > *:not(summary) {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}
.faq details > *:not(summary) p:last-child { margin-bottom: 0; }

/* ========== CONTACT ========== */
.contact {
  background: var(--bg-alt);
  padding: clamp(60px, 8vw, 100px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ci svg { width: 20px; height: 20px; }
.contact-list strong { display: block; margin-bottom: 2px; color: var(--dark); }
.contact-list a { font-weight: 500; }

.contact-form {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.form-row { margin-bottom: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row label {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}
.req { color: var(--gold-dark); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,62,92,.15);
}
.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #c44;
  background: #fef5f5;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-check label { font-weight: 400; font-size: .9rem; color: var(--muted); margin: 0; }
.form-fineprint { font-size: .8rem; color: var(--muted); margin-top: 12px; margin-bottom: 0; }
.form-success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
}
.form-success strong { display: block; margin-bottom: 4px; }
.form-success p { margin: 0; font-size: .9rem; }
.form-error {
  background: #ffebee;
  border: 1px solid #c44;
  color: #b71c1c;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: .9rem;
}
.form-mailto {
  background: #fff8e1;
  border: 1px solid var(--gold);
  color: #6b4d1d;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 16px;
}
.form-mailto strong { display: block; margin-bottom: 4px; }
.form-mailto p { margin: 0; font-size: .9rem; }
.form-mailto a { color: #6b4d1d; text-decoration: underline; }

/* ========== PRIVACY ========== */
.privacy { padding: 60px 0; background: var(--bg); }
.privacy h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.privacy p { color: var(--muted); max-width: 800px; margin-bottom: 1rem; font-size: .95rem; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}
.foot-brand .brand-name, .foot-brand .brand-name-accent { color: var(--white); }
.foot-brand .brand-tagline { color: rgba(255,255,255,.6); }
.foot-blurb { font-size: .9rem; margin-top: 16px; max-width: 320px; }
.foot-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.foot-col a, .foot-col span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .15s;
  line-height: 1.5;
}
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 380px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gutter: 18px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu[data-open="true"] { display: flex; }
  .nav-row { min-height: 64px; }
  .hero { padding: 48px 0 32px; }
  .hero-art { min-height: 340px; }
  .hero-card { max-width: 220px; padding: 18px; }
  .hero-card-1 { top: 0; left: 0; }
  .hero-card-2 { top: 45%; right: 0; }
  .hero-card-3 { bottom: 0; left: 8%; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .hs-row { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .hero-card { max-width: 180px; }
  .hero-card-2 { display: none; }
  .hero-trust { gap: 12px 16px; font-size: .85rem; }
}

/* Focus visible — accessibility */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============== STICKY MOBILE CALL BUTTON ============== */
.sticky-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  z-index: 9999;
  background: var(--teal);
  color: var(--white) !important;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(14, 124, 123, 0.4);
  text-decoration: none;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}
.sticky-call:hover { background: var(--teal-dark); color: var(--white) !important; }
@media (max-width: 768px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 80px; }
}