/*
 * Location Concept template styles (WL-0035).
 * Ported from the approved artifacts/wl-0027-location-page-demo prototype.
 * Every rule is scoped under .location-concept so it cannot leak into other templates.
 */

.location-concept {
  --lc-teal: #00b8cc;
  --lc-teal-deep: #007f91;
  --lc-ink: #303a46;
  --lc-ink-deep: #0d2b36;
  --lc-blue-wash: #e7f9fb;
  --lc-white: #fff;
  --lc-cloud: #f3f6f7;
  --lc-line: #d7e1e4;
  --lc-muted: #61717a;
  --lc-shadow: 0 28px 80px rgb(5 36 46 / 20%);
  --lc-radius: 30px;

  display: block;
  overflow-x: hidden;
  color: var(--lc-ink);
  background: var(--lc-white);
  font-size: 17px;
  line-height: 1.5;
}

.location-concept *,
.location-concept *::before,
.location-concept *::after {
  box-sizing: border-box;
}

.location-concept a {
  color: inherit;
}

/* ---------- Shared layout ---------- */

.location-concept .section-shell {
  width: min(100% - 32px, 640px);
  margin-inline: auto;
}

.location-concept .section-shell h2,
.location-concept .options-cta h2,
.location-concept .expect-section h2 {
  margin: 0;
  color: var(--lc-ink);
  font-size: clamp(35px, 10vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.location-concept .section-kicker {
  margin: 0 0 7px;
  color: var(--lc-teal-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-concept .section-kicker-light {
  color: #bff7fc;
}

.location-concept .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location-concept .section-heading > p {
  margin: 0 0 5px;
  color: #65747c;
}

.location-concept .section-heading-centred {
  display: block;
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.location-concept .section-heading-centred > p:last-child {
  max-width: 620px;
  margin: 16px auto 0;
}

.location-concept .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--lc-teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.location-concept .text-link:hover,
.location-concept .text-link:focus-visible {
  text-decoration: underline;
}

.location-concept .text-link-light {
  color: #74edf5;
}

.location-concept .button-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-height: 50px;
  padding: 12px 18px;
  color: var(--lc-white);
  background: var(--lc-teal);
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.location-concept .button-link:hover,
.location-concept .button-link:focus-visible {
  color: var(--lc-white);
  background: var(--lc-teal-deep);
  transform: translateY(-2px);
}

.location-concept .button-link-light {
  flex: 0 0 auto;
  color: var(--lc-ink-deep);
  background: var(--lc-white);
}

.location-concept .button-link-light:hover,
.location-concept .button-link-light:focus-visible {
  color: var(--lc-white);
  background: var(--lc-teal);
}

/* ---------- Hero ---------- */

.location-concept .location-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  background: var(--lc-ink-deep);
}

.location-concept .hero-photo,
.location-concept .hero-wash {
  position: absolute;
  inset: 0;
}

.location-concept .hero-photo {
  z-index: -4;
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.015);
}

.location-concept .hero-wash {
  z-index: -3;
  background: linear-gradient(
    180deg,
    rgb(7 36 46 / 88%) 0%,
    rgb(7 36 46 / 84%) 38%,
    rgb(7 36 46 / 95%) 78%,
    rgb(7 36 46 / 100%) 100%
  );
}

.location-concept .hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  pointer-events: none;
}

.location-concept .hero-orbit-one {
  top: 8%;
  right: -30%;
  width: 420px;
  height: 420px;
}

.location-concept .hero-orbit-two {
  right: -20%;
  bottom: -30%;
  width: 340px;
  height: 340px;
  border-color: rgb(0 184 204 / 38%);
}

.location-concept .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  width: min(100% - 32px, 640px);
  margin: 0 auto;
  padding: 32px 0 50px;
}

.location-concept .hero-copy {
  max-width: 590px;
  color: var(--lc-white);
}

.location-concept .location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #bff7fc;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.location-concept .location-dot {
  color: currentcolor;
  font-size: 10px;
  line-height: 1;
}

.location-concept .hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--lc-white);
  font-size: clamp(38px, 11vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.location-concept .hero-lead {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 85%);
  font-size: 17px;
  line-height: 1.55;
}

.location-concept .hero-assurances {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.location-concept .hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgb(255 255 255 / 90%);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  font-size: 14px;
}

.location-concept .assurance-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--lc-ink-deep);
  background: #bff7fc;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.location-concept .hero-contact {
  display: none;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
  color: rgb(255 255 255 / 67%);
  font-size: 14px;
}

.location-concept .hero-contact strong {
  color: var(--lc-white);
  font-size: 19px;
  letter-spacing: 0.02em;
}

.location-concept .hero-contact a {
  color: var(--lc-white);
  text-decoration: none;
}

.location-concept .hero-contact a:hover,
.location-concept .hero-contact a:focus-visible {
  text-decoration: underline;
}

/* Form shell: a plain container the real intake card sits inside. */

.location-concept .form-shell {
  position: relative;
  isolation: isolate;
  z-index: 0;
  width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--lc-radius);
  scroll-margin-top: 24px;
}

.location-concept .form-shell .hc-intake-card {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: var(--lc-radius);
  box-shadow: 14px 14px 0 rgb(255 221 213 / 88%), var(--lc-shadow);
}

.location-concept .form-shell .hc-intake-card * {
  max-width: 100%;
}

.location-concept .form-fallback {
  padding: 28px 24px;
  color: var(--lc-ink);
  background: var(--lc-white);
  border-radius: var(--lc-radius);
  box-shadow: var(--lc-shadow);
}

.location-concept .form-fallback h2 {
  margin: 0 0 10px;
  color: var(--lc-ink);
  font-size: 26px;
  line-height: 1.15;
}

.location-concept .form-fallback p {
  margin: 0 0 18px;
  color: var(--lc-muted);
}

/* ---------- Intro ---------- */

.location-concept .intro-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-block: 70px;
}

.location-concept .intro-copy {
  align-self: end;
  padding-bottom: 4px;
}

.location-concept .intro-copy p {
  margin: 0 0 18px;
  color: #596a73;
  font-size: 18px;
}

/* ---------- Team ---------- */

.location-concept .team-section {
  padding-block: 70px;
  background: var(--lc-cloud);
}

.location-concept .team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.location-concept .team-copy h2 {
  margin-bottom: 26px;
}

.location-concept .team-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 0 18px;
  color: #596a73;
}

.location-concept .team-copy > ul {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--lc-ink);
  list-style: none;
}

.location-concept .team-copy > ul > li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  line-height: 1.5;
}

.location-concept .team-copy > ul > li::before {
  position: absolute;
  top: 0.7em;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--lc-teal);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.location-concept .team-quote {
  max-width: 760px;
  margin: 42px 0 46px;
  padding: 4px 0 4px 24px;
  color: var(--lc-ink);
  border-left: 4px solid var(--lc-teal);
  font-size: clamp(19px, 1.6vw, 23px);
  font-style: italic;
  line-height: 1.55;
}

.location-concept .team-person {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.location-concept .team-person + .team-person {
  margin-top: 12px;
}

.location-concept .team-person img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.location-concept .team-person__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.location-concept .team-person__role {
  margin: 2px 0 0;
  color: var(--lc-muted);
  font-size: 15px;
}

.location-concept .team-person__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

.location-concept .team-person__contact a {
  color: var(--lc-teal-deep);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.location-concept .team-person__contact a:hover,
.location-concept .team-person__contact a:focus-visible {
  text-decoration: underline;
}

.location-concept .team-facts {
  max-width: 680px;
  padding: 26px 22px;
  color: var(--lc-white);
  background: var(--lc-ink-deep);
  border-left: 6px solid var(--lc-teal);
}

.location-concept .fact-label {
  display: block;
  margin-bottom: 22px;
  color: #bff7fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-concept .team-facts ul {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.location-concept .team-facts li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.location-concept .team-facts li::before {
  position: absolute;
  top: 14px;
  left: 0;
  color: #74edf5;
  content: "\2713";
  font-weight: 800;
}

/* ---------- Support pathways ---------- */

.location-concept .support-paths {
  padding-block: 70px;
}

.location-concept .support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location-concept .support-card {
  display: grid;
  gap: 18px;
  padding: 26px 22px;
  background: var(--lc-blue-wash);
  border-top: 5px solid var(--lc-teal);
}

.location-concept .support-card-alt {
  background: #fff0ec;
  border-top-color: #ffbba9;
}

.location-concept .support-card h3 {
  margin: 0;
  color: var(--lc-ink);
  font-size: clamp(24px, 6vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.location-concept .support-card p {
  margin: 14px 0 0;
  color: var(--lc-muted);
}

.location-concept .support-card > a {
  display: inline-flex;
  align-self: end;
  gap: 10px;
  color: var(--lc-teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.location-concept .support-card > a:hover,
.location-concept .support-card > a:focus-visible {
  text-decoration: underline;
}

/* ---------- Services ---------- */

.location-concept .services-section {
  padding-block: 70px;
  background: var(--lc-blue-wash);
}

.location-concept .services-heading {
  margin-bottom: 34px;
}

.location-concept .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(13 43 54 / 16%);
  border-left: 1px solid rgb(13 43 54 / 16%);
}

.location-concept .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  padding: 20px 16px;
  color: inherit;
  background: rgb(255 255 255 / 70%);
  border-right: 1px solid rgb(13 43 54 / 16%);
  border-bottom: 1px solid rgb(13 43 54 / 16%);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.location-concept a.service-card:hover,
.location-concept a.service-card:focus-visible {
  background: var(--lc-white);
  transform: translateY(-3px);
}

/* The service icons are white glyphs on transparency, drawn for a dark
   background. On the pale services band they read as blank, so they sit on a
   teal disc, matching the hero's assurance marks. */
.location-concept .service-card img {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 12px;
  object-fit: contain;
  background: var(--lc-teal-deep);
  border-radius: 50%;
}

.location-concept .service-card h3 {
  margin: 24px 0 0;
  color: var(--lc-ink);
  font-size: 16px;
  line-height: 1.2;
}

/* ---------- Options CTA ---------- */

.location-concept .options-cta {
  padding-block: 60px;
  color: var(--lc-white);
  background: linear-gradient(105deg, rgb(0 127 145 / 97%), rgb(13 43 54 / 97%));
}

.location-concept .options-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
}

.location-concept .options-layout > div {
  max-width: 800px;
}

.location-concept .options-cta h2,
.location-concept .expect-section h2 {
  color: var(--lc-white);
}

.location-concept .options-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 84%);
}

/* ---------- Difference ---------- */

.location-concept .difference-section {
  padding-block: 70px;
}

.location-concept .difference-heading {
  margin-bottom: 34px;
}

.location-concept .difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--lc-line);
  border-bottom: 1px solid var(--lc-line);
}

.location-concept .difference-grid article {
  position: relative;
  padding: 30px 22px 34px;
  border-bottom: 1px solid var(--lc-line);
}

.location-concept .difference-grid article:last-child {
  border-bottom: 0;
}

.location-concept .difference-grid img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.location-concept .difference-grid article > span {
  position: absolute;
  top: 30px;
  right: 22px;
  color: #98a7ad;
  font-size: 13px;
  font-weight: 700;
}

.location-concept .difference-grid h3 {
  margin: 30px 0 14px;
  color: var(--lc-ink);
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.location-concept .difference-grid p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 15px;
}

/* ---------- What you can expect ---------- */

.location-concept .expect-section {
  padding-block: 70px;
  color: var(--lc-white);
  background: var(--lc-ink-deep);
}

.location-concept .expect-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.location-concept .expect-intro > p:not(.section-kicker) {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 70%);
}

.location-concept .expect-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 17%);
}

.location-concept .expect-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.location-concept .expect-steps span {
  color: #74edf5;
  font-size: 13px;
  font-weight: 700;
}

.location-concept .expect-steps p {
  margin: 0;
  color: rgb(255 255 255 / 90%);
  font-size: 16px;
}

/* ---------- FAQs ---------- */

.location-concept .faq-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-block: 70px;
}

.location-concept .faq-intro {
  position: static;
  align-self: start;
}

.location-concept .faq-intro p:last-child {
  max-width: 420px;
  margin: 20px 0 0;
  color: #65747c;
}

.location-concept .faq-list {
  border-top: 1px solid var(--lc-line);
}

.location-concept .faq-list details {
  border-bottom: 1px solid var(--lc-line);
}

.location-concept .faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--lc-ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.location-concept .faq-list summary::-webkit-details-marker {
  display: none;
}

.location-concept .faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--lc-teal-deep);
  background: var(--lc-blue-wash);
  border-radius: 50%;
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.location-concept .faq-list details[open] summary::after {
  content: "\2212";
}

.location-concept .faq-list details > p,
.location-concept .faq-list details > div {
  max-width: 760px;
  margin: -4px 0 26px;
  color: var(--lc-muted);
}

.location-concept .faq-list details > div > :first-child {
  margin-top: 0;
}

.location-concept .faq-list details > div > :last-child {
  margin-bottom: 0;
}

/* ---------- Tablet and up ---------- */

@media (min-width: 781px) {
  .location-concept .section-shell {
    width: min(1240px, calc(100% - 72px));
  }

  .location-concept .section-shell h2,
  .location-concept .options-cta h2,
  .location-concept .expect-section h2 {
    font-size: clamp(38px, 4.1vw, 60px);
  }

  .location-concept .hero-inner {
    width: min(100% - 48px, 1080px);
    padding: clamp(48px, 6vw, 72px) 0;
  }

  .location-concept .hero-wash {
    background:
      linear-gradient(
        90deg,
        rgb(7 36 46 / 98%) 0%,
        rgb(7 36 46 / 91%) 39%,
        rgb(7 36 46 / 58%) 70%,
        rgb(7 36 46 / 48%) 100%
      ),
      linear-gradient(0deg, rgb(7 36 46 / 34%), rgb(7 36 46 / 6%) 55%);
  }

  .location-concept .hero-photo {
    background-position: center;
  }

  .location-concept .hero-copy h1 {
    font-size: clamp(46px, 6vw, 62px);
  }

  .location-concept .hero-lead {
    margin-top: 28px;
    font-size: clamp(18px, 1.4vw, 21px);
  }

  .location-concept .hero-assurances,
  .location-concept .hero-contact {
    display: flex;
  }

  .location-concept .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: clamp(40px, 7vw, 100px);
  }

  .location-concept .section-heading-centred {
    display: block;
    margin-bottom: 44px;
  }

  .location-concept .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-concept .support-card {
    grid-template-columns: 1fr;
    min-height: 260px;
    padding: 36px;
  }

  .location-concept .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-concept .service-card {
    min-height: 190px;
    padding: 26px;
  }

  .location-concept .service-card img {
    width: 64px;
    height: 64px;
    padding: 14px;
  }

  .location-concept .service-card h3 {
    font-size: 19px;
  }

  .location-concept .options-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
  }

  .location-concept .expect-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 8vw, 112px);
  }

  .location-concept .expect-steps li {
    grid-template-columns: 54px 1fr;
    gap: 22px;
  }

  .location-concept .expect-steps p {
    font-size: 18px;
  }

  .location-concept .intro-section,
  .location-concept .support-paths,
  .location-concept .difference-section,
  .location-concept .faq-section,
  .location-concept .team-section,
  .location-concept .services-section,
  .location-concept .expect-section {
    padding-block: 96px;
  }

  .location-concept .options-cta {
    padding-block: 72px;
  }

  .location-concept .faq-list summary {
    padding-right: 52px;
    font-size: 20px;
  }

  .location-concept .faq-list details > p,
  .location-concept .faq-list details > div {
    margin-right: 52px;
  }

  .location-concept .services-heading,
  .location-concept .difference-heading {
    margin-bottom: 48px;
  }
}

/* ---------- Desktop ---------- */

@media (min-width: 1000px) {
  .location-concept .location-hero[data-hc-tall-intake] .hero-photo {
    background-position: center top;
    background-size: 100% auto;
    transform: none;
  }

  .location-concept .location-hero[data-hc-tall-intake] .hero-wash {
    background:
      linear-gradient(
        180deg,
        rgb(7 36 46 / 0%) 0%,
        rgb(7 36 46 / 12%) 48%,
        rgb(7 36 46 / 92%) 82%,
        rgb(7 36 46 / 100%) 100%
      ),
      linear-gradient(
        90deg,
        rgb(7 36 46 / 98%) 0%,
        rgb(7 36 46 / 91%) 39%,
        rgb(7 36 46 / 58%) 70%,
        rgb(7 36 46 / 48%) 100%
      );
  }

  .location-concept .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(40px, 5vw, 88px);
  }

  .location-concept .hero-orbit-one {
    top: 8%;
    right: -10%;
    width: 640px;
    height: 640px;
  }

  .location-concept .hero-orbit-two {
    right: 6%;
    bottom: -43%;
    width: 520px;
    height: 520px;
  }

  .location-concept .intro-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: clamp(54px, 8vw, 120px);
  }

  .location-concept .team-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: clamp(48px, 8vw, 112px);
  }

  .location-concept .team-facts {
    padding: 34px;
  }

  .location-concept .support-card {
    grid-template-columns: 1fr;
    min-height: 290px;
  }

  .location-concept .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location-concept .difference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-concept .difference-grid article {
    padding: 38px 34px 44px;
    border-right: 1px solid var(--lc-line);
    border-bottom: 0;
  }

  .location-concept .difference-grid article:last-child {
    border-right: 0;
  }

  .location-concept .difference-grid article > span {
    top: 38px;
    right: 34px;
  }

  .location-concept .faq-section {
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(50px, 8vw, 110px);
  }

  .location-concept .faq-intro {
    position: sticky;
    top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-concept *,
  .location-concept *::before,
  .location-concept *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* The theme globally caps `section` at 1600px; the concept's full-width
   colour bands should span the whole viewport. Inner content stays capped
   by .section-shell / .hero-inner. */
.location-concept .location-hero,
.location-concept .team-section,
.location-concept .services-section,
.location-concept .options-cta,
.location-concept .expect-section {
  max-width: none;
}
