/* ==========================================================================
   LocalGrow360 — Single Location Page
   Loaded only by templates/locations/single.php.

   EVERY selector is namespaced under .loc-page (and every class carries a
   `loc-` prefix) so this file can never collide with site.css, blog.css,
   footer-premium.css or service-redesign.css. In particular the reference
   design's generic `.container`, `.btn`, `.faq-item`, `.breadcrumb` and the
   bare `section{padding:...}` rule are all rewritten as `.loc-*` — a bare
   `section` rule would otherwise re-pad the global header and footer on
   this page only.

   Colour tokens are local (--loc-*) and derived from the sitewide palette
   in site.css, with the reference design's pink midpoint added for the
   3-stop gradient. site.css's :root is never modified.
   ========================================================================== */

.loc-page {
  /* Surfaces */
  --loc-bg:            #070B15;
  --loc-card:          #101827;
  --loc-card-2:        #111A2A;
  --loc-border:        rgba(255, 255, 255, .12);
  --loc-border-strong: rgba(255, 255, 255, .18);

  /* Type */
  --loc-text:  #FFFFFF;
  --loc-muted: #AAB2C0;

  /* Accents — --orange / --purple mirror site.css; pink is the gradient midpoint */
  --loc-orange: #FF6A2A;
  --loc-pink:   #E84D78;
  --loc-purple: #A94DFF;
  --loc-grad:      linear-gradient(90deg, var(--loc-orange), var(--loc-pink), var(--loc-purple));
  --loc-grad-soft: linear-gradient(135deg, rgba(255, 106, 42, .18), rgba(169, 77, 255, .14));

  /* Geometry */
  --loc-radius-lg: 20px;
  --loc-radius-md: 14px;
  --loc-radius-sm: 10px;
  --loc-max:       1220px;
  --loc-space:     110px;

  background: var(--loc-bg);
  color: var(--loc-text);
  overflow-x: hidden;
}

.loc-page * { box-sizing: border-box; }
.loc-page img { max-width: 100%; display: block; }
.loc-page a { color: inherit; text-decoration: none; }
.loc-page button { font-family: inherit; cursor: pointer; }

/* Scoped section rhythm — never a bare `section` selector. */
.loc-section { padding: var(--loc-space) 0; position: relative; }

.loc-container {
  max-width: var(--loc-max);
  margin: 0 auto;
  padding: 0 24px;
}

.loc-eyebrow {
  display: inline-block;
  color: var(--loc-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.loc-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

.loc-desc {
  color: var(--loc-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 0 28px;
}

/* ── Check list ─────────────────────────────────────────────────────────── */
.loc-checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--loc-muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.loc-checks svg { flex-shrink: 0; margin-top: 3px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.loc-btn svg { transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.loc-btn--primary {
  background: var(--loc-grad);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 42, .25);
}
.loc-btn--primary:hover { background-position: 60% 0; transform: translateY(-2px); }
.loc-btn--primary:hover svg { transform: translateX(4px); }
.loc-btn--outline {
  background: transparent;
  color: var(--loc-text);
  border: 1px solid var(--loc-border-strong);
}
.loc-btn--outline:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .03); transform: translateY(-2px); }
.loc-btn--outline:hover svg { transform: translateX(4px); }
.loc-btn:focus-visible { outline: 2px solid var(--loc-orange); outline-offset: 2px; }

/* ==========================================================================
   HERO — ported from the Services page hero (service-redesign.css
   .svc-hero-v2) so both page types share one identical hero treatment:
   gradient SVG rings, spotlight, bottom glow, drifting particles, gradient
   heading with underline, and pill buttons.

   The class names are loc- prefixed rather than reusing .svc-*, so this page
   stays self-contained and service-redesign.css is never loaded here (it
   also carries the services sidebar/pricing layout, which locations don't
   use). Values below are copied 1:1 from the services hero.

   IMPORTANT: the site nav is `position: fixed` (site.css line 218) and 70px
   tall, so the hero MUST reserve top padding for it. Without that clearance
   the breadcrumb and badge render underneath the navbar.
   ========================================================================== */
.loc-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 3rem;   /* top clearance for the fixed 70px nav */
}
.loc-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.loc-hero__bg-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(30, 20, 40, .55) 0%, rgba(10, 14, 26, 0) 60%), var(--loc-bg);
}
.loc-hero__spotlight {
  position: absolute; top: 32%; left: 50%; width: 900px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 43, .35) 0%, rgba(168, 85, 247, .2) 42%, transparent 72%);
  opacity: .35; filter: blur(60px);
}
.loc-hero__rings { position: absolute; top: 50%; transform: translateY(-50%); width: 520px; height: 900px; }
.loc-hero__rings--left  { left: -160px; }
.loc-hero__rings--right { right: -160px; }
.loc-hero__rings-spin circle { opacity: .14; stroke-width: 1.1px; }
.loc-hero__rings-spin { transform-origin: center; animation: locRingsRotate 60s linear infinite; }
.loc-hero__rings-spin--reverse { animation-direction: reverse; }
@keyframes locRingsRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.loc-hero__bottom-glow {
  position: absolute; bottom: -120px; left: 50%; width: 700px; height: 300px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 107, 43, .28) 0%, transparent 70%);
  filter: blur(80px); opacity: .3;
}
.loc-hero__particles { position: absolute; inset: 0; }
.loc-particle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--loc-text); opacity: .06; }
.loc-particle.p1 { top: 20%; left: 15%; animation: locFloatA 14s ease-in-out infinite; }
.loc-particle.p2 { top: 65%; left: 22%; animation: locFloatB 18s ease-in-out infinite; }
.loc-particle.p3 { top: 35%; left: 80%; animation: locFloatA 16s ease-in-out infinite reverse; }
.loc-particle.p4 { top: 75%; left: 85%; animation: locFloatB 20s ease-in-out infinite; }
.loc-particle.p5 { top: 15%; left: 60%; animation: locFloatA 22s ease-in-out infinite; }
.loc-particle.p6 { top: 55%; left: 45%; animation: locFloatB 17s ease-in-out infinite reverse; }
@keyframes locFloatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(24px, -30px); } }
@keyframes locFloatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 26px); } }

.loc-hero__content {
  position: relative; z-index: 1; max-width: 1280px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.loc-crumb {
  display: flex; align-items: center; gap: .5rem; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--loc-muted); margin-bottom: 2rem; flex-wrap: wrap;
  justify-content: center;
}
.loc-crumb a { color: var(--loc-muted); text-decoration: none; transition: color .25s ease; }
.loc-crumb a:hover { color: var(--loc-text); }
.loc-crumb .sep { color: rgba(255, 255, 255, .25); }
.loc-crumb .loc-crumb-cur { color: var(--loc-orange); }

.loc-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 106, 42, .4);
  border-radius: 999px;
  color: var(--loc-orange);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.loc-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: 1.15;
  letter-spacing: -.02em; margin: 0;
}
.loc-hero__heading .line { display: block; }
.loc-hero__heading .grad {
  background: linear-gradient(90deg, var(--loc-orange), var(--loc-purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.loc-hero__underline {
  width: 90px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--loc-orange), var(--loc-purple));
  margin: 2rem 0;
}
.loc-hero__desc {
  max-width: 700px; font-size: 1.15rem; line-height: 1.9;
  color: rgba(255, 255, 255, .72); margin-bottom: 2.5rem;
}
.loc-hero__actions {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: center;
}
.loc-hbtn {
  display: inline-flex; align-items: center; gap: .8rem; height: 58px; padding: 0 2rem;
  border-radius: 999px; font-family: 'Space Grotesk', sans-serif; font-size: 1rem;
  font-weight: 600; text-decoration: none;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1), background .35s ease, border-color .35s ease;
}
.loc-hbtn svg { transition: transform .35s cubic-bezier(.16, 1, .3, 1); }
.loc-hbtn--primary { color: #fff; background: linear-gradient(90deg, var(--loc-orange), #FF8A50); box-shadow: 0 8px 30px rgba(255, 107, 43, .35); }
.loc-hbtn--primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255, 107, 43, .55); }
.loc-hbtn--primary:hover svg { transform: translateX(4px); }
.loc-hbtn--secondary { color: var(--loc-text); background: transparent; border: 1px solid rgba(255, 255, 255, .18); }
.loc-hbtn--secondary:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .32); }
.loc-hbtn--secondary:hover svg { transform: translateX(4px); }

/* Hero entrance stagger (mirrors .svc-reveal). */
.loc-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1); }
.loc-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .loc-reveal { transition: none; opacity: 1; transform: none; }
  .loc-hero__rings-spin, .loc-particle { animation: none !important; }
}

@media (max-width: 1200px) {
  .loc-hero__rings--left  { left: -220px; }
  .loc-hero__rings--right { right: -220px; }
}
@media (max-width: 900px) {
  .loc-hero { min-height: auto; padding: calc(70px + 2rem) 1.5rem 3rem; }
  .loc-hero__rings { width: 340px; height: 640px; }
  .loc-hero__rings--left  { left: -190px; }
  .loc-hero__rings--right { right: -190px; }
  .loc-hero__spotlight { width: 640px; height: 400px; }
}
@media (max-width: 640px) {
  .loc-hero { padding: calc(70px + 1.5rem) 1.25rem 2.5rem; min-height: auto; }
  .loc-hero__heading { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .loc-hero__underline { margin: 1.25rem 0; }
  .loc-hero__desc { font-size: .95rem; line-height: 1.7; margin-bottom: 1.75rem; }
  .loc-hero__actions { flex-direction: column; width: 100%; gap: .8rem; }
  .loc-hbtn { width: 100%; height: 54px; justify-content: center; }
  .loc-hero__rings { width: 220px; height: 480px; opacity: .7; }
  .loc-hero__rings--left  { left: -150px; }
  .loc-hero__rings--right { right: -150px; }
  .loc-hero__rings-spin circle { opacity: .28; }
  .loc-hero__spotlight { width: 420px; height: 320px; opacity: .5; }
  .loc-hero__bottom-glow { width: 380px; height: 200px; bottom: -100px; }
  .loc-crumb { font-size: 11px; }
}


/* ==========================================================================
   METRICS
   ========================================================================== */
.loc-metrics { padding-top: 0; padding-bottom: 0; margin-top: -10px; position: relative; z-index: 1; }
.loc-metrics-card {
  background: var(--loc-card);
  border: 1px solid var(--loc-border);
  border-radius: var(--loc-radius-lg);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Column count follows how many metrics are actually filled in, so a page
   with only two metrics shows two centred columns rather than two blanks. */
.loc-metrics-card--3 { grid-template-columns: repeat(3, 1fr); }
.loc-metrics-card--2 { grid-template-columns: repeat(2, 1fr); }
.loc-metrics-card--1 { grid-template-columns: minmax(0, 320px); justify-content: center; }
.loc-metric { text-align: center; padding: 0 12px; border-right: 1px solid var(--loc-border); }
.loc-metric:last-child { border-right: none; }
.loc-metric-icon { width: 40px; height: 40px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.loc-metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 6px;
}
.loc-metric-lbl { color: var(--loc-muted); font-size: 13.5px; line-height: 1.4; }

/* ==========================================================================
   WHY LOCAL SEO  (two-column: text + image)
   ========================================================================== */
.loc-intro .loc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* When no image has been set in the CMS, the text spans the full width
   instead of leaving an empty column. */
.loc-intro.loc-intro--noimg .loc-container { grid-template-columns: 1fr; }
.loc-intro.loc-intro--noimg .loc-desc { max-width: 820px; }

.loc-intro-media { position: relative; }
.loc-intro-media img {
  border-radius: var(--loc-radius-lg);
  border: 1px solid var(--loc-border-strong);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(169, 77, 255, .12), 0 0 40px rgba(255, 106, 42, .08);
}
.loc-dots {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(rgba(255, 255, 255, .25) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: -1;
}

/* Second line under a tick-list item (why_us Point Description). */
.loc-check-desc { display: block; margin-top: 4px; font-size: 14px; color: var(--loc-muted); opacity: .85; }

/* ==========================================================================
   BODY CONTENT / PROSE
   Renders the `body` section's heading + rich-text slots. CMS::rich() emits
   real HTML here (p / h2-h4 / ul / ol / blockquote / a / img / table), so
   every one of those tags needs a style — otherwise rich-text content looks
   unstyled even though it rendered correctly.
   ========================================================================== */
.loc-prose { padding-top: 0; }
.loc-prose-block { max-width: 900px; margin: 0 auto; }
.loc-prose-block + .loc-prose-block { margin-top: 56px; }
.loc-prose-img { margin: 0 0 28px; }
.loc-prose-img img {
  width: 100%;
  border-radius: var(--loc-radius-lg);
  border: 1px solid var(--loc-border-strong);
}

.loc-prose-body { color: var(--loc-muted); font-size: 16px; line-height: 1.85; }
.loc-prose-body > *:first-child { margin-top: 0; }
.loc-prose-body > *:last-child  { margin-bottom: 0; }
.loc-prose-body p { margin: 0 0 1.15em; }
.loc-prose-body h2,
.loc-prose-body h3,
.loc-prose-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--loc-text);
  line-height: 1.3;
  margin: 1.8em 0 .6em;
}
.loc-prose-body h2 { font-size: 26px; }
.loc-prose-body h3 { font-size: 21px; }
.loc-prose-body h4 { font-size: 18px; }
.loc-prose-body strong, .loc-prose-body b { color: var(--loc-text); font-weight: 700; }
.loc-prose-body a { color: var(--loc-orange); text-decoration: underline; text-underline-offset: 3px; }
.loc-prose-body a:hover { color: var(--loc-text); }
.loc-prose-body ul,
.loc-prose-body ol { margin: 0 0 1.15em; padding-left: 1.35em; }
.loc-prose-body li { margin-bottom: .5em; }
.loc-prose-body ul li::marker { color: var(--loc-orange); }
.loc-prose-body ol li::marker { color: var(--loc-orange); font-weight: 700; }
.loc-prose-body blockquote {
  margin: 1.5em 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--loc-orange);
  color: var(--loc-text);
  font-style: italic;
}
.loc-prose-body img { border-radius: var(--loc-radius-md); margin: 1em 0; }
.loc-prose-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14.5px;
}
.loc-prose-body th,
.loc-prose-body td { border: 1px solid var(--loc-border); padding: 10px 14px; text-align: left; }
.loc-prose-body th { background: var(--loc-card-2); color: var(--loc-text); font-weight: 600; }

/* Pull-quote used inside a prose block (not overlapping an image). */
.loc-quote--inline { margin: 28px 0 0; }

/* ==========================================================================
   APPROACH STEPS
   ========================================================================== */
.loc-approach { text-align: center; }
.loc-approach .loc-heading,
.loc-approach .loc-desc { margin-left: auto; margin-right: auto; }
.loc-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  align-items: stretch;
}
/* The connector arrows sit between cards as real grid children, so the
   column count changes with the number of steps actually filled in. */
.loc-approach-grid--4 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.loc-approach-grid--3 { grid-template-columns: 1fr auto 1fr auto 1fr; }
.loc-approach-grid--2 { grid-template-columns: 1fr auto 1fr; }
.loc-approach-grid--1 { grid-template-columns: minmax(0, 380px); justify-content: center; }

.loc-approach-card {
  background: var(--loc-card);
  border: 1px solid var(--loc-border);
  border-radius: var(--loc-radius-md);
  padding: 28px 22px;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease;
}
.loc-approach-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, .22); }
.loc-approach-arrow { display: flex; align-items: center; justify-content: center; color: var(--loc-orange); padding: 0 6px; }
.loc-approach-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--loc-grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.loc-approach-icon { margin-bottom: 14px; height: 26px; }
.loc-approach-card h3 { font-size: 17px; margin: 0 0 8px; }
.loc-approach-card p { font-size: 14px; color: var(--loc-muted); margin: 0; line-height: 1.65; }

/* ==========================================================================
   SERVICE AREA CHIPS
   ========================================================================== */
.loc-areas { text-align: center; padding-top: 0; }
.loc-areas .loc-heading { margin-left: auto; margin-right: auto; max-width: 700px; }
.loc-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0 24px; }
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--loc-border);
  background: var(--loc-card);
  font-size: 13.5px;
  color: var(--loc-muted);
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.loc-chip:hover { border-color: rgba(255, 255, 255, .3); color: var(--loc-text); transform: translateY(-2px); }
.loc-chip--current {
  border-color: rgba(255, 106, 42, .5);
  color: var(--loc-orange);
  background: rgba(255, 106, 42, .08);
}
.loc-areas-note { color: var(--loc-muted); font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   STRATEGY  (text + image with overlapping quote card)
   ========================================================================== */
.loc-strategy .loc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.loc-strategy.loc-strategy--noimg .loc-container { grid-template-columns: 1fr; }
.loc-strategy.loc-strategy--noimg .loc-desc { max-width: 820px; }

.loc-strategy-media { position: relative; }
.loc-strategy-media img {
  border-radius: var(--loc-radius-lg);
  border: 1px solid var(--loc-border-strong);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.loc-quote {
  position: relative;
  margin: -70px 32px 0;
  background: linear-gradient(135deg, rgba(255, 106, 42, .18), rgba(169, 77, 255, .14)), var(--loc-card-2);
  border: 1px solid var(--loc-border-strong);
  border-radius: var(--loc-radius-md);
  padding: 26px 28px;
  z-index: 2;
}
/* Quote with no image above it sits on its own, not pulled up. */
.loc-strategy--noimg .loc-quote { margin: 8px 0 0; max-width: 620px; }
.loc-quote-mark { font-size: 32px; color: var(--loc-orange); line-height: 1; margin-bottom: 8px; display: block; }
.loc-quote p { font-size: 15.5px; margin: 0 0 10px; font-style: italic; line-height: 1.7; }
.loc-quote-attr { color: var(--loc-muted); font-size: 13.5px; font-style: normal; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.loc-services { text-align: center; }
.loc-services .loc-heading,
.loc-services .loc-desc { margin-left: auto; margin-right: auto; }
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}
.loc-service-card {
  background: var(--loc-card);
  border: 1px solid var(--loc-border);
  border-radius: var(--loc-radius-md);
  padding: 24px 20px;
  transition: transform .2s ease, border-color .2s ease;
}
.loc-service-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .22); }
.loc-service-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--loc-grad-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
/* Tabler icon webfont — already loaded sitewide by templates/partials/header.php */
.loc-service-icon i { color: var(--loc-orange); font-size: 19px; line-height: 1; }
.loc-service-card h3 { font-size: 15.5px; margin: 0 0 8px; line-height: 1.35; }
.loc-service-card p { font-size: 13.5px; color: var(--loc-muted); margin: 0; line-height: 1.65; }
.loc-services-cta { text-align: center; margin-top: 36px; }

/* ==========================================================================
   FAQ  (namespaced — site.css already defines a global .faq-item)
   ========================================================================== */
.loc-faq .loc-heading { text-align: center; margin-bottom: 44px; }
.loc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.loc-faq-item {
  background: var(--loc-card);
  border: 1px solid var(--loc-border);
  border-radius: var(--loc-radius-sm);
  overflow: hidden;
}
.loc-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--loc-text);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}
.loc-faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; margin-left: 16px; }
.loc-faq-icon::before,
.loc-faq-icon::after { content: ""; position: absolute; background: var(--loc-orange); transition: transform .25s ease; }
.loc-faq-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.loc-faq-icon::after  { top: 2px; left: 9px; width: 2px; height: 16px; }
.loc-faq-item.is-open .loc-faq-icon::after { transform: rotate(90deg); }
.loc-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.loc-faq-a-inner { padding: 0 22px 20px; color: var(--loc-muted); font-size: 14.5px; line-height: 1.75; }

/* ==========================================================================
   FINAL CTA CARD
   ========================================================================== */
.loc-final { padding-top: 0; }
.loc-final-card {
  background: var(--loc-card);
  border: 1px solid var(--loc-border);
  border-radius: var(--loc-radius-lg);
  overflow: hidden;
}
.loc-final-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.loc-final-text { max-width: 560px; }
.loc-final-top h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; margin: 0 0 8px; }
.loc-final-top p { margin: 0; color: var(--loc-muted); font-size: 14.5px; }
.loc-final-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.loc-final-divider { border-top: 1px solid var(--loc-border); }
.loc-final-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 22px 40px;
}
.loc-trust-item { display: flex; align-items: center; gap: 10px; color: var(--loc-muted); font-size: 13.5px; }
.loc-trust-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--loc-grad-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .loc-page .loc-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .loc-page .loc-fade.is-visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .loc-page *, .loc-page *::before, .loc-page *::after { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   Tiers: 1600+ / 1200-1599 / 1024-1199 / 900-1023 / 768-899 / 576-767 / 375-575 / 320-374
   Additive max-width cascade — a wider tier's rules still apply below it
   unless explicitly overridden.
   ========================================================================== */

/* ---- Large desktop: cap ring size so it never dominates ---- */
@media (min-width: 1600px) {
}

/* ---- Tablet landscape / small desktop ---- */
@media (max-width: 1199px) {
  .loc-page { --loc-space: 88px; }
  .loc-approach-grid,
  .loc-approach-grid--4,
  .loc-approach-grid--3,
  .loc-approach-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .loc-approach-arrow { display: none; }
  .loc-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Tablet portrait ---- */
@media (max-width: 900px) {
  .loc-intro .loc-container,
  .loc-strategy .loc-container { grid-template-columns: 1fr; gap: 32px; }
  .loc-strategy-media { order: 1; }
  .loc-strategy-text  { order: 2; }
  .loc-quote { margin-left: 0; margin-right: 0; margin-top: -56px; }
  .loc-faq-grid { grid-template-columns: 1fr; }
  .loc-intro-media img,
  .loc-strategy-media img { height: 320px; }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .loc-page { --loc-space: 64px; }
  .loc-container { padding: 0 20px; }
  .loc-metrics-card { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; padding: 28px 16px; }
  .loc-metric { border-right: none; border-bottom: 1px solid var(--loc-border); padding-bottom: 20px; }
  .loc-metric:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .loc-approach-grid,
  .loc-approach-grid--4,
  .loc-approach-grid--3,
  .loc-approach-grid--2 { grid-template-columns: 1fr; gap: 14px; }
  .loc-services-grid { grid-template-columns: 1fr; gap: 14px; }
  .loc-final-top { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .loc-final-actions { width: 100%; }
  .loc-final-actions .loc-btn { width: 100%; justify-content: center; }
  .loc-final-text { max-width: 100%; }
  .loc-final-trust { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .loc-dots { display: none; }
  .loc-heading { font-size: clamp(24px, 6vw, 32px); }
}

/* ---- Small phones ---- */
@media (max-width: 575px) {
  .loc-hero { padding-top: 48px; padding-bottom: 44px; }
  .loc-crumb { font-size: 11px; line-height: 1.6; }
  .loc-metrics-card { padding: 22px 12px; gap: 20px 10px; }
  .loc-metric-val { font-size: 22px; }
  .loc-metric-lbl { font-size: 12.5px; }
  .loc-chips { gap: 8px; }
  .loc-chip { padding: 7px 13px; font-size: 12.5px; }
  .loc-quote { padding: 20px; margin-top: -40px; }
  .loc-quote p { font-size: 14.5px; }
  .loc-final-top h2 { font-size: 20px; }
  .loc-faq-q { padding: 15px 16px; font-size: 14px; }
  .loc-faq-a-inner { padding: 0 16px 16px; }
  .loc-intro-media img,
  .loc-strategy-media img { height: 240px; }
}

/* ---- Extra-small phones ---- */
@media (max-width: 374px) {
  .loc-container { padding: 0 16px; }
  .loc-badge { font-size: 11px; padding: 5px 12px; }
  .loc-btn { padding: 13px 18px; font-size: 14px; }
  .loc-metrics-card { grid-template-columns: 1fr 1fr; padding: 18px 10px; }
  .loc-approach-card,
  .loc-service-card { padding: 20px 16px; }
  .loc-final-top { padding: 20px 18px; }
  .loc-final-trust { padding: 18px; }
}

/* ---- Guard rail: nothing inside the page may cause sideways scroll ---- */
.loc-page,
.loc-page * { max-width: 100%; }
.loc-hero,
.loc-hero__bg,
.loc-hero__bg * { max-width: none; }