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

:root {
  --elevate-teal: #053e4a;
  --elevate-teal-2: #0d6670;
  --elevate-orange: #e94e1b;
  --elevate-light: #f3f5f6;
  --elevate-text: #0b3640;
  --elevate-sky: #6fc3e6;
  --elevate-white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--elevate-light);
  color: var(--elevate-text);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.site-wrap { min-height: 100vh; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.container-top {
  width: min(1520px, calc(100% - 20px));
  margin: 0 auto;
}

.narrow { width: min(860px, 100%); }
.center-text { text-align: center; }

/* utility bar */
.utility-bar {
  background: var(--elevate-teal);
  color: #fff;
  font-size: 0.88rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.utility-left {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.utility-left strong { font-weight: 800; }

.utility-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-socials,
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
}

.dot.on { background: #4dd963; }
.dot.off { background: #ff6464; }

/* header */
.elevate-header {
  background: var(--elevate-teal);
  color: #fff;
}

.elevate-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.elevate-logo {
  width: 318px;
  max-width: 100%;
  height: auto;
}

.header-centre-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.header-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 10px 18px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-action-btn:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
}

.elevate-header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #fff;
  white-space: nowrap;
  font-size: 0.88rem;
}

.elevate-header-contact span {
  font-size: 0.88rem;
  opacity: 0.95;
}

.elevate-header-contact strong {
  font-size: 0.94rem;
  font-weight: 900;
  color: #fff;
}

/* nav */
.main-nav-bar {
  background: #f4f4f4;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-bar-inner {
  min-height: 46px;
  display: flex;
  align-items: stretch;
}

.site-nav-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

.elevate-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.elevate-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--elevate-text);
}

.elevate-nav a.active,
.elevate-nav a:hover {
  color: var(--elevate-orange);
}

.gift-vouchers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  min-width: 164px;
  background: #4a8f95;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--elevate-text);
  margin: 5px auto;
}

/* hero */
.home-hero {
  position: relative;
  background: var(--elevate-light);
  min-height: 610px;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video,
.hero-image-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  background: transparent;
}

.hero-image-fallback {
  background:
    url('/assets/img/home/hero-home.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #4c7d1e 0%, #6f9841 100%);
  z-index: 0;
}

.hero-overlay {
  background: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.14));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 610px;
}

.hero-inner-top {
  width: min(1520px, calc(100% - 20px));
  margin: 0 auto;
}

.hero-text-block {
  position: absolute;
  left: 36px;
  top: 132px;
  max-width: 980px;
}

.hero-text-block h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.6rem, 4.9vw, 5.8rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
  max-width: 900px;
}

/* overlap cards */
.home-cards-overlap {
  position: relative;
  z-index: 5;
  margin-top: 8px;
}

.home-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-cta-card {
  background: #f2f2f2;
  border-radius: 18px;
  padding: 28px 28px 22px;
  min-height: 258px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.home-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-cta-content h2 {
  margin: 0 0 20px;
  font-size: 1.48rem;
  line-height: 1.03;
  font-weight: 900;
  color: var(--elevate-text);
  text-transform: uppercase;
}

.orange-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--elevate-orange);
  color: #fff;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.98rem;
}

.orange-btn.small {
  padding: 10px 14px;
  font-size: 0.82rem;
}

.orange-btn:hover { filter: brightness(0.95); }

.home-cta-icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 170px;
}

.home-cta-icon-img {
  width: 190px;
  height: auto;
}

/* dark intro */
.dark-intro-section {
  background: var(--elevate-teal);
  color: #fff;
  padding: 62px 0 42px;
}

.dark-intro-section .narrow {
  width: min(980px, 100%);
}

.dark-intro-section h2 {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.dark-intro-section p {
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.96);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

/* credentials */
.cred-strip {
  background: var(--elevate-teal);
  color: #fff;
  padding: 6px 0 34px;
}

.cred-grid {
  display: flex;
  justify-content: center;
  gap: 72px;
  align-items: flex-start;
}

.cred-item { text-align: center; }

.cred-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  border: 4px solid var(--elevate-sky);
  color: var(--elevate-sky);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.7rem;
}

.cred-text {
  font-size: 0.88rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.angled-divider {
  height: 108px;
  background: var(--elevate-teal);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 0 100%);
}

.gallery-divider { margin-top: -1px; }

/* gallery */
.gallery-intro-section {
  background: var(--elevate-light);
  padding: 44px 0 40px;
}

.gallery-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.gallery-intro-grid h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-intro-grid p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.58;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.gallery-photo {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: linear-gradient(135deg, #8cc6ff 0%, #d8f0ff 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.g1,.g3,.g5,.g7,.g9 { background: linear-gradient(135deg, #82b5ff 0%, #cce5ff 100%); }
.g2,.g4,.g6,.g8,.g10 { background: linear-gradient(135deg, #89d2ff 0%, #dff5ff 100%); }

/* testimonials */
.testimonials-section {
  background: var(--elevate-teal);
  color: #fff;
}

.testimonials-divider-top {
  height: 78px;
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 100%);
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
  padding: 12px 0 24px;
}

.testimonials-left h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  color: #233746;
  border-radius: 10px;
  padding: 14px 16px;
  min-height: 138px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.testimonial-head {
  font-weight: 800;
  margin-bottom: 10px;
  color: #0b3640;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.phone-widget {
  display: flex;
  justify-content: flex-end;
}

.phone-screen {
  width: 210px;
  height: 330px;
  border-radius: 20px;
  background: #f5f7f8;
  border: 8px solid #173a46;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  padding: 16px;
}

.phone-header {
  height: 34px;
  border-radius: 12px;
  background: #d8e1e6;
  margin-bottom: 16px;
}

.phone-line {
  height: 12px;
  border-radius: 999px;
  background: #c6d2d8;
  margin-bottom: 10px;
}

.phone-line.short {
  width: 60%;
}

.testimonials-divider-bottom {
  height: 82px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  background: linear-gradient(180deg, var(--elevate-teal) 0%, var(--elevate-teal-2) 100%);
}

/* adventures */
.adventures-section.original-style {
  background: var(--elevate-teal-2);
  color: #fff;
  padding: 38px 0 44px;
}

.adventures-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.adventures-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
}

.adventures-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 760px;
}

.adventures-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.adventure-offer-card {
  background: #f7f7f7;
  color: #163745;
  border-radius: 8px;
  padding: 22px 20px 18px;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.offer-icon {
  width: 108px;
  height: auto;
  margin-bottom: 14px;
}

.offer-placeholder {
  border-radius: 18px;
  background: linear-gradient(135deg, #7cb8ff 0%, #c9e7ff 100%);
}

.adventure-offer-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.adventure-offer-card p {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* footer */
.footer-cta-band {
  background: #0a4954;
  color: #fff;
  padding: 24px 0;
}

.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-cta-inner h2 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.footer-cta-inner p {
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
}

.btn-light,
.btn-outline-light {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
}

.btn-light {
  background: #fff;
  color: var(--elevate-text);
}

.btn-outline-light {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
}

.site-footer.dense-footer {
  background: #073f49;
  color: #d9edf2;
  padding: 26px 0 16px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  height: auto;
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.footer-contact-col,
.footer-contact-col a {
  font-size: 0.9rem;
}

.footer-bottom-row {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.84rem;
}

/* generic internal page hero */
.page-hero {
  padding: 90px 0;
  background: var(--elevate-teal);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero p {
  margin: 0;
  max-width: 720px;
}

/* Homepage rework - May 2026 */
.dot.neutral { background: var(--elevate-sky); }

.new-home-hero {
  min-height: 660px;
}

.new-home-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,62,74,0.70) 0%, rgba(5,62,74,0.34) 48%, rgba(5,62,74,0.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.16));
}

.hero-text-block-new {
  top: 108px;
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.82rem;
}

.eyebrow.dark { color: var(--elevate-orange); }

.hero-text-block-new h1 {
  max-width: 940px;
  font-size: clamp(3.25rem, 5.2vw, 6.2rem);
}

.hero-lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ghost-btn {
  display: inline-block;
  align-self: flex-start;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.76);
  font-weight: 900;
  padding: 12px 19px;
  border-radius: 10px;
  font-size: 0.98rem;
}

.ghost-btn:hover { background: rgba(255,255,255,0.10); }
.dark-ghost {
  color: var(--elevate-text);
  border-color: rgba(5,62,74,0.35);
}
.dark-ghost:hover { background: rgba(5,62,74,0.06); }

.home-cards-overlap-new {
  margin-top: -94px;
}

.home-cta-cards.four-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-cta-cards.four-cards .home-cta-card {
  min-height: 286px;
  padding: 25px 22px 21px;
}

.home-cta-card p {
  margin: -6px 0 18px;
  color: #40606a;
  font-size: 0.92rem;
  line-height: 1.42;
}

.home-cta-cards.four-cards .home-cta-content h2 {
  font-size: 1.22rem;
}

.home-cta-cards.four-cards .home-cta-icon-wrap {
  min-width: 96px;
}

.home-cta-cards.four-cards .home-cta-icon-img {
  width: 112px;
}

.icon-badge-wrap {
  align-items: center;
}

.icon-badge {
  width: 104px;
  height: 104px;
  border-radius: 28px 28px 28px 10px;
  background: linear-gradient(135deg, var(--elevate-orange), #f58a62);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 900;
  transform: rotate(-8deg);
  box-shadow: 0 8px 20px rgba(233,78,27,0.25);
}

.home-intro-clean {
  padding-top: 72px;
}

.home-intro-clean h2 {
  max-width: 1050px;
}

.home-cred-strip {
  padding-bottom: 42px;
}

.cred-grid-four {
  gap: 44px;
  flex-wrap: wrap;
}

.cred-grid-four .cred-icon {
  width: 86px;
  height: 86px;
  font-size: 1.3rem;
}

.gallery-intro-grid p + p {
  margin-top: 14px;
}

.gallery-photo-grid-real {
  gap: 14px;
}

.gallery-photo.real-photo {
  background: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-radius: 12px;
}

.gallery-photo.real-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-photo.real-photo:hover img {
  transform: scale(1.035);
}

.pathways-section {
  background: #fff;
  padding: 68px 0 74px;
  color: var(--elevate-text);
}

.pathways-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.pathways-top h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
}

.pathways-top > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.58;
  max-width: 760px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pathway-card {
  background: var(--elevate-light);
  border-radius: 16px;
  padding: 24px 22px 22px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(5,62,74,0.07);
}

.pathway-card.accent-card {
  background: var(--elevate-teal);
  color: #fff;
}

.pathway-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--elevate-orange);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.pathway-card h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.pathway-card p {
  margin: 0 0 22px;
  line-height: 1.55;
  color: #42616a;
}

.pathway-card.accent-card p { color: rgba(255,255,255,0.88); }

.pathway-card a {
  margin-top: auto;
  color: var(--elevate-orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.pathway-card.accent-card a { color: #fff; }

.testimonials-clean {
  background: var(--elevate-teal);
}

.testimonials-inner-clean {
  display: block;
  padding-bottom: 56px;
}

.testimonial-cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-final-cta {
  background: var(--elevate-light);
  color: var(--elevate-text);
  padding: 60px 0;
}

.home-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.home-final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 900;
}

.home-final-cta p:not(.eyebrow) {
  margin: 0;
  font-size: 1.03rem;
}

.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* Homepage v2 tidy pass - removes the messy overlap/print issues from the first rework */
.homepage-v2 {
  background: var(--elevate-light);
  overflow: hidden;
}

.home-v2-hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.home-v2-hero-media,
.home-v2-hero-video,
.home-v2-hero-fallback,
.home-v2-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-v2-hero-video {
  object-fit: cover;
  z-index: 0;
}

.home-v2-hero-fallback {
  background:
    url('/assets/img/home/hero-home.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #345e28 0%, #87a856 100%);
  z-index: -1;
}

.home-v2-hero-shade {
  background:
    linear-gradient(90deg, rgba(5,62,74,0.78) 0%, rgba(5,62,74,0.48) 42%, rgba(5,62,74,0.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
  z-index: 1;
}

.home-v2-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.home-v2-hero-copy {
  max-width: 930px;
  padding: 54px 0 86px;
}

.home-v2-kicker,
.home-v2-section-label {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 0.82rem;
}

.home-v2-section-label.dark { color: var(--elevate-orange); }

.home-v2-hero-copy h1,
.home-v2-intro-copy h2,
.home-v2-gallery-top h2,
.home-v2-pathways-heading h2,
.home-v2-testimonials h2,
.home-v2-final-cta h2 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.home-v2-hero-copy h1 {
  font-size: clamp(3.5rem, 5.6vw, 6.4rem);
  max-width: 980px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.18);
}

.home-v2-hero-copy > p:not(.home-v2-kicker) {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.16);
}

.home-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-v2-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.78);
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.home-v2-outline-btn.dark {
  color: var(--elevate-text);
  border-color: rgba(5,62,74,0.34);
}

.home-v2-card-band {
  position: relative;
  z-index: 4;
  margin-top: -74px;
  padding-bottom: 54px;
}

.home-v2-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-v2-feature-card {
  min-height: 285px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(5,62,74,0.08);
}

.home-v2-feature-card h2 {
  margin: 0 0 18px;
  color: var(--elevate-text);
  font-size: 1.28rem;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.home-v2-feature-card p {
  margin: 0;
  color: #45646d;
  font-size: 0.96rem;
  line-height: 1.48;
}

.home-v2-feature-card a,
.home-v2-pathway-grid a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 9px;
  background: var(--elevate-orange);
  color: #fff;
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.home-v2-intro {
  background: var(--elevate-teal);
  color: #fff;
  padding: 74px 0;
}

.home-v2-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.home-v2-intro-copy h2 {
  max-width: 860px;
  font-size: clamp(2.25rem, 3.6vw, 4rem);
}

.home-v2-intro-copy p:not(.home-v2-section-label) {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
  line-height: 1.62;
}

.home-v2-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-v2-proof-card {
  min-height: 136px;
  padding: 22px 18px;
  border: 2px solid rgba(111,195,230,0.62);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.035);
}

.home-v2-proof-card strong {
  display: block;
  color: var(--elevate-sky);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

.home-v2-proof-card span {
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.14;
  text-transform: uppercase;
  font-weight: 800;
}

.home-v2-gallery-section {
  background: var(--elevate-light);
  padding: 76px 0 78px;
}

.home-v2-gallery-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: start;
}

.home-v2-gallery-top h2 {
  color: var(--elevate-text);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.home-v2-gallery-top p {
  margin: 0 0 16px;
  color: #33545e;
  font-size: 1.04rem;
  line-height: 1.62;
}

.home-v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.home-v2-gallery-grid figure {
  margin: 0;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #dcebf1;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.home-v2-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-v2-pathways {
  background: #fff;
  padding: 74px 0 82px;
}

.home-v2-pathways-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.home-v2-pathways-heading h2 {
  color: var(--elevate-text);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.home-v2-pathways-heading > p:not(.home-v2-section-label) {
  margin: 0;
  color: #45646d;
  font-size: 1.04rem;
  line-height: 1.58;
}

.home-v2-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-v2-pathway-grid article {
  min-height: 282px;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: var(--elevate-light);
  border: 1px solid rgba(5,62,74,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.055);
  display: flex;
  flex-direction: column;
}

.home-v2-pathway-grid article.home-v2-pathway-accent {
  background: var(--elevate-teal);
  color: #fff;
}

.home-v2-pathway-grid span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--elevate-orange);
  color: #fff;
  font-weight: 900;
}

.home-v2-pathway-grid h3 {
  margin: 0 0 13px;
  color: inherit;
  font-size: 1.42rem;
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 900;
}

.home-v2-pathway-grid p {
  margin: 0;
  color: #45646d;
  line-height: 1.56;
}

.home-v2-pathway-accent p { color: rgba(255,255,255,0.88); }
.home-v2-pathway-grid a { margin-top: auto; }
.home-v2-pathway-accent a { background: #fff; color: var(--elevate-teal); }

.home-v2-testimonials {
  background: var(--elevate-teal);
  color: #fff;
  padding: 72px 0 78px;
}

.home-v2-testimonials h2 {
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  margin-bottom: 32px;
}

.home-v2-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-v2-testimonial-grid article {
  background: #fff;
  color: var(--elevate-text);
  border-radius: 16px;
  padding: 24px 24px 22px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.home-v2-testimonial-grid h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-v2-testimonial-grid p {
  margin: 0;
  color: #45646d;
  line-height: 1.55;
}

.home-v2-final-cta {
  background: var(--elevate-light);
  color: var(--elevate-text);
  padding: 68px 0;
}

.home-v2-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.home-v2-final-cta h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.home-v2-final-cta p:not(.home-v2-section-label) {
  margin: 14px 0 0;
  color: #45646d;
  font-size: 1.05rem;
}

.home-v2-final-actions { justify-content: flex-end; margin-top: 0; }

@media (max-width: 1220px) {
  .home-v2-card-grid,
  .home-v2-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v2-feature-card { min-height: 235px; }
}

@media (max-width: 980px) {
  .home-v2-hero,
  .home-v2-hero-inner { min-height: 540px; }
  .home-v2-card-band { margin-top: 0; padding-top: 26px; }
  .home-v2-intro-grid,
  .home-v2-gallery-top,
  .home-v2-pathways-heading,
  .home-v2-final-cta-inner {
    grid-template-columns: 1fr;
  }
  .home-v2-proof-grid,
  .home-v2-pathway-grid,
  .home-v2-testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v2-final-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .home-v2-hero,
  .home-v2-hero-inner { min-height: 500px; }
  .home-v2-hero-copy { padding: 44px 0 54px; }
  .home-v2-hero-copy h1 { font-size: clamp(2.45rem, 10vw, 3.6rem); }
  .home-v2-card-grid,
  .home-v2-proof-grid,
  .home-v2-gallery-grid,
  .home-v2-pathway-grid,
  .home-v2-testimonial-grid { grid-template-columns: 1fr; }
  .home-v2-gallery-grid figure { height: 210px; }
  .home-v2-intro,
  .home-v2-gallery-section,
  .home-v2-pathways,
  .home-v2-testimonials,
  .home-v2-final-cta { padding-top: 54px; padding-bottom: 58px; }
}

/* Homepage v3 brand-restored pass */
.homepage-v3 {
  background: #f3f5f6;
  color: var(--elevate-text);
  overflow: hidden;
}

.home-v3-hero {
  position: relative;
  min-height: 660px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--elevate-teal);
}

.home-v3-hero-media,
.home-v3-hero-video,
.home-v3-hero-fallback,
.home-v3-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-v3-hero-video {
  object-fit: cover;
  z-index: 0;
}

.home-v3-hero-fallback {
  background:
    url('/assets/img/home/hero-home.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #244f2e 0%, #78a054 100%);
  z-index: -1;
}

.home-v3-hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 84% 20%, rgba(111,195,230,0.28) 0, rgba(111,195,230,0) 30%),
    linear-gradient(90deg, rgba(5,62,74,0.92) 0%, rgba(5,62,74,0.72) 39%, rgba(5,62,74,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.32));
}

.home-v3-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.home-v3-hero-copy {
  max-width: 980px;
  padding: 68px 0 132px;
}

.home-v3-eyebrow,
.home-v3-section-label {
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.home-v3-section-label.orange { color: var(--elevate-orange); }

.home-v3-hero h1,
.home-v3-intro h2,
.home-v3-gallery-head h2,
.home-v3-routes-head h2,
.home-v3-testimonials h2,
.home-v3-final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.home-v3-hero h1 {
  max-width: 1060px;
  font-size: clamp(3.8rem, 6vw, 7.1rem);
  text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.home-v3-lede {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.34rem);
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.home-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(0,0,0,0.14);
}

.home-v3-btn-orange { background: var(--elevate-orange); color: #fff; }
.home-v3-btn-white { background: rgba(255,255,255,0.92); color: var(--elevate-text); }
.home-v3-btn-white.dark { background: #fff; border: 2px solid rgba(5,62,74,0.18); box-shadow: none; }

.home-v3-signpost-band {
  position: relative;
  z-index: 4;
  margin-top: -96px;
  padding: 0 0 62px;
}

.home-v3-signpost-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-v3-signpost-card {
  position: relative;
  min-height: 310px;
  padding: 28px 25px 24px;
  border-radius: 18px;
  background: #fff;
  color: var(--elevate-text);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-v3-signpost-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--elevate-orange);
}

.home-v3-card-dark { background: var(--elevate-teal); color: #fff; }
.home-v3-card-blue { background: linear-gradient(145deg, #ffffff 0%, #e8f6fb 100%); }

.home-v3-card-icon {
  align-self: flex-end;
  width: 88px;
  height: 88px;
  margin: 0 0 6px;
  display: grid;
  place-items: center;
}

.home-v3-card-icon img { width: 86px; height: auto; }

.home-v3-card-tag {
  align-self: flex-end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(111,195,230,0.17);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.home-v3-signpost-card h2 {
  margin: 4px 0 16px;
  color: inherit;
  font-size: clamp(1.25rem, 1.55vw, 1.62rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.home-v3-signpost-card p {
  margin: 0;
  color: #45646d;
  font-size: 0.97rem;
  line-height: 1.52;
}

.home-v3-card-dark p { color: rgba(255,255,255,0.86); }

.home-v3-signpost-card a,
.home-v3-route-grid a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 9px;
  background: var(--elevate-orange);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-v3-intro {
  position: relative;
  background: var(--elevate-teal);
  color: #fff;
  padding: 82px 0 88px;
}

.home-v3-intro::before,
.home-v3-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-v3-intro::before {
  right: -120px;
  top: -90px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(111,195,230,0.16);
}

.home-v3-intro::after {
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 64px;
  background: #f3f5f6;
  clip-path: polygon(0 100%, 100% 36%, 100% 100%, 0 100%);
}

.home-v3-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.home-v3-intro h2 {
  max-width: 860px;
  font-size: clamp(2.35rem, 3.8vw, 4.35rem);
}

.home-v3-intro-copy p:not(.home-v3-section-label) {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.04rem;
  line-height: 1.62;
}

.home-v3-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-v3-proof-panel div {
  min-height: 146px;
  padding: 22px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(111,195,230,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-v3-proof-panel strong {
  display: block;
  color: var(--elevate-sky);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1;
  font-weight: 900;
}

.home-v3-proof-panel span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.14;
  text-transform: uppercase;
  font-weight: 900;
}

.home-v3-gallery-section {
  background: #f3f5f6;
  padding: 90px 0 86px;
}

.home-v3-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: start;
}

.home-v3-gallery-head h2,
.home-v3-routes-head h2 {
  color: var(--elevate-text);
  font-size: clamp(2.5rem, 4.6vw, 4.85rem);
}

.home-v3-gallery-copy p {
  margin: 0 0 16px;
  color: #33545e;
  font-size: 1.04rem;
  line-height: 1.64;
}

.home-v3-gallery-mosaic {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}

.home-v3-gallery-mosaic figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #cfe3ee;
  box-shadow: 0 12px 26px rgba(5,62,74,0.12);
  border: 8px solid #fff;
}

.home-v3-gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-v3-gallery-mosaic .gallery-item-1,
.home-v3-gallery-mosaic .gallery-item-4,
.home-v3-gallery-mosaic .gallery-item-7 { grid-row: span 2; }
.home-v3-gallery-mosaic .gallery-item-3 { grid-column: span 2; }
.home-v3-gallery-mosaic .gallery-item-8 { grid-column: span 2; }

.home-v3-routes {
  position: relative;
  background: #fff;
  padding: 82px 0 90px;
}

.home-v3-routes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--elevate-orange), var(--elevate-sky), var(--elevate-teal));
}

.home-v3-routes-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.home-v3-routes-head > p:not(.home-v3-section-label) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #45646d;
  font-size: 1.05rem;
  line-height: 1.58;
}

.home-v3-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-v3-route-grid article {
  min-height: 292px;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #f3f5f6;
  border: 1px solid rgba(5,62,74,0.08);
  box-shadow: 0 12px 24px rgba(5,62,74,0.07);
  display: flex;
  flex-direction: column;
}

.home-v3-route-grid article:nth-child(2),
.home-v3-route-grid article:nth-child(5) { background: #eaf7fb; }

.home-v3-route-grid article.home-v3-route-accent {
  background: var(--elevate-teal);
  color: #fff;
}

.home-v3-route-grid span {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--elevate-orange);
  color: #fff;
  font-weight: 900;
}

.home-v3-route-grid h3 {
  margin: 0 0 13px;
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.07;
  text-transform: uppercase;
  font-weight: 900;
}

.home-v3-route-grid p {
  margin: 0;
  color: #45646d;
  line-height: 1.56;
}

.home-v3-route-accent p { color: rgba(255,255,255,0.88); }
.home-v3-route-accent a { background: #fff; color: var(--elevate-teal); }

.home-v3-testimonials {
  position: relative;
  background: var(--elevate-teal);
  color: #fff;
  padding: 78px 0 84px;
}

.home-v3-testimonials h2 {
  text-align: center;
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  margin-bottom: 32px;
}

.home-v3-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-v3-testimonial-grid article {
  position: relative;
  background: #fff;
  color: var(--elevate-text);
  border-radius: 18px;
  padding: 26px 24px 24px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  overflow: hidden;
}

.home-v3-testimonial-grid article::before {
  content: "★★★★★";
  display: block;
  color: var(--elevate-orange);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.home-v3-testimonial-grid h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-v3-testimonial-grid p {
  margin: 0;
  color: #45646d;
  line-height: 1.55;
}

.home-v3-final-cta {
  background: linear-gradient(135deg, var(--elevate-sky) 0%, #e9f7fb 48%, #fff 100%);
  color: var(--elevate-text);
  padding: 72px 0;
}

.home-v3-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.home-v3-final-cta .home-v3-section-label { color: var(--elevate-orange); }
.home-v3-final-cta h2 { max-width: 880px; font-size: clamp(2.05rem, 3.5vw, 3.65rem); }
.home-v3-final-cta p:not(.home-v3-section-label) { margin: 14px 0 0; color: #45646d; font-size: 1.05rem; }
.home-v3-final-inner .home-v3-actions { justify-content: flex-end; margin-top: 0; }

@media (max-width: 1240px) {
  .home-v3-signpost-grid,
  .home-v3-route-grid,
  .home-v3-testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v3-signpost-card { min-height: 270px; }
}

@media (max-width: 980px) {
  .home-v3-hero,
  .home-v3-hero-inner { min-height: 560px; }
  .home-v3-hero-copy { padding: 48px 0 92px; }
  .home-v3-signpost-band { margin-top: 0; padding-top: 28px; }
  .home-v3-intro-grid,
  .home-v3-gallery-head,
  .home-v3-final-inner { grid-template-columns: 1fr; }
  .home-v3-proof-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v3-gallery-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .home-v3-gallery-mosaic .gallery-item-3,
  .home-v3-gallery-mosaic .gallery-item-8 { grid-column: span 1; }
  .home-v3-final-inner .home-v3-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .home-v3-hero,
  .home-v3-hero-inner { min-height: 520px; }
  .home-v3-hero h1 { font-size: clamp(2.45rem, 10vw, 3.65rem); }
  .home-v3-lede { font-size: 1rem; }
  .home-v3-signpost-grid,
  .home-v3-proof-panel,
  .home-v3-route-grid,
  .home-v3-testimonial-grid,
  .home-v3-gallery-mosaic { grid-template-columns: 1fr; }
  .home-v3-gallery-mosaic { grid-auto-rows: 230px; }
  .home-v3-gallery-mosaic .gallery-item-1,
  .home-v3-gallery-mosaic .gallery-item-4,
  .home-v3-gallery-mosaic .gallery-item-7 { grid-row: span 1; }
  .home-v3-intro,
  .home-v3-gallery-section,
  .home-v3-routes,
  .home-v3-testimonials,
  .home-v3-final-cta { padding-top: 56px; padding-bottom: 60px; }
  .home-v3-signpost-card { min-height: 245px; }
  .home-v3-btn { width: 100%; }
}

@media print {
  .home-v3-signpost-grid,
  .home-v3-route-grid,
  .home-v3-testimonial-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .home-v3-gallery-mosaic { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; grid-auto-rows: 150px !important; }
  .home-v3-hero { min-height: 520px !important; }
  .home-v3-hero-inner { min-height: 520px !important; }
}

/* Inner page system - first used on Paragliding */
.inner-page {
  background: #f3f6f7;
  color: var(--elevate-text);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  background: var(--elevate-teal);
  color: #fff;
}

.inner-hero-media {
  position: absolute;
  inset: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,62,74,0.96) 0%, rgba(5,62,74,0.82) 42%, rgba(5,62,74,0.28) 100%);
}

.inner-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -130px;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: rgba(107,200,232,0.18);
  pointer-events: none;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  padding: 84px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 64px;
  align-items: center;
}

.inner-kicker,
.inner-hero-lede,
.inner-hero-copy p {
  color: rgba(255,255,255,0.92);
}

.inner-kicker {
  margin: 0 0 20px;
  color: var(--elevate-sky);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 900;
}

.inner-hero h1 {
  color: #fff;
  margin: 0;
  max-width: 930px;
  font-size: clamp(3.2rem, 5.9vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.inner-hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.18rem;
  line-height: 1.55;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.inner-hero-card {
  background: rgba(255,255,255,0.94);
  color: var(--elevate-text);
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.36);
}

.inner-hero-card h2 {
  margin: 18px 0 18px;
  font-size: 1.75rem;
  line-height: 1.03;
  text-transform: uppercase;
  color: var(--elevate-text);
}

.inner-hero-icon {
  width: 92px;
  height: auto;
  display: block;
}

.inner-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-hero-card li {
  padding: 12px 0 12px 26px;
  position: relative;
  border-top: 1px solid rgba(5,62,74,0.12);
  font-weight: 800;
  color: #315864;
}

.inner-hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--elevate-orange);
}

.inner-proof-strip {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.inner-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.inner-proof-grid > div {
  min-height: 118px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5,62,74,0.08);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-proof-grid strong {
  display: block;
  color: var(--elevate-orange);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.inner-proof-grid span {
  display: block;
  margin-top: 7px;
  color: #345b66;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.inner-section {
  padding: 76px 0;
}

.inner-two-col,
.faq-grid,
.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.inner-two-col h2,
.course-heading h2,
.image-story-copy h2,
.faq-grid h2,
.page-cta-card h2 {
  margin: 0;
  color: var(--elevate-text);
  font-size: clamp(2.25rem, 4.1vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
  text-transform: uppercase;
}

.inner-copy p,
.course-heading p,
.image-story-copy p,
.page-cta-card p,
.faq-list p {
  color: #42636d;
  line-height: 1.68;
  font-size: 1.04rem;
}

.inner-copy p:first-child { margin-top: 0; }
.inner-copy p:last-child { margin-bottom: 0; }

.teal-band {
  background: var(--elevate-teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.teal-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 9% 10%, rgba(107,200,232,0.24), transparent 28%), radial-gradient(circle at 90% 80%, rgba(233,78,27,0.16), transparent 28%);
}

.feature-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-band-grid article {
  min-height: 280px;
  padding: 32px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(107,200,232,0.34);
}

.feature-band-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--elevate-orange);
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-band-grid h3 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 1.65rem;
  text-transform: uppercase;
  line-height: 1.02;
}

.feature-band-grid p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.62;
}

.course-section {
  background: #fff;
}

.course-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.course-heading p:not(.home-v2-section-label) {
  max-width: 820px;
  margin-top: 18px;
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.course-card {
  background: var(--elevate-light);
  border: 1px solid rgba(5,62,74,0.08);
  border-radius: 20px;
  padding: 26px 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,0.055);
}

.course-card.highlight-card {
  background: #fff;
  border: 2px solid rgba(233,78,27,0.42);
}

.course-card.dark-course-card {
  background: var(--elevate-teal);
  color: #fff;
}

.course-card-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.course-card h3 {
  margin: 0;
  color: inherit;
  font-size: 1.38rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.course-card strong {
  flex: 0 0 auto;
  background: var(--elevate-orange);
  color: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.course-card p {
  margin: 0 0 15px;
  color: #486771;
  line-height: 1.58;
}

.course-card.dark-course-card p { color: rgba(255,255,255,0.86); }
.course-note { font-weight: 800; }
.course-card a { margin-top: auto; align-self: flex-start; }

.image-story-section {
  background: #f3f6f7;
}

.image-story-grid {
  align-items: center;
}

.inner-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inner-gallery-mosaic img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.inner-gallery-mosaic img:nth-child(2) { transform: translateY(26px); }
.inner-gallery-mosaic img:nth-child(3) { transform: translateY(-14px); }

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--elevate-light);
  border: 1px solid rgba(5,62,74,0.09);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--elevate-text);
  text-transform: uppercase;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.page-cta-section {
  background: var(--elevate-light);
}

.page-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  border-top: 8px solid var(--elevate-orange);
}

.page-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .inner-hero-grid,
  .inner-two-col,
  .faq-grid,
  .image-story-grid,
  .page-cta-card {
    grid-template-columns: 1fr;
  }
  .inner-hero-card { max-width: 560px; }
  .course-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-cta-actions { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .inner-hero-grid { min-height: 0; padding: 64px 0 72px; }
  .inner-hero h1 { font-size: clamp(2.65rem, 10vw, 4.4rem); }
  .inner-proof-grid,
  .feature-band-grid,
  .course-card-grid { grid-template-columns: 1fr; }
  .inner-proof-strip { margin-top: 0; padding-top: 18px; background: #f3f6f7; }
  .inner-section { padding: 56px 0; }
  .inner-gallery-mosaic img:nth-child(n) { transform: none; }
}

@media (max-width: 620px) {
  .inner-gallery-mosaic { grid-template-columns: 1fr; }
  .inner-gallery-mosaic img { height: 220px; }
  .course-card-top { flex-direction: column; }
  .page-cta-card { padding: 30px 22px; }
  .inner-hero-card { padding: 24px 22px; }
}


/* --------------------------------------------------------------------------
   Layout refinement: prevent large inner-page headings colliding with content
   -------------------------------------------------------------------------- */
.inner-two-col,
.faq-grid,
.image-story-grid {
  gap: clamp(44px, 6vw, 88px);
}

.inner-two-col h2,
.course-heading h2,
.image-story-copy h2,
.faq-grid h2,
.page-cta-card h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.paramotoring-page .inner-two-col h2,
.paramotoring-page .faq-grid h2 {
  font-size: clamp(2.25rem, 3.65vw, 4.05rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.paramotoring-page .faq-grid h2 {
  font-size: clamp(2.2rem, 3.35vw, 3.75rem);
}

.paramotoring-page .inner-copy,
.paramotoring-page .faq-list {
  position: relative;
  z-index: 2;
}

.paramotoring-page .faq-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

@media (max-width: 1180px) {
  .paramotoring-page .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Completion pack additions: contact and legal pages
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}
.contact-grid h2 {
  margin: 0 0 22px;
  color: var(--elevate-text);
  font-size: clamp(2.25rem, 4.1vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
  text-transform: uppercase;
}
.contact-direct-card,
.elevate-contact-form {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(5,62,74,0.09);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  padding: 30px;
}
.contact-direct-card { margin-top: 28px; }
.contact-direct-card h3,
.elevate-contact-form h3 {
  margin: 0 0 18px;
  color: var(--elevate-text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.elevate-contact-form { display: grid; gap: 16px; }
.elevate-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--elevate-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.035em;
}
.elevate-contact-form input,
.elevate-contact-form select,
.elevate-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5,62,74,0.18);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--elevate-text);
  background: #f8fafb;
}
.elevate-contact-form textarea { resize: vertical; }
.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(233,78,27,0.09);
  color: var(--elevate-text);
  font-weight: 800;
}
.legal-hero {
  background: linear-gradient(135deg, #f3f6f7 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(5,62,74,0.08);
}
.legal-content {
  max-width: 980px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  border-top: 8px solid var(--elevate-orange);
  padding: clamp(28px, 5vw, 56px);
}
.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--elevate-text);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: #42636d;
  line-height: 1.72;
}
.legal-content a { color: var(--elevate-teal); font-weight: 900; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
