/* ==========================================================================
   FBC — Design system (see build brief §C)
   Tokens → base → layout → components → sections → responsive
   ========================================================================== */

:root {
  --brand: #1A73E8;          /* fills & borders; white-on-brand = 4.51:1   */
  --brand-hover: #0B5CD5;
  /* Text-weight blue. #1A73E8 as type only reaches 4.05:1 on the lavender
     bands, so links use this slightly deeper blue: 5.52:1 on white,
     4.97:1 on lavender. */
  --brand-ink: #1565D0;
  --navy: #0A1A2F;
  --body: #3F4A5A;
  --muted: #686F7D;          /* darkened from #6B7280 to clear 4.5:1 on lavender */
  --lavender: #EEF3FF;
  --white: #FFFFFF;
  --line: #E5E7EB;
  --amber-tag: #7B6D34;      /* darkened so 11px tag text clears 4.5:1 on --amber-bg */
  --amber-bg: #F6F1DC;
  --success: #157C41;
  --error: #D93025;

  --content: 1180px;
  --radius-card: 6px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 2px rgba(10, 26, 47, .04);
  --shadow-header: 0 1px 0 rgba(10, 26, 47, .06);
  --shadow-menu: 0 12px 32px rgba(10, 26, 47, .10);

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.1; letter-spacing: -.015em; }
h3 { font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: #cfe0fb; color: var(--navy); }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; text-decoration: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ------------------------------------------------------ */

.container { max-width: var(--content); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
.section--lavender { background: var(--lavender); }
.section--white { background: var(--white); }
.section--tight { padding: 44px 0; }
.section--flush-top { padding-top: 0; }

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

.center { text-align: center; }
.measure { max-width: 720px; }
.measure-center { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Type helpers ------------------------------------------------ */

.eyebrow {
  display: block;
  font-size: 12px; font-weight: 700; line-height: 1.4;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-ink); margin: 0 0 12px;
}
.eyebrow--navy { color: var(--navy); }
.lead { font-size: 18px; line-height: 1.6; }
.meta { font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--muted); }
.text-navy { color: var(--navy); }

/* ---------- Buttons ----------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 24px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1;
  border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }

.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: #fff; }

.btn--secondary { background: #fff; color: var(--brand-ink); border-color: var(--brand); }
.btn--secondary:hover { background: var(--lavender); color: var(--brand-hover); border-color: var(--brand-hover); }

.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn--on-dark:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.btn--sm { min-height: 38px; padding: 8px 18px; font-size: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--brand-ink);
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow .arrow { transition: transform .15s ease; }
.link-arrow:hover .arrow { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Tags -------------------------------------------------------- */

.tag {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--amber-tag); background: var(--amber-bg); border-radius: var(--radius-pill);
  vertical-align: middle;
}
.chip {
  display: inline-block; padding: 6px 14px; margin: 0 8px 8px 0;
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: var(--lavender); border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
a.chip:hover { background: #e3ecff; text-decoration: none; }
.chip--active { background: var(--brand); border-color: var(--brand); color: #fff; }
.chip--placeholder {
  background: var(--amber-bg); color: var(--amber-tag); border-color: #e8dfbd;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px;
}

/* ---------- Announcement bar -------------------------------------------- */

.announce {
  background: var(--lavender); color: var(--navy);
  font-size: 14px; line-height: 1.4;
}
.announce__inner {
  position: relative; max-width: var(--content); margin: 0 auto;
  padding: 11px 44px; text-align: center;   /* 42px tall, as in the design */
}
.announce a { color: var(--navy); text-decoration: underline; font-weight: 600; }
.announce a:hover { color: var(--brand-ink); }
.announce__close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; border-radius: var(--radius-pill);
  color: var(--navy); cursor: pointer;
}
.announce__close:hover { background: rgba(10,26,47,.07); }
.announce[hidden] { display: none; }

/* ---------- Header ------------------------------------------------------ */

.header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; box-shadow: var(--shadow-header);
}
.header__inner {
  max-width: var(--content); margin: 0 auto; padding: 0 20px;
  height: 73px; display: flex; align-items: center; gap: 28px;
}
.wordmark {
  display: inline-flex; align-items: center; flex: none;
  color: var(--navy); text-decoration: none; border-radius: 4px;
}
.wordmark svg { display: block; height: 22px; width: auto; }
.wordmark:hover { text-decoration: none; color: var(--navy); }
.wordmark--light { color: #fff; }
.wordmark--light:hover { color: #fff; }
.brand-swatch { display: inline-block; padding: 18px 24px; border: 1px solid var(--line); border-radius: var(--radius-card); color: #000; background: #fff; }
.brand-swatch svg { display: block; height: 32px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: static; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 12px; background: none; border: 0;
  font-family: inherit; font-size: 15px; font-weight: 500; color: var(--navy);
  border-radius: 6px; cursor: pointer; text-decoration: none;
}
.nav__link:hover { color: var(--brand-ink); background: #f5f8ff; text-decoration: none; }
.nav__link[aria-expanded="true"] { color: var(--brand-ink); background: #f5f8ff; }
.nav__link .chev { transition: transform .15s ease; }
.nav__link[aria-expanded="true"] .chev { transform: rotate(180deg); }

.header__spacer { flex: 1; }
.header__actions { display: flex; align-items: center; gap: 10px; }

.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 10px; background: none; border: 0; border-radius: 6px;
  font-family: inherit; font-size: 14px; font-weight: 500; color: var(--navy); cursor: pointer;
}
.lang__btn:hover { background: #f5f8ff; color: var(--brand-ink); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); width: 232px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-menu); padding: 8px; z-index: 70;
}
.lang__menu[hidden] { display: none; }
.lang__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 8px 10px; background: none; border: 0; border-radius: 6px;
  font-family: inherit; font-size: 14px; color: var(--navy); text-align: left; cursor: pointer;
}
.lang__opt:hover:not(:disabled) { background: var(--lavender); }
.lang__opt:disabled { color: var(--muted); cursor: not-allowed; }

/* ---------- Mega menu --------------------------------------------------- */

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: var(--shadow-menu); z-index: 55;
  /* Never run off the bottom of a short screen: scroll inside instead. */
  max-height: calc(100vh - 120px); max-height: calc(100dvh - 120px);
  overflow-y: auto; overscroll-behavior: contain;
}
.mega[hidden] { display: none; }
.mega__inner {
  max-width: var(--content); margin: 0 auto; padding: 32px 20px 36px;
  display: grid; gap: 32px;
  /* four link columns plus the promo tile as a fifth, narrower track */
  grid-template-columns: repeat(4, minmax(0, 1fr)) 230px;
}
.mega--wide .mega__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mega__heading {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 12px;
}
.mega__list { list-style: none; margin: 0; padding: 0; }
.mega__list li { margin-bottom: 8px; }
.mega__list a { font-size: 14px; color: var(--body); }
.mega__list a:hover { color: var(--brand-ink); }
.mega__promo {
  background: var(--lavender); border-radius: var(--radius-card);
  padding: 20px; align-self: start;
}
.mega__promo p { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }

/* ---------- Mobile drawer ----------------------------------------------- */

.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: 0; border-radius: 6px;
  color: var(--navy); cursor: pointer;
}
.hamburger:hover { background: #f5f8ff; }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,26,47,.45); z-index: 90;
}
.drawer-overlay[hidden] { display: none; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
  background: #fff; z-index: 100; display: flex; flex-direction: column;
}
.drawer[hidden] { display: none; }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.drawer__close {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; border-radius: 6px; color: var(--navy); cursor: pointer;
}
.drawer__close:hover { background: #f5f8ff; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 0 24px; }
.drawer__foot { padding: 16px 20px; border-top: 1px solid var(--line); }
.drawer__foot .btn { width: 100%; }

.acc__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 14px 20px; background: none; border: 0;
  border-bottom: 1px solid var(--line);
  font-family: inherit; font-size: 16px; font-weight: 600; color: var(--navy);
  text-align: left; cursor: pointer;
}
.acc__trigger:hover { background: #f7f9fe; }
.acc__trigger .chev { transition: transform .15s ease; flex: none; }
.acc__trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc__panel { padding: 6px 20px 14px; border-bottom: 1px solid var(--line); background: #fbfcff; }
.acc__panel[hidden] { display: none; }
.acc__panel .mega__heading { margin-top: 12px; }
.acc__panel ul { list-style: none; margin: 0 0 6px; padding: 0; }
.acc__panel li { margin-bottom: 6px; }
.acc__panel a { font-size: 15px; color: var(--body); }
.drawer__link {
  display: block; padding: 14px 20px; border-bottom: 1px solid var(--line);
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.drawer__link:hover { background: #f7f9fe; text-decoration: none; }

body.is-locked { overflow: hidden; }

/* ---------- Hero -------------------------------------------------------- */
/* Measured from the 1728px design: the banner at its natural 1728×650 ratio
   with no overlay; headline ≈40px medium spanning ~62% of the width, 43px above
   a 572×50 search bar; the block sits at the vertical centre. */

.hero {
  position: relative; overflow: hidden;
  aspect-ratio: 1728 / 650;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); text-align: center;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--content); padding: 24px 20px; margin: 0 auto;
}
.hero h1 {
  color: #fff; font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
  font-size: clamp(30px, 3.1vw, 40px);
  margin: 0 0 18px;
  text-shadow: 0 1px 2px rgba(10, 26, 47, .45), 0 2px 18px rgba(10, 26, 47, .55);
}
.hero__sub {
  color: rgba(255, 255, 255, .94); font-weight: 400;
  font-size: clamp(16px, 1.25vw, 18px); line-height: 1.6;
  max-width: 680px; margin: 0 auto;
  text-shadow: 0 1px 2px rgba(10, 26, 47, .4), 0 1px 12px rgba(10, 26, 47, .5);
}

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

.searchbar {
  display: flex; align-items: center; gap: 0;
  width: clamp(320px, 33.1vw, 572px); max-width: 100%; margin: 0 auto;
  height: 50px; padding: 4px;
  background: #fff; border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(10,26,47,.16);
}
.searchbar--inline { margin: 0; box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.searchbar__select { position: relative; flex: none; }
.searchbar select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 8px 36px 8px 20px; border-radius: var(--radius-pill);
  height: 42px; max-width: 190px;
}
.searchbar__select .chev {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--navy);
}
.searchbar__divider { width: 1px; align-self: stretch; margin: 8px 2px; background: var(--line); flex: none; }
.searchbar input[type="search"], .searchbar input[type="text"] {
  flex: 1; min-width: 0; border: 0; background: transparent;
  font-family: inherit; font-size: 15px; color: var(--navy);
  padding: 8px 12px 8px 16px; height: 42px;
}
.searchbar input::placeholder { color: var(--muted); }
.searchbar input:focus { outline: none; }
.searchbar input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
.searchbar__submit {
  flex: none; width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: var(--brand); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.searchbar__submit:hover { background: var(--brand-hover); }

/* ---------- Cards ------------------------------------------------------- */

.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden;
}
.card__media { aspect-ratio: 16 / 10; background: var(--lavender); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 20px; margin-bottom: 8px; }
.card__desc { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.card__cta { margin-top: auto; padding-top: 6px; }

.checklist { list-style: none; margin: 0 0 16px; padding: 0; }
.checklist li {
  position: relative; padding-left: 24px; margin-bottom: 7px;
  font-size: 14px; line-height: 1.5; color: var(--body);
}
.checklist li svg { position: absolute; left: 0; top: 3px; color: var(--brand); }

.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 24px;
}
.tile h3 { font-size: 20px; }
.tile--lavender { background: var(--lavender); border-color: #dde7fb; }
.tile p:last-child { margin-bottom: 0; }

.step { display: flex; gap: 16px; align-items: flex-start; }
.step__num {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}

/* ---------- Feature split ----------------------------------------------- */

.split {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px; align-items: center;
}
.split__media img {
  width: 100%; border-radius: var(--radius-card); object-fit: cover; aspect-ratio: 4 / 3;
}
.split--reverse .split__media { order: 2; }
.split__body h2 { margin-bottom: 16px; }
.split__body p { margin-bottom: 24px; }

/* ---------- Quote band -------------------------------------------------- */

.quoteband p {
  font-size: 34px; font-weight: 500; line-height: 1.35; letter-spacing: -.015em;
  color: var(--navy); max-width: 940px;
}
.quoteband strong { font-weight: 800; }

/* ---------- Stat bar ---------------------------------------------------- */

.statbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat__value { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; }
.stat__label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---------- Amenity grid ------------------------------------------------ */

.amenities { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.amenities li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.5; }
.amenities li svg { position: absolute; left: 0; top: 4px; color: var(--brand); }

/* ---------- Testimonials ------------------------------------------------ */

.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 24px; display: flex; flex-direction: column;
}
.quote-card blockquote { margin: 0 0 16px; font-size: 17px; line-height: 1.55; color: var(--navy); }
.quote-card figcaption { margin-top: auto; font-size: 14px; color: var(--muted); }
.quote-card figcaption strong { display: block; color: var(--navy); font-size: 15px; }

/* ---------- FAQ accordion ----------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__trigger {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  width: 100%; padding: 20px 0; background: none; border: 0;
  font-family: inherit; font-size: 18px; font-weight: 600; color: var(--navy);
  text-align: left; cursor: pointer;
}
.faq__trigger:hover { color: var(--brand-ink); }
.faq__trigger .chev { flex: none; margin-top: 4px; transition: transform .15s ease; }
.faq__trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__panel { padding: 0 40px 22px 0; font-size: 16px; }
.faq__panel[hidden] { display: none; }

/* ---------- Forms ------------------------------------------------------- */

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--body); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; font-family: inherit; font-size: 15px; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  min-height: 46px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,115,232,.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--error); box-shadow: 0 0 0 3px rgba(217,48,37,.12);
}
.field__error { display: block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--error); }
.field__error[hidden] { display: none; }
.field--check { display: flex; align-items: flex-start; gap: 10px; }
.field--check input { width: 20px; min-height: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--brand); }
.field--check label { font-size: 14px; font-weight: 500; color: var(--body); margin: 0; }
.form__status { font-size: 15px; font-weight: 600; border-radius: var(--radius-card); padding: 14px 16px; }
.form__status[hidden] { display: none; }
.form__status--ok { background: #eaf7ef; color: var(--success); border: 1px solid #c6e8d3; }
.form__status--err { background: #fdecea; color: var(--error); border: 1px solid #f6c9c5; }

.newsletter { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px; padding: 11px 16px; min-height: 46px;
  font-family: inherit; font-size: 15px;
  border: 1px solid var(--line); border-radius: var(--radius-pill); background: #fff;
}

/* ---------- Breadcrumbs ------------------------------------------------- */

.crumbs { padding: 16px 0; font-size: 14px; color: var(--muted); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand-ink); }
.crumbs [aria-current] { color: var(--navy); font-weight: 600; }

/* ---------- Location card ----------------------------------------------- */

.loc-card { display: flex; flex-direction: column; }
.loc-card .card__media { aspect-ratio: 3 / 2; }
.loc-card__addr { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

/* ---------- Pricing callout --------------------------------------------- */

.pricing { border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--lavender); padding: 28px; }
.pricing ul { list-style: none; margin: 0 0 14px; padding: 0; }
.pricing li {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 11px 0; border-bottom: 1px dashed #d6e1f7; font-size: 15px;
}
.pricing li:last-child { border-bottom: 0; }
.pricing li span:first-child { font-weight: 600; color: var(--navy); }

/* ---------- Map placeholder --------------------------------------------- */

.mapbox {
  border: 1px dashed #c6d4ee; border-radius: var(--radius-card); background: var(--lavender);
  min-height: 220px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px; color: var(--muted); font-size: 15px;
}

/* ---------- Prose (legal / article) ------------------------------------- */

.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin-top: 40px; }
.prose h3 { font-size: 20px; margin-top: 28px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.notice {
  background: var(--amber-bg); border: 1px solid #e8dfbd; border-radius: var(--radius-card);
  padding: 16px 18px; font-size: 14px; color: #6d6130;
}

/* ---------- Pre-footer + footer ----------------------------------------- */

.prefooter { padding: 72px 0 40px; background: #fff; }
.prefooter h2 { font-size: 40px; max-width: 900px; margin-bottom: 14px; }
.prefooter p { font-size: 18px; margin-bottom: 24px; max-width: 640px; }

.footer { background: #fff; padding: 8px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 260px repeat(3, minmax(0, 1fr));
  gap: 32px 40px; align-items: start;
}
.footer__building { grid-row: span 2; }
.footer__building img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-card);
}
.footer__building .btn { width: 100%; margin-top: 14px; }
.footer__col h3 {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 14px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 9px; }
.footer__col a { font-size: 14px; color: var(--body); }
.footer__col a:hover { color: var(--brand-ink); }
.footer__lang { display: inline-flex; align-items: center; gap: 6px; margin: 0; font-size: 14px; color: var(--body); }

.legal {
  margin-top: 44px; padding: 20px 0 32px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.legal nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.legal a { color: var(--muted); }
.legal a:hover { color: var(--brand-ink); }

/* ---------- Member roster strip ----------------------------------------- */

.logos {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 16px 44px; justify-content: center;
}
.logos li {
  font-size: 19px; font-weight: 800; letter-spacing: .04em;
  color: var(--navy); opacity: .55;
}

/* ---------- Case studies ------------------------------------------------ */

.case {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
}
.case__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.case__body h3 { font-size: 20px; margin-bottom: 10px; }
.case__stat {
  margin: 4px 0 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--muted);
}
.case__stat strong {
  display: inline-block; margin-right: 6px;
  font-size: 26px; font-weight: 800; color: var(--brand-ink); letter-spacing: -.02em;
}
.case .card__cta { margin-top: auto; }

/* ---------- Comparison table -------------------------------------------- */

.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
.compare th, .compare td {
  padding: 14px 18px; text-align: left; font-size: 14px; line-height: 1.45;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.compare thead th {
  background: var(--lavender); color: var(--navy);
  font-size: 15px; font-weight: 700; white-space: nowrap;
}
.compare thead th a { color: var(--navy); }
.compare thead th a:hover { color: var(--brand-ink); }
.compare__price {
  display: block; margin-top: 4px;
  font-size: 12px; font-weight: 500; color: var(--muted); white-space: normal;
}
.compare tbody th { font-weight: 600; color: var(--navy); width: 190px; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:nth-child(even) { background: #fbfcff; }

/* ---------- Plan cards -------------------------------------------------- */

.plans { align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 28px;
}
.plan--popular { border-color: var(--brand); border-width: 2px; padding: 27px; }
.plan__flag {
  position: absolute; top: -12px; left: 28px; padding: 4px 12px;
  background: var(--brand); color: #fff; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan__pitch { font-size: 15px; margin-bottom: 16px; }
.plan__price {
  font-size: 26px; font-weight: 800; color: var(--navy);
  letter-spacing: -.02em; margin-bottom: 6px;
}
.plan__cta { margin-top: auto; padding-top: 8px; }
.plan__cta .btn { width: 100%; }

/* ---------- Deal / commission tables ------------------------------------ */

.dealcard { border: 1px solid var(--line); border-radius: var(--radius-card); background: #fff; padding: 24px; }
.dealcard h3 { font-size: 20px; margin-bottom: 4px; }
.dealcard dl { margin: 16px 0 0; font-size: 14px; }
.dealcard dt { font-weight: 700; color: var(--navy); margin-top: 10px; }
.dealcard dd { margin: 2px 0 0; }

/* ---------- Fortis content blocks --------------------------------------- */

.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }


/* Stacked short sentences — the brand's house style. */
.lines { list-style: none; margin: 0; padding: 0; }
.lines li { padding: 6px 0; font-size: 17px; line-height: 1.5; color: var(--navy); border-bottom: 1px solid var(--line); }
.lines li:last-child { border-bottom: 0; }
.lines--check li { position: relative; padding-left: 26px; border-bottom: 0; padding-top: 4px; padding-bottom: 4px; }
.lines--check li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand); transform: rotate(-45deg);
}
.lines--tight li { padding: 3px 0; font-size: 15px; border-bottom: 0; color: var(--body); }
.lines--inline { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 18px; }
.lines--inline li { padding: 0; border: 0; font-size: 16px; }

.statement { font-size: 20px; font-weight: 600; line-height: 1.45; color: var(--navy); margin: 20px 0; }
.statement strong { font-weight: 800; }

.chips { margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.chips .chip { margin: 0; }

.questions { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; }
.questions li {
  break-inside: avoid; margin: 0 0 10px; padding: 12px 16px;
  background: var(--lavender); border: 1px solid #dde7fb; border-radius: var(--radius-card);
  font-size: 15px; font-weight: 600; color: var(--navy);
}

.contrast { list-style: none; margin: 0; padding: 0; }
.contrast li { padding: 8px 0; font-size: 16px; border-bottom: 1px solid #dde7fb; }
.contrast li:last-child { border-bottom: 0; }
.contrast strong { color: var(--navy); display: inline-block; min-width: 130px; }

.region { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 22px 24px; }
.region h3 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.region ul { list-style: none; margin: 0; padding: 0; }
.region li { margin-bottom: 8px; font-size: 16px; }
.region li a { color: var(--navy); font-weight: 600; }
.region li a:hover { color: var(--brand-ink); }
.region__future { color: var(--muted); font-style: italic; font-size: 14px; }
/* A region with many cities flows into two columns so its card does not
   stretch the whole row. */
.region__list--cols { columns: 2; column-gap: 20px; }
.region__list--cols li { break-inside: avoid; }

.prefooter .lead { max-width: 640px; }
.prefooter__close { font-size: 22px; font-weight: 800; line-height: 1.3; color: var(--navy); margin: 0 0 14px; letter-spacing: -.01em; }

.mega--cols6 .mega__inner { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.mega--cols6 .mega__promo {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px; margin-top: 8px;
}
.mega--cols6 .mega__promo p { margin: 0; }
.mega__list a.is-muted { color: var(--muted); font-style: italic; font-size: 13px; }

/* ---------- Search results ---------------------------------------------- */

.results__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.empty {
  background: var(--lavender); border: 1px solid #dde7fb; border-radius: var(--radius-card); padding: 24px;
}

/* ---------- Responsive -------------------------------------------------- */

@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .section--tight { padding: 56px 0; }
  .container { padding: 0 32px; }
  .header__inner { padding: 0 32px; }
  .mega__inner { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 1023px) {
  .nav, .header__actions .lang, .header__actions .btn, .header__actions .nav__link { display: none; }
  .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hamburger { display: inline-flex; }
  .header__inner { gap: 12px; }
  .mega { display: none !important; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 220px repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .hero { aspect-ratio: auto; min-height: 460px; }
  .hero h1 { font-size: clamp(28px, 4.6vw, 34px); line-height: 1.12; margin-bottom: 16px; }
  .hero__sub { font-size: 16px; }
  .grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .questions { columns: 1; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quoteband p { font-size: 27px; }
  .prefooter h2 { font-size: 32px; }
}

@media (max-width: 640px) {
  .grid--5 { grid-template-columns: 1fr; }
  .prefooter__close { font-size: 19px; }
  .logos { gap: 12px 24px; }
  .logos li { font-size: 16px; }
  .plan { padding: 22px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .hero { min-height: 470px; }
  .hero h1 { font-size: 28px; }
  .hero__sub { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__building { grid-row: auto; max-width: 320px; }
  .quoteband p { font-size: 23px; }
  .prefooter { padding: 52px 0 32px; }
  .prefooter h2 { font-size: 28px; }
  .searchbar { flex-wrap: wrap; height: auto; border-radius: 22px; padding: 8px; gap: 4px; width: 100%; }
  .searchbar select { max-width: none; width: 100%; }
  .searchbar__select { flex: 1 1 100%; }
  .searchbar__divider { display: none; }
  .searchbar input[type="search"] { flex: 1 1 auto; }
  .legal { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .header, .announce, .drawer, .drawer-overlay, .mega { display: none !important; }
}
