/* ==========================================================================
   Infinite Love Home Care — Location Landing Page
   Scoped design system. Every rule lives under .ilhc-loc so the page cannot
   bleed into the theme and the theme cannot bleed into the page.

   PALETTE (brief §3): warm red, warm yellow, white only. The base hues are
   the brand values sampled from the live infinitelovehomecare.com build —
   red #DC2127 and yellow #FFC117 — not the brief's approximations, so this
   page matches the rest of the site. Everything else is a tint or shade of
   those two hues; no third hue is introduced. --ilhc-ink is a very dark warm
   red-brown (16.7:1 on white), never gray or black.

   TYPE: Red Hat Display + DM Sans, matching the live site's Elementor kit.
   ========================================================================== */

.ilhc-loc {
  /* --- brand (sampled from the live site) ------------------------------- */
  --ilhc-red:        #DC2127;  /* brand red — 4.90:1 with white, passes AA   */
  --ilhc-red-deep:   #B8181E;  /* links / hover — 6.59:1 on white            */
  --ilhc-red-darker: #981318;  /* 8.60:1 on white                            */
  --ilhc-ink:        #3D0C0E;  /* body text — 16.70:1 on white               */
  --ilhc-ink-soft:   #6E2E30;  /* muted text — 9.16:1 on white               */
  --ilhc-red-wash:   #FDF3F3;  /* ~4% red on white, section alternation      */
  --ilhc-red-line:   #F3D4D5;  /* hairlines and card borders                 */

  --ilhc-yellow:     #FFC117;  /* brand yellow — fills and icons only        */
  --ilhc-yellow-deep:#A67A00;  /* yellow dark enough for large text, 3.89:1  */
  --ilhc-yellow-wash:#FFF4D6;  /* ~12% yellow on white                       */
  --ilhc-yellow-soft:#FFF9E8;  /* palest yellow tint — 4.65:1 on brand red   */

  --ilhc-white:      #FFFFFF;

  /* --- type ------------------------------------------------------------- */
  /* Matches the live site's Elementor global fonts. */
  --ilhc-display: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ilhc-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ilhc-step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --ilhc-step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --ilhc-step-1:  clamp(1.15rem, 1.08rem + 0.34vw, 1.35rem);
  --ilhc-step-2:  clamp(1.4rem, 1.28rem + 0.6vw, 1.75rem);
  --ilhc-step-3:  clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --ilhc-step-4:  clamp(2.1rem, 1.6rem + 2.4vw, 3.5rem);

  /* --- space / shape ---------------------------------------------------- */
  --ilhc-gutter: clamp(1.15rem, 4vw, 2.5rem);
  --ilhc-max:    1180px;
  --ilhc-radius: 16px;
  --ilhc-radius-lg: 26px;
  --ilhc-shadow: 0 2px 4px rgba(61, 12, 14, .04), 0 14px 34px -18px rgba(61, 12, 14, .28);
  --ilhc-shadow-lift: 0 4px 10px rgba(61, 12, 14, .06), 0 26px 50px -22px rgba(61, 12, 14, .38);

  font-family: var(--ilhc-body);
  font-size: var(--ilhc-step-0);
  line-height: 1.65;
  color: var(--ilhc-ink);
  background: var(--ilhc-white);
  -webkit-font-smoothing: antialiased;
}

/* Single-theme by intent: the brand mandates a white ground in both OS themes,
   so every surface and every text color is painted explicitly below. */

/* --- resets, kept local -------------------------------------------------- */
.ilhc-loc *, .ilhc-loc *::before, .ilhc-loc *::after { box-sizing: border-box; }
.ilhc-loc img, .ilhc-loc svg { max-width: 100%; height: auto; display: block; }
.ilhc-loc h1, .ilhc-loc h2, .ilhc-loc h3, .ilhc-loc p, .ilhc-loc ul, .ilhc-loc figure { margin: 0; }
.ilhc-loc ul, .ilhc-loc ol { padding: 0; list-style: none; }
.ilhc-loc a { color: var(--ilhc-red-deep); text-underline-offset: 3px; }

.ilhc-loc h1, .ilhc-loc h2, .ilhc-loc h3 {
  font-family: var(--ilhc-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--ilhc-ink);
}
.ilhc-loc h1 { font-size: var(--ilhc-step-4); }
.ilhc-loc h2 { font-size: var(--ilhc-step-3); }
.ilhc-loc h3 { font-size: var(--ilhc-step-1); letter-spacing: -0.005em; }

.ilhc-loc :focus-visible {
  outline: 3px solid var(--ilhc-red);
  outline-offset: 3px;
  border-radius: 6px;
}
.ilhc-loc .ilhc-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- layout primitives --------------------------------------------------- */
.ilhc-loc .ilhc-wrap { width: 100%; max-width: var(--ilhc-max); margin-inline: auto; padding-inline: var(--ilhc-gutter); }
.ilhc-loc .ilhc-section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.ilhc-loc .ilhc-section--wash { background: var(--ilhc-red-wash); }
.ilhc-loc .ilhc-section--red { background: var(--ilhc-red); color: var(--ilhc-white); }
.ilhc-loc .ilhc-section--red h2, .ilhc-loc .ilhc-section--red h3 { color: var(--ilhc-white); }
.ilhc-loc .ilhc-prose { max-width: 62ch; display: flex; flex-direction: column; gap: 1.1em; }
.ilhc-loc .ilhc-prose p { color: var(--ilhc-ink-soft); }
.ilhc-loc .ilhc-section--red .ilhc-prose p { color: var(--ilhc-white); }

/* eyebrow + the recurring yellow rule: the page's one structural motif */
.ilhc-loc .ilhc-eyebrow {
  font-size: var(--ilhc-step--1);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ilhc-red);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.ilhc-loc .ilhc-eyebrow::before {
  content: "";
  width: 2.2rem; height: 5px; flex: none;
  border-radius: 3px;
  background: var(--ilhc-yellow);
}
.ilhc-loc .ilhc-section--red .ilhc-eyebrow { color: var(--ilhc-yellow); }
.ilhc-loc .ilhc-section--red .ilhc-eyebrow::before { background: var(--ilhc-white); }

.ilhc-loc .ilhc-head { display: flex; flex-direction: column; gap: 1rem; max-width: 44ch; }
.ilhc-loc .ilhc-head--center { margin-inline: auto; text-align: center; align-items: center; }
.ilhc-loc .ilhc-head--center .ilhc-eyebrow { justify-content: center; }
.ilhc-loc .ilhc-head p { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step-1); line-height: 1.5; }
.ilhc-loc .ilhc-section--red .ilhc-head p { color: var(--ilhc-white); }

/* --- buttons ------------------------------------------------------------- */
.ilhc-loc .ilhc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ilhc-body);
  font-size: var(--ilhc-step--1);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.65rem;
  min-height: 54px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
@media (prefers-reduced-motion: reduce) { .ilhc-loc .ilhc-btn { transition: none; } }
.ilhc-loc .ilhc-btn:hover { transform: translateY(-1px); }

.ilhc-loc .ilhc-btn--primary { background: var(--ilhc-red); color: var(--ilhc-white); border-color: var(--ilhc-red); }
.ilhc-loc .ilhc-btn--primary:hover { background: var(--ilhc-red-deep); border-color: var(--ilhc-red-deep); }

.ilhc-loc .ilhc-btn--ghost { background: var(--ilhc-white); color: var(--ilhc-red-deep); border-color: var(--ilhc-red-line); }
.ilhc-loc .ilhc-btn--ghost:hover { border-color: var(--ilhc-red); background: var(--ilhc-red-wash); }

.ilhc-loc .ilhc-btn--yellow { background: var(--ilhc-yellow); color: var(--ilhc-ink); border-color: var(--ilhc-yellow); }
.ilhc-loc .ilhc-btn--yellow:hover { background: #FFD455; border-color: #FFD455; }

.ilhc-loc .ilhc-btn--onred { background: transparent; color: var(--ilhc-white); border-color: rgba(255,255,255,.55); }
.ilhc-loc .ilhc-btn--onred:hover { background: rgba(255,255,255,.12); border-color: var(--ilhc-white); }

.ilhc-loc .ilhc-btn--block { width: 100%; }
.ilhc-loc .ilhc-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- header -------------------------------------------------------------- */
.ilhc-loc .ilhc-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ilhc-white);
  border-bottom: 1px solid var(--ilhc-red-line);
}
.ilhc-loc .ilhc-header__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 78px; padding-block: .7rem;
}
.ilhc-loc .ilhc-logo { display: inline-flex; align-items: center; text-decoration: none; }
.ilhc-loc .ilhc-logo img { max-height: 54px; width: auto; }
.ilhc-loc .ilhc-logo-placeholder {
  font-family: var(--ilhc-body); font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ilhc-red-deep);
  border: 2px dashed var(--ilhc-red); border-radius: 10px;
  padding: .6rem .85rem; line-height: 1.3; max-width: 15rem;
}
.ilhc-loc .ilhc-header__actions { display: flex; align-items: center; gap: 1rem; }
.ilhc-loc .ilhc-header__phone {
  font-weight: 800; font-size: var(--ilhc-step--1); letter-spacing: .08em; text-transform: uppercase;
  color: var(--ilhc-red-deep); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .45rem;
}
.ilhc-loc .ilhc-header__phone:hover { color: var(--ilhc-red); text-decoration: underline; }
.ilhc-loc .ilhc-header__phone svg { flex: none; width: 18px; height: 18px; }
.ilhc-loc .ilhc-header .ilhc-btn { padding: .85rem 1.3rem; min-height: 48px; }
@media (max-width: 800px) {
  .ilhc-loc .ilhc-header .ilhc-btn { display: none; }
  .ilhc-loc .ilhc-logo img { max-height: 44px; }
}
@media (max-width: 420px) { .ilhc-loc .ilhc-header__phone span { display: none; } }

/* --- hero ---------------------------------------------------------------- */
.ilhc-loc .ilhc-hero { position: relative; background: var(--ilhc-white); padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.ilhc-loc .ilhc-hero::before {
  content: ""; position: absolute; inset: 0 0 auto auto;
  width: min(46%, 620px); height: 100%;
  background: var(--ilhc-red-wash);
  border-bottom-left-radius: 240px;
  z-index: 0;
}
@media (max-width: 899px) { .ilhc-loc .ilhc-hero::before { display: none; } }
.ilhc-loc .ilhc-hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .ilhc-loc .ilhc-hero__grid { grid-template-columns: 1.05fr .95fr; } }
.ilhc-loc .ilhc-hero__copy { display: flex; flex-direction: column; gap: 1.35rem; }
.ilhc-loc .ilhc-hero__local {
  display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start;
  background: var(--ilhc-yellow-wash); color: var(--ilhc-red-darker);
  border: 1px solid var(--ilhc-yellow); border-radius: 999px;
  padding: .45rem 1rem; font-size: var(--ilhc-step--1); font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.ilhc-loc .ilhc-hero h1 .ilhc-mark {
  position: relative; white-space: nowrap; isolation: isolate;
}
.ilhc-loc .ilhc-hero h1 .ilhc-mark::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .28em;
  background: var(--ilhc-yellow); border-radius: 999px; opacity: .5; z-index: -1;
}
.ilhc-loc .ilhc-hero__sub { font-size: var(--ilhc-step-2); font-family: var(--ilhc-display); line-height: 1.28; color: var(--ilhc-red-deep); max-width: 22ch; }
.ilhc-loc .ilhc-hero__body { color: var(--ilhc-ink-soft); max-width: 54ch; }
.ilhc-loc .ilhc-hero__note { font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); }

.ilhc-loc .ilhc-hero__media { position: relative; }
.ilhc-loc .ilhc-figure {
  position: relative; overflow: hidden; border-radius: var(--ilhc-radius-lg);
  box-shadow: var(--ilhc-shadow-lift); background: var(--ilhc-red-wash);
}
.ilhc-loc .ilhc-figure img { width: 100%; height: 100%; object-fit: cover; }
.ilhc-loc .ilhc-figure--hero { aspect-ratio: 4 / 3.4; }
.ilhc-loc .ilhc-figure--pain { aspect-ratio: 4 / 3.2; }
.ilhc-loc .ilhc-photoslot {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: .6rem;
  align-items: center; justify-content: center; text-align: center;
  padding: 1.5rem; border: 3px dashed var(--ilhc-red-line); border-radius: inherit;
  background: var(--ilhc-red-wash);
}
.ilhc-loc .ilhc-photoslot b {
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ilhc-red);
}
.ilhc-loc .ilhc-photoslot span { font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); max-width: 34ch; line-height: 1.45; }

/* --- trust strip --------------------------------------------------------- */
.ilhc-loc .ilhc-trust { background: var(--ilhc-red); color: var(--ilhc-white); }
.ilhc-loc .ilhc-trust__list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,.28);
  border-radius: var(--ilhc-radius); overflow: hidden;
  margin-block: clamp(1.6rem, 4vw, 2.4rem);
}
@media (min-width: 780px) { .ilhc-loc .ilhc-trust__list { grid-template-columns: repeat(4, 1fr); } }
.ilhc-loc .ilhc-trust__item {
  background: var(--ilhc-red);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: 1.6rem 1rem; text-align: center;
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.ilhc-loc .ilhc-trust__item svg { width: 30px; height: 30px; color: var(--ilhc-yellow); }

/* --- icons --------------------------------------------------------------- */
.ilhc-loc .ilhc-icon { width: 28px; height: 28px; flex: none; color: var(--ilhc-red); }
.ilhc-loc .ilhc-iconwrap {
  width: 58px; height: 58px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  background: var(--ilhc-yellow-wash); border: 1px solid var(--ilhc-yellow);
}

/* --- channels (local traffic strategy) ----------------------------------- */
.ilhc-loc .ilhc-channels {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.ilhc-loc .ilhc-channel {
  display: flex; align-items: center; gap: .7rem;
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line);
  border-radius: 999px; padding: .8rem 1.1rem;
  font-size: var(--ilhc-step--1); font-weight: 700; color: var(--ilhc-ink);
}
.ilhc-loc .ilhc-channel svg { width: 20px; height: 20px; color: var(--ilhc-red); flex: none; }
.ilhc-loc .ilhc-converge {
  display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-top: 2rem; text-align: center;
}
.ilhc-loc .ilhc-converge__arrow { width: 2px; height: 42px; background: linear-gradient(var(--ilhc-yellow), var(--ilhc-red)); border-radius: 2px; }
.ilhc-loc .ilhc-converge__pill {
  background: var(--ilhc-red); color: var(--ilhc-white); border-radius: 999px;
  padding: .9rem 1.6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: var(--ilhc-step--1);
}
.ilhc-loc .ilhc-note {
  font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); max-width: 60ch;
  margin-top: 1.4rem; margin-inline: auto; text-align: center;
}

/* --- split (pain point) --------------------------------------------------- */
.ilhc-loc .ilhc-split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .ilhc-loc .ilhc-split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ilhc-loc .ilhc-split--flip .ilhc-split__media { order: -1; } }
.ilhc-loc .ilhc-beats { display: flex; flex-direction: column; gap: .85rem; margin-block: .4rem; }
.ilhc-loc .ilhc-beat {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: var(--ilhc-step-1); line-height: 1.45; color: var(--ilhc-ink);
}
.ilhc-loc .ilhc-beat::before {
  content: ""; margin-top: .62em; width: 1.15rem; height: 3px; flex: none;
  background: var(--ilhc-yellow); border-radius: 2px;
}
.ilhc-loc .ilhc-reassure {
  font-family: var(--ilhc-display); font-size: var(--ilhc-step-2); line-height: 1.3;
  color: var(--ilhc-red-deep); border-left: 5px solid var(--ilhc-yellow);
  padding-left: 1.15rem; margin-block: .4rem;
}

/* --- service cards -------------------------------------------------------- */
.ilhc-loc .ilhc-cards {
  display: grid; gap: 1.25rem; margin-top: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ilhc-loc .ilhc-card {
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line);
  border-radius: var(--ilhc-radius); padding: 1.7rem;
  display: flex; flex-direction: column; gap: .85rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
@media (prefers-reduced-motion: reduce) { .ilhc-loc .ilhc-card { transition: none; } }
.ilhc-loc .ilhc-card:hover { border-color: var(--ilhc-red); box-shadow: var(--ilhc-shadow); transform: translateY(-2px); }
.ilhc-loc .ilhc-card p { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step-0); }
.ilhc-loc .ilhc-card__link {
  margin-top: auto; align-self: flex-start; padding-top: .3rem;
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ilhc-red-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.ilhc-loc .ilhc-card__link:hover { text-decoration: underline; }
.ilhc-loc .ilhc-card__link svg { width: 14px; height: 14px; }

/* --- pillars -------------------------------------------------------------- */
.ilhc-loc .ilhc-pillars {
  display: grid; gap: 1.5rem 2rem; margin-top: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.ilhc-loc .ilhc-pillar { display: flex; flex-direction: column; gap: .7rem; }
.ilhc-loc .ilhc-pillar h3 { font-size: var(--ilhc-step-1); }
.ilhc-loc .ilhc-pillar p { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step--1); line-height: 1.6; }

/* --- highlight quote ------------------------------------------------------ */
.ilhc-loc .ilhc-quote {
  margin-top: clamp(2.2rem, 5vw, 3rem);
  background: var(--ilhc-yellow-wash);
  border-radius: var(--ilhc-radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}
.ilhc-loc .ilhc-quote p {
  font-family: var(--ilhc-display); font-size: var(--ilhc-step-2); line-height: 1.35;
  color: var(--ilhc-red-darker); max-width: 38ch; margin-inline: auto;
}

/* --- local card ----------------------------------------------------------- */
.ilhc-loc .ilhc-localcard {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line);
  border-radius: var(--ilhc-radius-lg); padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--ilhc-shadow);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .ilhc-loc .ilhc-localcard { grid-template-columns: 1.1fr .9fr; } }
.ilhc-loc .ilhc-localcard__body { display: flex; flex-direction: column; gap: 1rem; }
.ilhc-loc .ilhc-localcard__name { font-family: var(--ilhc-display); font-size: var(--ilhc-step-2); color: var(--ilhc-ink); }
.ilhc-loc .ilhc-meta { display: flex; flex-direction: column; gap: .8rem; }
.ilhc-loc .ilhc-meta__row { display: flex; gap: .8rem; align-items: flex-start; color: var(--ilhc-ink); }
.ilhc-loc .ilhc-meta__row svg { width: 22px; height: 22px; color: var(--ilhc-red); flex: none; margin-top: .15rem; }
.ilhc-loc .ilhc-meta__row a { font-weight: 800; color: var(--ilhc-red-deep); text-decoration: none; }
.ilhc-loc .ilhc-meta__row a:hover { text-decoration: underline; }
.ilhc-loc .ilhc-meta address { font-style: normal; line-height: 1.5; }

/* --- steps ---------------------------------------------------------------- */
.ilhc-loc .ilhc-steps {
  display: grid; gap: 1.25rem; margin-top: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: none;
}
.ilhc-loc .ilhc-step {
  position: relative; background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line);
  border-radius: var(--ilhc-radius); padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.ilhc-loc .ilhc-step__num {
  font-family: var(--ilhc-display); font-size: var(--ilhc-step-3); line-height: 1;
  color: var(--ilhc-yellow-deep);
  font-variant-numeric: tabular-nums;
}
.ilhc-loc .ilhc-step h3 { font-size: var(--ilhc-step-1); }
.ilhc-loc .ilhc-step p { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step--1); line-height: 1.6; }

/* --- testimonials --------------------------------------------------------- */
.ilhc-loc .ilhc-quotes {
  display: grid; gap: 1.25rem; margin-top: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.ilhc-loc .ilhc-tcard {
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line);
  border-radius: var(--ilhc-radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem; min-height: 220px;
}
.ilhc-loc .ilhc-tcard__glyph { font-family: var(--ilhc-display); font-size: 3rem; line-height: .6; color: var(--ilhc-yellow); }
.ilhc-loc .ilhc-tcard__slot {
  border: 2px dashed var(--ilhc-red-line); border-radius: 12px; padding: 1.1rem;
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .06em;
  color: var(--ilhc-red-deep); line-height: 1.5; flex: 1;
  display: flex; align-items: center;
}
.ilhc-loc .ilhc-tcard__note { font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); }
.ilhc-loc .ilhc-tcard blockquote { margin: 0; font-size: var(--ilhc-step-0); line-height: 1.6; color: var(--ilhc-ink); flex: 1; }
.ilhc-loc .ilhc-tcard figcaption { display: flex; flex-direction: column; gap: .2rem; }
.ilhc-loc .ilhc-tcard cite { font-style: normal; font-weight: 800; font-size: var(--ilhc-step--1); color: var(--ilhc-red-deep); }
.ilhc-loc .ilhc-tcard__source { font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); }

/* --- form ----------------------------------------------------------------- */
.ilhc-loc .ilhc-formgrid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .ilhc-loc .ilhc-formgrid { grid-template-columns: .85fr 1.15fr; } }
.ilhc-loc .ilhc-formaside { display: flex; flex-direction: column; gap: 1.4rem; }
.ilhc-loc .ilhc-formaside .ilhc-assure { display: flex; flex-direction: column; gap: .75rem; }
.ilhc-loc .ilhc-assure__row { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--ilhc-step-0); color: var(--ilhc-white); }
.ilhc-loc .ilhc-assure__row svg { width: 20px; height: 20px; color: var(--ilhc-yellow); flex: none; margin-top: .3rem; }
/* Pure --ilhc-yellow only reaches 3.5:1 on the red ground — fine for icons and
   filled shapes, short of 4.5:1 for text. Inline links use the yellow tint. */
.ilhc-loc .ilhc-link-onred { color: var(--ilhc-yellow-soft); font-weight: 700; text-decoration: underline; }
.ilhc-loc .ilhc-link-onred:hover { color: var(--ilhc-white); }

.ilhc-loc .ilhc-formcard {
  background: var(--ilhc-white); border-radius: var(--ilhc-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--ilhc-shadow-lift);
}
.ilhc-loc .ilhc-formcard__embed iframe { width: 100%; border: 0; display: block; min-height: 620px; }
.ilhc-loc .ilhc-form { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .ilhc-loc .ilhc-form { grid-template-columns: 1fr 1fr; } }
.ilhc-loc .ilhc-field { display: flex; flex-direction: column; gap: .4rem; }
.ilhc-loc .ilhc-field--full { grid-column: 1 / -1; }
.ilhc-loc .ilhc-field label {
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ilhc-ink);
}
.ilhc-loc .ilhc-field .ilhc-req { color: var(--ilhc-red); }
.ilhc-loc .ilhc-field input,
.ilhc-loc .ilhc-field select,
.ilhc-loc .ilhc-field textarea {
  font-family: var(--ilhc-body); font-size: var(--ilhc-step-0); color: var(--ilhc-ink);
  background: var(--ilhc-white);
  border: 1.5px solid var(--ilhc-red-line); border-radius: 12px;
  padding: .9rem 1rem; min-height: 52px; width: 100%;
}
.ilhc-loc .ilhc-field textarea { min-height: 120px; resize: vertical; }
.ilhc-loc .ilhc-field input:focus, .ilhc-loc .ilhc-field select:focus, .ilhc-loc .ilhc-field textarea:focus { border-color: var(--ilhc-red); }
.ilhc-loc .ilhc-formcard .ilhc-btn { grid-column: 1 / -1; }
.ilhc-loc .ilhc-formfoot { grid-column: 1 / -1; font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); line-height: 1.5; }
.ilhc-loc .ilhc-devnotice {
  grid-column: 1 / -1;
  border: 2px dashed var(--ilhc-red); border-radius: 12px; padding: .9rem 1.1rem;
  font-size: var(--ilhc-step--1); color: var(--ilhc-red-deep); font-weight: 700; line-height: 1.5;
}

/* Shown in place of the consultation form until GoHighLevel is connected. */
.ilhc-loc .ilhc-formfallback { display: flex; flex-direction: column; gap: 1rem; text-align: center; }
/* This card sits on the red section, whose rule paints h3 white — but the card
   itself is white, so the heading must be re-coloured at matching specificity. */
.ilhc-loc .ilhc-section--red .ilhc-formfallback h3 { font-size: var(--ilhc-step-2); color: var(--ilhc-ink); }
.ilhc-loc .ilhc-formfallback p { color: var(--ilhc-ink-soft); max-width: 46ch; margin-inline: auto; }
.ilhc-loc .ilhc-formfallback__alt { font-size: var(--ilhc-step--1); }
.ilhc-loc .ilhc-formfallback__alt a { color: var(--ilhc-red-deep); font-weight: 700; }

/* A section whose photo has not been supplied yet renders no media column for
   visitors, so the surrounding grid drops to a single column instead of
   leaving a hole. */
.ilhc-loc .ilhc-hero__media:empty,
.ilhc-loc .ilhc-split__media:empty { display: none; }
.ilhc-loc .ilhc-hero__grid:has(.ilhc-hero__media:empty),
.ilhc-loc .ilhc-split:has(.ilhc-split__media:empty) { grid-template-columns: 1fr; }

/* --- lead flow ------------------------------------------------------------ */
.ilhc-loc .ilhc-flow {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.ilhc-loc .ilhc-flow__sources {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; max-width: 640px;
}
.ilhc-loc .ilhc-flow__src {
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line); border-radius: 999px;
  padding: .5rem 1rem; font-size: var(--ilhc-step--1); font-weight: 700; color: var(--ilhc-ink);
}
.ilhc-loc .ilhc-flow__arrow { width: 2px; height: 26px; background: var(--ilhc-yellow); border-radius: 2px; }
.ilhc-loc .ilhc-flow__node {
  border-radius: 12px; padding: .8rem 1.4rem; text-align: center;
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  border: 1.5px solid var(--ilhc-red); color: var(--ilhc-red-deep); background: var(--ilhc-white);
  min-width: min(260px, 80vw);
}
.ilhc-loc .ilhc-flow__node--solid { background: var(--ilhc-red); color: var(--ilhc-white); }
.ilhc-loc .ilhc-flow__node--goal { background: var(--ilhc-yellow); border-color: var(--ilhc-yellow); color: var(--ilhc-ink); }

/* --- newsletter ------------------------------------------------------------ */
.ilhc-loc .ilhc-news {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr;
  background: var(--ilhc-yellow-wash); border-radius: var(--ilhc-radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}
@media (min-width: 860px) { .ilhc-loc .ilhc-news { grid-template-columns: 1fr 1fr; } }
.ilhc-loc .ilhc-news__form { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .ilhc-loc .ilhc-news__form { grid-template-columns: 1fr 1fr; } }
.ilhc-loc .ilhc-news__form .ilhc-btn { grid-column: 1 / -1; }
.ilhc-loc .ilhc-news__form .ilhc-devnotice { background: var(--ilhc-white); }

/* --- FAQ ------------------------------------------------------------------- */
.ilhc-loc .ilhc-faq { margin-top: clamp(2rem, 5vw, 3rem); max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.ilhc-loc .ilhc-faq details {
  background: var(--ilhc-white); border: 1px solid var(--ilhc-red-line); border-radius: var(--ilhc-radius);
  overflow: hidden;
}
.ilhc-loc .ilhc-faq details[open] { border-color: var(--ilhc-red); }
.ilhc-loc .ilhc-faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ilhc-display); font-size: var(--ilhc-step-1); color: var(--ilhc-ink); line-height: 1.3;
}
.ilhc-loc .ilhc-faq summary::-webkit-details-marker { display: none; }
.ilhc-loc .ilhc-faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  border-right: 2.5px solid var(--ilhc-red); border-bottom: 2.5px solid var(--ilhc-red);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .2s ease;
}
.ilhc-loc .ilhc-faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
@media (prefers-reduced-motion: reduce) { .ilhc-loc .ilhc-faq summary::after { transition: none; } }
.ilhc-loc .ilhc-faq__a { padding: 0 1.4rem 1.4rem; color: var(--ilhc-ink-soft); max-width: 68ch; }

/* --- final CTA -------------------------------------------------------------- */
.ilhc-loc .ilhc-final { background: var(--ilhc-red); color: var(--ilhc-white); text-align: center; }
.ilhc-loc .ilhc-final h2 { color: var(--ilhc-white); max-width: 20ch; margin-inline: auto; }
.ilhc-loc .ilhc-final p { color: var(--ilhc-white); max-width: 58ch; margin-inline: auto; }
.ilhc-loc .ilhc-final .ilhc-actions { justify-content: center; margin-top: 2rem; }
.ilhc-loc .ilhc-final__rule { width: 64px; height: 6px; background: var(--ilhc-yellow); border-radius: 3px; margin: 0 auto 1.6rem; }

/* --- footer ----------------------------------------------------------------- */
.ilhc-loc .ilhc-footer { background: var(--ilhc-white); border-top: 4px solid var(--ilhc-yellow); padding-block: clamp(2.5rem, 6vw, 4rem); }
.ilhc-loc .ilhc-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .ilhc-loc .ilhc-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.ilhc-loc .ilhc-footer h3 {
  font-family: var(--ilhc-body); font-size: var(--ilhc-step--1); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ilhc-red); margin-bottom: .9rem;
}
.ilhc-loc .ilhc-footer ul { display: flex; flex-direction: column; gap: .55rem; }
.ilhc-loc .ilhc-footer a { color: var(--ilhc-ink); text-decoration: none; }
.ilhc-loc .ilhc-footer a:hover { color: var(--ilhc-red); text-decoration: underline; }
.ilhc-loc .ilhc-footer__brand { display: flex; flex-direction: column; gap: .9rem; }
.ilhc-loc .ilhc-footer__brand p { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step--1); line-height: 1.6; }
.ilhc-loc .ilhc-social { flex-direction: row !important; flex-wrap: wrap; gap: .6rem !important; }
.ilhc-loc .ilhc-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ilhc-red-line);
  display: grid; place-items: center; color: var(--ilhc-red);
}
.ilhc-loc .ilhc-social a:hover { background: var(--ilhc-red-wash); border-color: var(--ilhc-red); }
.ilhc-loc .ilhc-social svg { width: 18px; height: 18px; }
.ilhc-loc .ilhc-footer__bar {
  margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--ilhc-red-line);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft);
}
.ilhc-loc .ilhc-slot-inline {
  display: inline-block; border: 2px dashed var(--ilhc-red-line); border-radius: 8px;
  padding: .3rem .6rem; font-size: .74rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ilhc-red-deep);
}

/* --- breadcrumb --------------------------------------------------------------- */
.ilhc-loc .ilhc-crumbs { padding-top: 1.1rem; font-size: var(--ilhc-step--1); color: var(--ilhc-ink-soft); }
.ilhc-loc .ilhc-crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; }
.ilhc-loc .ilhc-crumbs li::after { content: "/"; margin-left: .4rem; color: var(--ilhc-red-line); }
.ilhc-loc .ilhc-crumbs li:last-child::after { content: ""; }
.ilhc-loc .ilhc-crumbs a { color: var(--ilhc-ink-soft); text-decoration: none; }
.ilhc-loc .ilhc-crumbs a:hover { color: var(--ilhc-red); text-decoration: underline; }

/* --- mobile sticky CTA --------------------------------------------------------- */
.ilhc-loc .ilhc-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: .6rem; padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: var(--ilhc-white); border-top: 1px solid var(--ilhc-red-line);
  box-shadow: 0 -8px 24px -14px rgba(61,12,14,.4);
}
.ilhc-loc .ilhc-sticky .ilhc-btn { flex: 1; padding: .95rem .6rem; min-height: 52px; font-size: .74rem; letter-spacing: .06em; }
@media (max-width: 800px) {
  .ilhc-loc .ilhc-sticky { display: flex; }
  /* The offset goes on the document, not on .ilhc-loc — in Elementor every
     section emits its own .ilhc-loc wrapper, so a rule here would stack 76px
     of padding under all nineteen of them. */
  body.ilhc-location-page { padding-bottom: 76px; }
}
@media print { .ilhc-loc .ilhc-sticky, .ilhc-loc .ilhc-header { position: static; } }

/* --- scroll reveal (opt-in, respects reduced motion) ---------------------------- */
.ilhc-loc .ilhc-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.ilhc-loc .ilhc-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ilhc-loc .ilhc-reveal { opacity: 1; transform: none; transition: none; }
}
.ilhc-loc.no-js .ilhc-reveal { opacity: 1; transform: none; }

/* --- locations index ------------------------------------------------------
   Used by [ilhc_locations] on the /locations/ page. Sits inside the site's own
   Elementor layout, so it keeps its padding modest and does not go full-bleed. */
.ilhc-loc .ilhc-locindex { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.ilhc-loc .ilhc-locindex .ilhc-wrap { padding-inline: 0; }

.ilhc-loc .ilhc-loccards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.ilhc-loc .ilhc-loccard {
  display: flex; flex-direction: column; gap: 1.25rem;
  background: var(--ilhc-white);
  border: 1px solid var(--ilhc-red-line);
  border-radius: var(--ilhc-radius);
  padding: 1.75rem;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
@media (prefers-reduced-motion: reduce) { .ilhc-loc .ilhc-loccard { transition: none; } }
.ilhc-loc .ilhc-loccard:hover { border-color: var(--ilhc-red); box-shadow: var(--ilhc-shadow); transform: translateY(-2px); }
.ilhc-loc .ilhc-loccard__body { display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.ilhc-loc .ilhc-loccard__eyebrow {
  display: flex; align-items: center; gap: .45rem;
  font-size: var(--ilhc-step--1); font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ilhc-red);
}
.ilhc-loc .ilhc-loccard__eyebrow svg { width: 16px; height: 16px; flex: none; }
.ilhc-loc .ilhc-loccard__city { font-size: var(--ilhc-step-2); line-height: 1.15; }
.ilhc-loc .ilhc-loccard__city a { color: var(--ilhc-ink); text-decoration: none; }
.ilhc-loc .ilhc-loccard__city a:hover { color: var(--ilhc-red-deep); text-decoration: underline; }
.ilhc-loc .ilhc-loccard__blurb { color: var(--ilhc-ink-soft); font-size: var(--ilhc-step-0); }
.ilhc-loc .ilhc-loccard__meta { display: flex; flex-direction: column; gap: .5rem; margin-top: auto; padding-top: .3rem; }
.ilhc-loc .ilhc-loccard__row {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: var(--ilhc-step--1); color: var(--ilhc-ink);
}
.ilhc-loc .ilhc-loccard__row svg { width: 18px; height: 18px; color: var(--ilhc-red); flex: none; margin-top: .15rem; }
.ilhc-loc .ilhc-loccard__row a { color: var(--ilhc-red-deep); font-weight: 800; text-decoration: none; }
.ilhc-loc .ilhc-loccard__row a:hover { text-decoration: underline; }
.ilhc-loc .ilhc-loccard__cta { width: 100%; }
.ilhc-loc .ilhc-loccard__cta svg { width: 15px; height: 15px; }
