/* =============================================================================
   Loyalty Home Services LLC — styles.css
   Brand: navy #091A36 / orange #F8740E. Mobile-first. No external CSS deps.
   ============================================================================= */

/* ---------- tokens ---------- */
:root {
  --navy: #091a36;
  --navy-2: #102344;
  --navy-3: #1a2c4f;
  --orange: #f8740e;
  --orange-2: #f2842d;
  --orange-ink: #c75806;
  --white: #f7f9fa;
  --gray: #f5f7fa;
  --gray-2: #eef2f7;
  --slate: #4f596b;
  --border: #d9e1ec;

  --ink: #0c1830;        /* headings */
  --text: #2f3848;       /* body */
  --muted: #5a6478;      /* secondary text */

  --green: #1f9d57;

  --container: 1200px;
  --container-xl: 1320px;
  --container-md: 940px;
  --container-sm: 660px;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(9, 26, 54, 0.07);
  --shadow: 0 10px 30px rgba(9, 26, 54, 0.1);
  --shadow-lg: 0 24px 60px rgba(9, 26, 54, 0.16);
  --shadow-cta: 0 10px 24px rgba(248, 116, 14, 0.32);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: 'Montserrat', var(--font);

  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
svg.icon { width: 1.25em; height: 1.25em; flex: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 0.5em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.6vw + 1rem, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 2.6vw + 1rem, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; text-wrap: pretty; }
a { color: var(--orange-ink); text-underline-offset: 3px; transition: color 0.15s var(--ease); }
a:hover { color: var(--orange); }
strong { color: var(--ink); }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container--xl { max-width: var(--container-xl); }
.container--lg { max-width: var(--container); }
.container--md { max-width: var(--container-md); }
.container--sm { max-width: var(--container-sm); }

.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--gray { background: var(--gray); }
.section--navy { background: var(--navy); color: #cfd8e6; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.section[id], .blog-article [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.eyebrow { display: inline-block; font-family: var(--font); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-ink); margin-bottom: 0.6rem; }
.section--navy .eyebrow { color: var(--orange-2); }
.rule-orange { display: block; width: 60px; height: 4px; border-radius: 3px; background: var(--orange); margin: 14px 0 18px; }
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; }
.section--navy .lead { color: #b8c4d6; }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .rule-orange { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font); font-weight: 700; font-size: 1.02rem; line-height: 1;
  padding: 16px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform 0.12s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
  min-height: 52px; text-align: center;
}
.btn .btn-ico { width: 1.15em; height: 1.15em; }
.btn--sm { padding: 11px 18px; font-size: 0.94rem; min-height: 44px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--orange-2); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; transform: translateY(-2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row--center { justify-content: center; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,249,250,0.96); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--border); }
.site-header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand__logo { width: 48px; height: 48px; border-radius: 9px; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em; line-height: 1.05; }
.brand__name strong { color: var(--orange); font-weight: 800; }

.nav--desktop { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 0.98rem; color: var(--ink); text-decoration: none; padding: 10px 14px; border-radius: 8px; background: none; border: 0; cursor: pointer; font-family: var(--font); }
.nav__link:hover, .nav__item:hover .nav__link, .nav__link[aria-current="page"] { color: var(--orange-ink); background: var(--gray-2); }
.nav__chev { width: 16px; height: 16px; transition: transform 0.15s var(--ease); }
.nav__item--has-sub:hover .nav__chev, .nav__item--has-sub:focus-within .nav__chev { transform: rotate(180deg); }
.subnav { position: absolute; top: calc(100% + 6px); left: 0; min-width: 268px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.16s var(--ease); }
.nav__item--has-sub:hover .subnav, .nav__item--has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.subnav a:hover { background: var(--gray); color: var(--orange-ink); }

.site-header__cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header-phone { display: none; align-items: center; gap: 6px; font-weight: 700; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.header-phone:hover { color: var(--orange-ink); }
.hamburger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--border); background: #fff; border-radius: 10px; cursor: pointer; color: var(--navy); }
.hamburger .icon { width: 24px; height: 24px; }

/* mobile nav panel */
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--white); padding: 12px 20px 22px; }
.mobile-nav.is-open { display: block; }
.mobile-nav__list { list-style: none; margin: 0 0 14px; padding: 0; }
.mobile-nav__list > .nav__item { border-bottom: 1px solid var(--border); }
.mobile-nav__list .nav__link { width: 100%; justify-content: space-between; padding: 14px 4px; font-size: 1.05rem; border-radius: 0; }
.mobile-nav .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 12px; min-width: 0; display: none; }
.mobile-nav .nav__item--has-sub.is-open .subnav { display: block; }
.mobile-nav .nav__item--has-sub.is-open .nav__chev { transform: rotate(180deg); }
.mobile-nav__cta { display: grid; gap: 10px; }

/* ---------- breadcrumbs ---------- */
.breadcrumbs { background: var(--gray); border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 12px 0; }
.crumb { display: inline-flex; align-items: center; gap: 4px; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--orange-ink); }
.crumb__sep { width: 15px; height: 15px; opacity: 0.5; }
.crumb[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 85% 0%, var(--navy-3) 0%, var(--navy-2) 45%, var(--navy) 100%); color: #dbe3ef; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 18% 120%, rgba(248,116,14,0.18), transparent 42%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; padding: clamp(48px, 8vw, 96px) 0 clamp(52px, 8vw, 100px); }
.hero__content { max-width: 760px; }
.hero .eyebrow { color: var(--orange-2); }
.hero__title { color: #fff; font-size: clamp(2.1rem, 5vw + 1rem, 3.6rem); margin-bottom: 0.5em; }
.hero__sub { font-size: clamp(1.08rem, 1.4vw + 0.7rem, 1.35rem); color: #c2cde0; max-width: 640px; margin-bottom: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; margin: 28px 0 0; padding: 0; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #e7edf6; font-size: 0.96rem; }
.hero__trust-ico { color: var(--orange-2); width: 1.2em; height: 1.2em; }
.hero--inner .hero__inner { padding: clamp(40px, 5vw, 64px) 0; }
.hero--inner .hero__content { max-width: 820px; }

/* ---------- grid + cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), border-color 0.15s; height: 100%; }
.card--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c4d2e4; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%); color: #fff; margin-bottom: 16px; }
.card__icon .icon { width: 26px; height: 26px; }
.card__title { margin-bottom: 8px; }
.card__text { color: var(--muted); margin-bottom: 14px; }
.card--link .card__link { margin-top: auto; color: var(--orange-ink); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; font-size: 0.95rem; }
.card__link-ico { width: 1.05em; height: 1.05em; transition: transform 0.15s var(--ease); }
.card--link:hover .card__link-ico { transform: translateX(3px); }

/* ---------- checklist ---------- */
.checklist { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 12px; }
.checklist--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; }
.check-ico { color: var(--green); margin-top: 2px; width: 1.2em; height: 1.2em; flex: none; }
.section--navy .check-ico { color: var(--orange-2); }

/* ---------- process steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.step__num { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: inline-flex; align-items: center; justify-content: center; }
.step__title { margin: 2px 0 4px; }
.step__body p { margin: 0; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; padding: 18px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__chev { width: 20px; height: 20px; color: var(--orange-ink); flex: none; transition: transform 0.18s var(--ease); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 20px 20px; }
.faq__a p { margin: 0; color: var(--muted); }

/* ---------- summary box (GEO) ---------- */
.summary { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--orange); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.summary__title { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 16px; }
.summary__ico { color: var(--orange); width: 1.3em; height: 1.3em; }
.summary__list { margin: 0 0 18px; display: grid; gap: 14px; }
.summary__row dt { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--orange-ink); margin-bottom: 2px; }
.summary__row dd { margin: 0; color: var(--text); font-size: 0.98rem; }
.summary__cta { display: grid; gap: 10px; }

/* ---------- notice / disclaimer ---------- */
.notice { display: flex; align-items: flex-start; gap: 10px; background: var(--gray); border: 1px solid var(--border); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 14px 16px; color: var(--muted); font-size: 0.95rem; margin: 18px 0; }
.notice__ico { color: var(--orange-ink); margin-top: 1px; flex: none; }
.notice--warn { background: #fff7ed; border-color: #fed7aa; border-left-color: var(--orange); }

/* ---------- with-aside (content + rail) ---------- */
.with-aside { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 960px) { .with-aside { grid-template-columns: minmax(0,1fr) 340px; gap: 48px; align-items: start; } .with-aside__rail { position: sticky; top: calc(var(--header-h) + 20px); } }

/* ---------- prose ---------- */
.prose { font-size: 1.07rem; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--orange); }
.prose a { font-weight: 600; }

/* ---------- cta band ---------- */
.cta-band { background: linear-gradient(120% 120% at 0% 0%, var(--navy-2), var(--navy)); color: #fff; padding: clamp(48px, 7vw, 84px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(248,116,14,0.22), transparent 70%); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__title { color: #fff; margin-bottom: 0.4em; }
.cta-band__text { color: #c2cde0; font-size: 1.15rem; max-width: 620px; margin: 0 auto 1.6rem; }

/* ---------- spanish CTA ---------- */
.spanish-cta { background: var(--navy-2); color: #d7e0ee; border-radius: var(--radius); padding: 16px 22px; }
.spanish-cta p { margin: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.spanish-cta__ico { color: var(--orange-2); }
.spanish-cta a { color: #fff; font-weight: 700; }

/* ---------- trust strip ---------- */
.trustbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trustbar__item { display: flex; align-items: center; gap: 12px; color: #dbe3ef; font-weight: 600; }
.trustbar__item .icon { color: var(--orange-2); width: 26px; height: 26px; flex: none; }

/* ---------- area cards ---------- */
.area-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.area-card h3 { display: flex; align-items: center; gap: 8px; }
.area-card h3 .icon { color: var(--orange); }
.area-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- forms ---------- */
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow); }
.form__grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.field .req { color: var(--orange-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; width: 100%;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(248,116,14,0.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-size: 0.82rem; color: var(--muted); }
.form__actions { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form-status { padding: 14px 16px; border-radius: 10px; font-weight: 600; display: none; }
.form-status.is-error { display: block; background: #fef2f2; color: #b42318; border: 1px solid #fecaca; }
.form-status.is-ok { display: block; background: #ecfdf3; color: #067647; border: 1px solid #abefc6; }
fieldset { border: 0; padding: 0; margin: 0; }
fieldset.field legend { font-weight: 600; color: var(--ink); font-size: 0.95rem; padding: 0; margin-bottom: 6px; }
fieldset.field .field__hint { margin: -2px 0 4px; }
.radio-row, .chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip { position: relative; }
.radio-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-chip span { display: inline-block; padding: 9px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-size: 0.92rem; font-weight: 600; color: var(--muted); cursor: pointer; }
.radio-chip input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }
.radio-chip input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.field__hint .icon, .hint-ico { width: 15px; height: 15px; vertical-align: -2px; color: var(--orange-ink); }
/* Honeypot — visually hidden, not display:none so bots still see it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- contact aside cards ---------- */
.contact-card { background: var(--navy); color: #d3dcea; border-radius: var(--radius); padding: 28px; align-self: start; position: sticky; top: calc(var(--header-h) + 16px); }
.contact-card h2, .contact-card h3 { color: #fff; margin: 4px 0 10px; }
.contact-card .eyebrow { color: var(--orange-2); }
.contact-card p { margin: 0 0 14px; line-height: 1.5; }
.contact-card a { color: #fff; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card .big-phone { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin: 4px 0 14px; }
.contact-card .big-phone .icon { color: var(--orange-2); }
.contact-card .contact-card__ico { color: var(--orange-2); width: 18px; height: 18px; vertical-align: -3px; flex: none; }
.contact-card__rule { border: 0; border-top: 1px solid rgba(255,255,255,0.14); margin: 18px 0; }
.contact-card__es { font-size: 0.92rem; color: #cdd7e6; }
.contact-card__es strong { color: #fff; }
.contact-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 11px; }
.contact-list .icon { color: var(--orange-2); margin-top: 2px; flex: none; }

/* ---------- sticky mobile bar ---------- */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1px; background: var(--border); box-shadow: 0 -6px 20px rgba(9,26,54,0.16); }
.stickybar__btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 6px; font-size: 0.74rem; font-weight: 700; text-decoration: none; }
.stickybar__btn .icon { width: 20px; height: 20px; }
.stickybar__btn--call { background: var(--orange); color: #fff; }
.stickybar__btn--text { background: var(--navy); color: #fff; }
.stickybar__btn--req { background: var(--navy-2); color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #aebbcf; font-size: 0.96rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: clamp(48px, 6vw, 72px) 20px 40px; }
.footer__logo { width: 110px; height: auto; border-radius: 12px; margin-bottom: 14px; }
.footer__slogan { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer__area { display: flex; align-items: flex-start; gap: 8px; color: #aebbcf; }
.footer__ico { color: var(--orange-2); flex: none; width: 1.15em; height: 1.15em; }
.footer__social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.footer__social a { color: #cdd8e6; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer__social a:hover { color: var(--orange-2); }
.footer__h { font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { color: #aebbcf; text-decoration: none; }
.footer__col a:hover { color: var(--orange-2); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact a, .footer__hours { display: flex; align-items: center; gap: 9px; color: #cdd8e6; text-decoration: none; margin: 0; }
.footer__phone { font-weight: 700; color: #fff !important; font-size: 1.08rem; }
.footer__contact a:hover { color: var(--orange-2); }
.footer__es { color: #8e9cb4; font-style: italic; font-size: 0.9rem; margin: 4px 0 0; }
.footer__areas { padding: 22px 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.86rem; color: #8e9cb4; }
.footer__areas a { color: #aebbcf; text-decoration: none; }
.footer__areas a:hover { color: var(--orange-2); }
.footer__areas-label { color: #fff; font-weight: 700; }
.footer__disclaimer { background: var(--navy-2); padding: 20px 0; }
.footer__disclaimer p { margin: 0; font-size: 0.82rem; color: #8e9cb4; line-height: 1.6; }
.footer__bottom { background: #06122a; padding: 16px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer__bottom p { margin: 0; font-size: 0.85rem; color: #7c8aa3; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__legal a { color: #aebbcf; text-decoration: none; font-size: 0.85rem; }
.footer__legal a:hover { color: var(--orange-2); }

/* ---------- misc content blocks ---------- */
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-sm); }
.panel--navy { background: var(--navy); color: #cfd8e6; border: 0; }
.panel--navy h2, .panel--navy h3 { color: #fff; }
.split { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 48px; } .split--rail { grid-template-columns: 1.15fr 0.85fr; } }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba figure { margin: 0; }
.ba figcaption { font-size: 0.82rem; color: var(--muted); padding: 8px 4px 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.placeholder-img { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; text-align: center; color: #8aa; background: repeating-linear-gradient(45deg, var(--gray) 0 14px, var(--gray-2) 14px 28px); border-radius: var(--radius-sm); border: 1px dashed var(--border); color: var(--muted); font-size: 0.85rem; padding: 16px; }

.toc { background: var(--gray); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 30px; }
.toc h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2rem; display: grid; gap: 7px; }
.toc a { color: var(--text); text-decoration: none; font-weight: 600; }
.toc a:hover { color: var(--orange-ink); }

.post-meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }
.post-card { display: flex; flex-direction: column; }
.post-card .card__text { flex: 1; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-ink); background: #fff3e9; padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 12px; }

.callout { background: var(--gray); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; margin: 26px 0; }
.callout--cta { background: linear-gradient(120% 120% at 0 0, var(--navy-2), var(--navy)); color: #fff; }
.callout--cta h3 { color: #fff; }
.callout--cta p { color: #c2cde0; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .header-request { display: none; }
}
@media (max-width: 980px) {
  .nav--desktop { display: none; }
  .hamburger { display: inline-flex; }
  .header-phone { display: none; }
  .site-header__cta .btn--ghost { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trustbar { grid-template-columns: repeat(2, 1fr); }
  .form__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .stickybar { display: grid; }
  body { padding-bottom: 64px; }
  .header-phone { display: none; }
  .site-header__cta .btn span { display: inline; }
  .brand__name { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .checklist--cols { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
}
@media (max-width: 420px) {
  .site-header__cta .btn--sm span { display: none; }
  .site-header__cta .btn--sm { padding: 11px 13px; }
}

/* ---------- booking / secondary button ---------- */
.btn--secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }

/* ---------- hero with photo ---------- */
.hero--photo { background: var(--navy); }
.hero--photo .hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(6,12,28,0.93) 0%, rgba(6,12,28,0.82) 42%, rgba(9,26,54,0.55) 100%); }
.hero--photo::after { z-index: 1; }
.hero--photo .hero__inner { position: relative; z-index: 2; }

/* ---------- images / figures ---------- */
.img { width: 100%; height: auto; display: block; }
.figure { margin: 0; }
.figure--frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: #fff; }
.figure--frame figcaption { font-size: 0.88rem; color: var(--muted); padding: 10px 14px; background: #fff; }
.media-band { display: grid; gap: 28px; align-items: center; }
@media (min-width: 860px) { .media-band--split { grid-template-columns: 1.05fr 0.95fr; gap: 44px; } }
.figure--headshot { max-width: 340px; }
.figure--headshot figcaption { font-weight: 700; color: var(--ink); }

/* ---------- sticky bar book button ---------- */
.stickybar__btn--book { background: #fff; color: var(--navy); }
