/* ==========================================================================
   LocationPage — shared styles for SEO landing pages (hotels, airport routes,
   neighbourhoods, etc.). Scoped under .lp- so we don't clash with the main
   site styles in site2.css. Reuses the design tokens from tokens.css.
   ========================================================================== */

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--gw-charcoal, #011e13);
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.lp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}
.lp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(1, 30, 19, 0.92) 0%,
    rgba(1, 30, 19, 0.55) 45%,
    rgba(1, 30, 19, 0.3) 100%
  );
}
.lp-hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 72px;
  max-width: 820px;
}
.lp-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'GT Walsheim', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.lp-hero__crumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.lp-hero__crumbs a:hover {
  color: var(--gw-yellow, #eaff68);
}
.lp-hero__crumbs .sep {
  opacity: 0.5;
}
.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'GT Walsheim', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gw-yellow, #eaff68);
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(234, 255, 104, 0.25);
  border-radius: 999px;
  background: rgba(234, 255, 104, 0.04);
}
.lp-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gw-yellow, #eaff68);
  box-shadow: 0 0 12px var(--gw-yellow, #eaff68);
}
.lp-hero h1 {
  font-family: 'GT Walsheim', sans-serif;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 24px 0 20px;
  font-weight: 700;
}
.lp-hero h1 em {
  font-style: italic;
  color: var(--gw-yellow, #eaff68);
}
.lp-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin: 0 0 28px;
}
.lp-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Key info block ---------- */
.lp-keyinfo {
  background: #fff;
  border-bottom: 1px solid var(--gw-line, #e7e3d7);
}
.lp-keyinfo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}
.lp-keyinfo__cell {
  padding: 12px 32px;
  border-left: 1px solid var(--gw-line, #e7e3d7);
}
.lp-keyinfo__cell:first-child {
  border-left: none;
}
.lp-keyinfo__k {
  font-family: 'GT Walsheim', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3, rgba(1, 30, 19, 0.5));
  font-weight: 600;
  margin-bottom: 6px;
}
.lp-keyinfo__v {
  font-family: 'GT Walsheim', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--gw-charcoal, #011e13);
  line-height: 1.2;
}
.lp-keyinfo__note {
  font-size: 12px;
  color: var(--ink-3, rgba(1, 30, 19, 0.5));
  margin-top: 4px;
}

/* ---------- Why GuyWay ---------- */
.lp-why {
  background: var(--gw-paper, #f7f7f2);
  padding: 80px 0;
}
.lp-why__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.lp-why__head h2 {
  font-family: 'GT Walsheim', sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--gw-charcoal, #011e13);
  margin: 0 0 16px;
}
.lp-why__head h2 em {
  font-style: italic;
  color: var(--gw-charcoal, #011e13);
}
.lp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-why__card {
  background: #fff;
  border: 1px solid var(--gw-line, #e7e3d7);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}
.lp-why__card:hover {
  border-color: var(--gw-charcoal, #011e13);
}
.lp-why__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gw-yellow, #eaff68);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gw-charcoal, #011e13);
  margin-bottom: 16px;
}
.lp-why__title {
  font-family: 'GT Walsheim', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--gw-charcoal, #011e13);
  margin: 0 0 6px;
}
.lp-why__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2, rgba(1, 30, 19, 0.72));
  margin: 0;
}

/* ---------- Location content ---------- */
.lp-content {
  background: #fff;
  padding: 80px 0;
}
.lp-content__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.lp-content__body {
  font-family: 'GT Walsheim', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink, #011e13);
  letter-spacing: -0.005em;
}
.lp-content__body p {
  margin: 0 0 20px;
}
.lp-content__body p:last-child {
  margin-bottom: 0;
}
.lp-content__body strong {
  font-weight: 600;
}
.lp-content__body a {
  color: var(--gw-charcoal, #011e13);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gw-yellow, #eaff68);
  text-decoration-thickness: 2px;
}
.lp-content__body a:hover {
  background: var(--gw-yellow, #eaff68);
}

/* ---------- Second CTA ---------- */
.lp-cta {
  background: var(--gw-charcoal, #011e13);
  color: #fff;
  padding: 72px 0;
}
.lp-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.lp-cta h2 {
  font-family: 'GT Walsheim', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
}
.lp-cta h2 em {
  font-style: italic;
  color: var(--gw-yellow, #eaff68);
}
.lp-cta p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.lp-cta__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.lp-faq {
  background: var(--gw-paper, #f7f7f2);
  padding: 80px 0;
}
.lp-faq__wrap {
  max-width: 720px;
  margin: 0 auto;
}
.lp-faq h2 {
  font-family: 'GT Walsheim', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--gw-charcoal, #011e13);
  margin: 0 0 36px;
  text-align: center;
}
.lp-faq__item {
  border-bottom: 1px solid var(--gw-line, #e7e3d7);
  padding: 20px 0;
}
.lp-faq__item:last-child {
  border-bottom: none;
}
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'GT Walsheim', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--gw-charcoal, #011e13);
  letter-spacing: -0.01em;
  padding-right: 36px;
  position: relative;
}
.lp-faq__item summary::-webkit-details-marker {
  display: none;
}
.lp-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-3, rgba(1, 30, 19, 0.5));
  transition: transform 0.2s;
}
.lp-faq__item[open] summary::after {
  content: '−';
}
.lp-faq__a {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2, rgba(1, 30, 19, 0.72));
}
.lp-faq__a p {
  margin: 0 0 12px;
}
.lp-faq__a p:last-child {
  margin-bottom: 0;
}

/* ---------- Related links ---------- */
.lp-related {
  background: #fff;
  border-top: 1px solid var(--gw-line, #e7e3d7);
  padding: 56px 0;
}
.lp-related h3 {
  font-family: 'GT Walsheim', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3, rgba(1, 30, 19, 0.5));
  margin: 0 0 24px;
  text-align: center;
}
.lp-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-related__card {
  display: block;
  padding: 18px 20px;
  background: var(--gw-paper, #f7f7f2);
  border: 1px solid var(--gw-line, #e7e3d7);
  border-radius: 14px;
  text-decoration: none;
  color: var(--gw-charcoal, #011e13);
  transition: border-color 0.2s, transform 0.2s;
}
.lp-related__card:hover {
  border-color: var(--gw-charcoal, #011e13);
  transform: translateY(-2px);
}
.lp-related__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3, rgba(1, 30, 19, 0.5));
  font-weight: 600;
  margin-bottom: 6px;
}
.lp-related__title {
  font-family: 'GT Walsheim', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .lp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .lp-hero {
    min-height: 460px;
  }
  .lp-hero__inner {
    padding: 72px 0 48px;
  }
  .lp-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
  }
  .lp-hero__sub {
    font-size: 16px;
  }
  .lp-keyinfo__grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .lp-keyinfo__cell {
    padding: 16px 20px;
    border-left: none;
    border-top: 1px solid var(--gw-line, #e7e3d7);
  }
  .lp-keyinfo__cell:first-child {
    border-top: none;
  }
  .lp-why,
  .lp-content,
  .lp-faq,
  .lp-cta {
    padding: 56px 0;
  }
  .lp-why__grid {
    grid-template-columns: 1fr;
  }
  .lp-content__body {
    font-size: 16.5px;
  }
  .lp-related__grid {
    grid-template-columns: 1fr;
  }
}
