/* ============================================================
   Content sections — Project Highlights + Amenities
   ============================================================ */
.section { padding-block: var(--section-y); }
/* Adjacent sections share one gap instead of stacking both paddings */
.section + .section { padding-top: 0; }

.section-title {
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: var(--fs-h2);
  line-height: 1.12;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}

/* "Know More ->" style link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: var(--fw-med);
  font-size: .95rem;
  color: var(--brand-700);
}
.link-arrow i { transition: transform var(--dur) var(--ease); }
.link-arrow:hover i { transform: translateX(4px); }

/* Centered lead CTA used across sections */
.section-cta { text-align: center; margin-top: clamp(1.75rem, 3.5vw, 2.75rem); }

/* ============================================================
   Project Highlights — white panel floating over the hero seam
   ============================================================ */
.highlights {
  position: relative;
  z-index: 2;
  background: var(--bg-warm);
  padding-top: var(--section-y);
  padding-bottom: 0;
}
.highlights__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.25rem, 3vw, 2.5rem);
}
.highlights__title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.highlights__sprig { color: var(--brand-500); font-size: 1.05em; }

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 1.75rem;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
  padding: .5rem 1rem;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.highlight:nth-child(5n) { border-right: 0; }
.highlight__icon {
  font-size: 1.9rem;
  color: var(--brand-600);
  margin-bottom: .35rem;
}
.highlight__value {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.15;
}
.highlight__caption {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ============================================================
   Amenities — media + content
   ============================================================ */
.amenities { background: var(--bg-warm); }
.amenities__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.amenities__media {
  position: relative;
  margin: 0;
}
.amenities__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}

.video-pill {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .95rem .4rem .4rem;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-card);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-card-hover); }
.video-pill__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
  padding-left: 2px;
}
.video-pill__label {
  font-size: .85rem;
  font-weight: var(--fw-med);
  color: var(--ink);
}

.amenities__title { margin-bottom: 1rem; }
.amenities__lead {
  max-width: 34rem;
  color: var(--body);
  font-weight: var(--fw-light);
  margin-bottom: 2rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.25rem;
  margin-bottom: 2rem;
}
.amenity {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  min-width: 0;
}
.amenity__icon {
  font-size: 1.75rem;
  color: var(--brand-600);
  flex-shrink: 0;
  line-height: 1;
}
.amenity__text { display: flex; flex-direction: column; min-width: 0; }
.amenity__title {
  font-weight: var(--fw-semi);
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.25;
}
.amenity__caption {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Full amenities grid (6-up grid on desktop, 2-up auto-slider on mobile) */
.am-grid-wrap { margin-top: clamp(2rem, 4vw, 3.25rem); }
.am-grid .swiper { overflow: hidden; }
.am-grid .swiper-slide { height: auto; }
.am-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .7rem;
  height: 100%;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.am-card:hover { border-color: var(--brand-300); box-shadow: var(--sh-card); transform: translateY(-3px); }
.am-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 1.65rem;
}
.am-card__label { font-size: .85rem; font-weight: var(--fw-med); color: var(--ink); line-height: 1.3; }

/* Bank loan trust strip (below amenity icons) */
.bank-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: .9rem 1.5rem;
  background: var(--brand-100);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.bank-strip__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: var(--fw-semi);
  font-size: .92rem;
  color: var(--brand-700);
  white-space: nowrap;
}
.bank-strip__label i { font-size: 1.25rem; }
.bank-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem 1.3rem;
  margin: 0;
  padding: 0;
}
.bank-strip__list li {
  position: relative;
  font-size: .85rem;
  font-weight: var(--fw-med);
  color: var(--body);
}
.bank-strip__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -.7rem;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--brand-300);
}
.bank-strip__more { margin-left: auto; font-size: .85rem; white-space: nowrap; }

@media (min-width: 992px) {
  .am-grid .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    transform: none !important;
  }
  .am-grid .swiper-slide { width: auto !important; margin: 0 !important; }
}

/* Video lightbox dialog (extends .modal in form.css) */
.modal__dialog--video { max-width: min(960px, 92vw); }
.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-float);
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Inline "Watch video" button (Location, Floor Plans heads) */
.video-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.1rem;
  padding: .4rem 1.15rem .4rem .4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: var(--fw-med);
  color: var(--brand-700);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-link:hover { transform: translateY(-2px); border-color: var(--brand-300); box-shadow: var(--sh-card); }
.video-link__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .82rem;
  flex-shrink: 0;
}
.video-link__label { white-space: nowrap; }

/* ============================================================
   Spacious Homes — floor plans (preview + locked, unlock via lead form)
   ============================================================ */
.homes { background: var(--bg); }
.homes__head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.homes__head .eyebrow { margin-bottom: .5rem; }
.homes__head .section-sub { margin-inline: auto; }

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.fp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fp-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); }
.fp-card__media { position: relative; aspect-ratio: 4 / 3; background: #f1f2ee; overflow: hidden; }
.fp-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-card--locked .fp-card__img { filter: blur(10px); transform: scale(1.1); }

.fp-card__lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: rgba(255, 255, 255, .42);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.fp-card__lock:hover { background: rgba(255, 255, 255, .24); }
.fp-card__lock-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: 0 8px 22px rgba(0, 38, 80, .28);
}
.fp-card__lock-text { font-weight: var(--fw-semi); font-size: .92rem; color: var(--brand-700); }

.fp-card__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  padding: 1rem 1.25rem;
}
.fp-card__type { font-family: var(--font-sans); font-weight: var(--fw-semi); font-size: 1.05rem; color: var(--ink); }
.fp-card__range { font-size: .82rem; color: var(--muted); }

.homes__foot { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .9rem; margin-top: clamp(2rem, 4vw, 2.75rem); }

/* Lead-form note shown when unlocking floor plans */
.lead-form__note {
  margin: -.4rem 0 1rem;
  padding: .65rem .8rem;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--brand-700);
  background: var(--brand-100);
  border-radius: var(--r-sm);
}

/* ============================================================
   Gallery — "A Glimpse of Northern Lights" carousel
   ============================================================ */
.gallery { background: var(--bg-warm); }
.gallery__inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.gallery__head .section-title { font-size: clamp(1.9rem, 1.1rem + 1.7vw, 2.45rem); }
.gallery__carousel { position: relative; min-width: 0; }
.gallery .swiper { overflow: hidden; }
.gallery .swiper-slide { width: 250px; height: auto; }

.glimpse-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.glimpse-card img { width: 100%; height: 330px; object-fit: cover; display: block; }
.glimpse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 17, .62), transparent 48%);
}
.glimpse-card__label {
  position: absolute;
  left: 1rem;
  bottom: .85rem;
  z-index: 1;
  color: #fff;
  font-weight: var(--fw-med);
  font-size: .95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.gallery__nav {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--sh-card);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.2rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__nav:hover { background: var(--brand-100); transform: translateY(-50%) scale(1.05); }
.gallery__nav.swiper-button-disabled { opacity: .35; cursor: default; }

.gallery__footer { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2.25rem; }

/* Shared section sub-heading */
.section-sub {
  margin-top: .75rem;
  color: var(--body);
  font-weight: var(--fw-light);
  font-size: 1rem;
}

/* ============================================================
   Distance from Key Places — map + tabbed connectivity
   ============================================================ */
.location { background: var(--bg-warm); }
.location__head { max-width: 640px; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.location__head .eyebrow { margin-bottom: .5rem; }

.location__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.location__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  min-height: 400px;
  background: var(--line);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.location__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.loc-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: .35rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.loc-tabs::-webkit-scrollbar { display: none; }
.loc-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .68rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: var(--fw-med);
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.loc-tab i { font-size: 1rem; }
.loc-tab:hover { color: var(--brand-700); background: var(--brand-100); }
.loc-tab.is-active { background: var(--brand-700); color: #fff; }

.loc-list { display: none; flex-direction: column; }
.loc-list.is-active { display: flex; animation: locFade .4s var(--ease); }
@keyframes locFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem .25rem;
  border-bottom: 1px dashed var(--line);
}
.loc-row:last-child { border-bottom: 0; }
.loc-row__name { font-size: .92rem; color: var(--ink); }
.loc-row__time {
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: var(--fw-semi);
  color: var(--brand-700);
  background: var(--brand-100);
  padding: .28rem .7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* ============================================================
   About the Developer — deep-blue brand band
   ============================================================ */
.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  color: #fff;
  padding-block: clamp(3.25rem, 6vw, 5.5rem);
}
.about__glow {
  position: absolute;
  right: -8%;
  top: -30%;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 172, 214, .22), transparent 60%);
  z-index: -1;
}
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.about__logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
  margin-bottom: 1.5rem;
}
.about__eyebrow { color: var(--brand-300); margin-bottom: .7rem; }
.about__title {
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: var(--fs-h2);
  line-height: 1.12;
  letter-spacing: var(--ls-tight);
  color: #fff;
  margin-bottom: 1.2rem;
}
.about__text {
  max-width: 38rem;
  color: rgba(255, 255, 255, .82);
  font-weight: var(--fw-light);
  line-height: 1.75;
  margin-bottom: 1.85rem;
}
.about__text em { color: #fff; font-style: italic; }

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}
.about__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-section { background: var(--bg); }
.faq-section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.faq-section__head .eyebrow { margin-bottom: .5rem; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: .85rem; }
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq.is-open { border-color: var(--brand-300); box-shadow: var(--sh-sm); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: var(--fw-med);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 1.05rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq.is-open .faq__icon { transform: rotate(45deg); background: var(--brand-700); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--body);
}

/* ============================================================
   Brochure lead band (horizontal Name + Phone form)
   ============================================================ */
.brochure {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.brochure__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.brochure__title {
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: #fff;
}
.brochure__sub {
  margin-top: .7rem;
  max-width: 32rem;
  font-size: .95rem;
  font-weight: var(--fw-light);
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}
.brochure-form { position: relative; }
.brochure-form__hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.brochure-form__row { display: flex; gap: .7rem; align-items: flex-start; }
.brochure-form .field { flex: 1; min-width: 0; }
.brochure-form .field__input { background: #fff; border-color: transparent; padding: .85rem 1rem; }
.brochure-form__submit { margin-top: 0; flex-shrink: 0; }
.brochure-form__success {
  display: none;
  align-items: center;
  gap: .6rem;
  padding: .35rem 0;
  font-size: 1rem;
  font-weight: var(--fw-med);
  color: #fff;
}
.brochure-form__success i { font-size: 1.5rem; }
.brochure-form.is-success .brochure-form__row { display: none; }
.brochure-form.is-success .brochure-form__success { display: flex; }

/* ============================================================
   Thank-you page
   ============================================================ */
.ty-header { padding: 1.1rem 0; border-bottom: 1px solid var(--line); background: #fff; }
.thankyou { display: grid; place-items: center; text-align: center; min-height: 72vh; padding-block: clamp(3rem, 8vw, 6rem); }
.thankyou__inner { max-width: 620px; }
.thankyou__icon { display: block; font-size: 4rem; line-height: 1; color: var(--brand-700); margin-bottom: 1.1rem; }
.thankyou .eyebrow { margin-bottom: .6rem; }
.thankyou__title {
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.thankyou__text { color: var(--body); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dev-stat {
  background: rgba(255, 255, 255, .03);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.2rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.dev-stat__value {
  font-family: var(--font-serif);
  font-weight: var(--fw-semi);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: #fff;
}
.dev-stat__caption { font-size: .85rem; color: rgba(255, 255, 255, .72); }

/* ============================================================
   Pricing — entry price shown, others locked behind the lead form
   ============================================================ */
.pricing { background: var(--brand-100); }
/* Generous top/bottom breathing room inside the tinted band.
   `.section.pricing` (0,2,0) beats the `.section + .section { padding-top:0 }` rule that
   otherwise collapses this section's top padding against the neighbour above. */
.section.pricing { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.pricing__head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.pricing__head .eyebrow { margin-bottom: .5rem; }
.pricing__head .section-sub { margin-inline: auto; }

.pricing__panel {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 44px rgba(0, 38, 80, .10);
  overflow: hidden;
}

.pricing-table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing-table thead th {
  background: var(--brand-700);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 1rem clamp(1rem, 2.5vw, 1.75rem);
}
.pricing-table__price-col { text-align: right; }

.pricing-cell { padding: clamp(1rem, 2.2vw, 1.4rem) clamp(1rem, 2.5vw, 1.75rem); vertical-align: middle; }
.pricing-row + .pricing-row .pricing-cell { border-top: 1px solid var(--line); }
.pricing-row--locked { background: rgba(0, 51, 102, .025); }

.pricing-cell--type {
  font-family: var(--font-sans);
  font-weight: var(--fw-semi);
  font-size: 1.1rem;
  color: var(--brand-700);
  white-space: nowrap;
}
.pricing-cell--area { color: var(--muted); font-size: .9rem; }
.pricing-cell--price { text-align: right; }

.pricing-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
}

.pricing-lock {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  border: 1px solid var(--brand-700);
  background: transparent;
  color: var(--brand-700);
  border-radius: var(--r-pill);
  padding: .5rem .55rem .5rem .9rem;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: var(--fw-semi);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.pricing-lock > .ph { font-size: 1.05rem; }
.pricing-lock__text { white-space: nowrap; }
.pricing-lock__cta {
  background: var(--brand-700);
  color: #fff;
  border-radius: var(--r-pill);
  padding: .2rem .7rem;
  font-size: .8rem;
  transition: background .18s ease;
}
.pricing-lock:hover {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 38, 80, .22);
}
.pricing-lock:hover .pricing-lock__cta { background: rgba(255, 255, 255, .2); }

.pricing__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
}
.pricing__note .ph { font-size: 1rem; color: var(--brand-600); flex-shrink: 0; }

@media (max-width: 560px) {
  .pricing-cell { padding: .95rem .8rem; }
  .pricing-table thead th { padding: .8rem; font-size: .72rem; }
  .pricing-cell--type { font-size: 1rem; }
  .pricing-cell--area { font-size: .8rem; }
  .pricing-price { font-size: 1rem; }
  /* Stack the chip so the long "On Request" label + Unlock pill never overflow */
  .pricing-lock {
    flex-direction: column;
    gap: .35rem;
    padding: .55rem .75rem;
    font-size: .82rem;
  }
}
