/* ============================================================
   FindStay Design System · v2.0 (2026)
   deep teal #0E5E56 · sunrise coral #F2664B · gold #E8A93C
   warm sand #F7F5EF · Sora display / Inter body
   Scope: nav · footer · platform pages (.fs-*) — blog typography
   stays on Tailwind (global.css). Bare-element rules kept minimal
   so post pages are not affected.
   ============================================================ */

:root {
  /* Campus·elevated remap (大王 approved 2026-07-07) — indigo/lime/ink.
     legacy var names kept so all .fs-* platform rules re-skin unchanged. */
  --fs-teal: #4B3FE4;        /* primary (indigo) — nav, hero overlay, accents */
  --fs-teal-deep: #3A2FC4;
  --fs-teal-tint: #EEECFF;   /* indigo tint — chips */
  --fs-coral: #4B3FE4;       /* CTA → unified indigo */
  --fs-coral-deep: #3A2FC4;
  --fs-gold: #CDEB5A;        /* lime accent — hero highlight, marks */
  --fs-sand: #FAF9FC;        /* premium near-white canvas */
  --fs-ink: #14122A;         /* near-black indigo — dark sections, headings */
  --fs-slate: #6B6880;
  --fs-mist: #A3ADA6;
  --fs-line: #ECEAF4;        /* hairline */
  --fs-card: #FFFFFF;
  --fs-star: #FF6455;        /* rating stars only */
  --fs-radius: 18px;
  --fs-shadow-1: 0 1px 2px rgba(20,18,42,.05), 0 8px 24px rgba(20,18,42,.08);
  --fs-shadow-2: 0 2px 6px rgba(20,18,42,.05), 0 14px 40px rgba(20,18,42,.11);
  --fs-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-pad-x: clamp(18px, 4.5vw, 48px);
}

/* ---------- a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--fs-teal); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 0; font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

.fs-page a:focus-visible,
.nav a:focus-visible, .nav button:focus-visible,
.foot a:focus-visible,
.fs-page button:focus-visible, .fs-page input:focus-visible, .fs-page summary:focus-visible {
  outline: 2px solid var(--fs-coral); outline-offset: 2px; border-radius: 4px;
}

/* ============================================================
   NAV — sticky solid by default; .overlay = transparent over hero
   ============================================================ */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(247, 245, 239, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fs-line);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  font-family: var(--fs-body);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 12px var(--fs-pad-x); min-height: 64px;
}
.nav.scrolled { box-shadow: 0 10px 28px -18px rgba(22,33,29,.28); }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-height: 44px; }
.brand img { width: 30px; height: 30px; display: block; }
.brand .title { display: flex; flex-direction: column; line-height: 1.05; }
.brand b {
  font-family: var(--fs-display); font-weight: 700; font-size: 19px;
  color: var(--fs-ink); letter-spacing: -.01em;
}
.brand b em { font-style: normal; color: var(--fs-teal); }
.brand .title span {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fs-slate); font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--fs-ink); text-decoration: none; font-size: 15px; font-weight: 500;
  position: relative; padding: 10px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 4px; height: 2px; width: 0;
  background: var(--fs-coral); border-radius: 2px; transition: width .28s ease;
}
.nav-links a:hover { color: var(--fs-teal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fs-coral); color: #fff !important; border: none; cursor: pointer;
  border-radius: 999px; padding: 11px 22px; font-size: 14.5px; font-weight: 600;
  font-family: var(--fs-body); line-height: 1;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.nav-cta:hover {
  background: var(--fs-coral-deep); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242,102,75,.32);
}
.nav-cta::after { display: none; }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; flex: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,.65); animation: fs-pulse 2.2s infinite;
}
@keyframes fs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.65); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* hamburger */
.hamb {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; cursor: pointer;
  background: none; border: none; border-radius: 10px;
}
.hamb span { display: block; height: 2px; width: 100%; background: var(--fs-ink); border-radius: 2px; transition: transform .3s, opacity .3s, background .3s; }
.nav.open .hamb span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .hamb span:nth-child(2) { opacity: 0; }
.nav.open .hamb span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* overlay variant (homepage hero) */
.nav.overlay:not(.scrolled):not(.open) {
  position: fixed; background: transparent; border-bottom-color: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.nav.overlay { position: fixed; }
.nav.overlay:not(.scrolled):not(.open) .brand b,
.nav.overlay:not(.scrolled):not(.open) .brand b em { color: #fff; }
.nav.overlay:not(.scrolled):not(.open) .brand .title span { color: rgba(255,255,255,.75); }
.nav.overlay:not(.scrolled):not(.open) .nav-links a { color: rgba(255,255,255,.95); text-shadow: 0 1px 10px rgba(9,63,58,.45); }
.nav.overlay:not(.scrolled):not(.open) .nav-links a:hover { color: #fff; }
.nav.overlay:not(.scrolled):not(.open) .hamb span { background: #fff; }
.nav.overlay:not(.scrolled):not(.open) .brand img { filter: drop-shadow(0 1px 6px rgba(9,63,58,.4)); }

/* ============================================================
   SHARED PAGE PRIMITIVES (.fs-page wraps every platform page)
   ============================================================ */
.fs-page { font-family: var(--fs-body); color: var(--fs-ink); background: var(--fs-sand); }
.fs-page img { max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--fs-pad-x); }
.wrap-narrow { max-width: 880px; }

.fs-sec { padding: clamp(52px, 7vw, 92px) 0; }
.fs-sec--tight { padding: clamp(34px, 4.5vw, 56px) 0; }
.fs-sec--tint { background: var(--fs-teal-tint); }
.fs-sec--white { background: #fff; }
.fs-sec--deep { background: var(--fs-teal-deep); color: #fff; }

.kicker {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fs-coral); font-weight: 700; margin-bottom: 12px;
  font-family: var(--fs-body);
}
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: 38px; flex-wrap: wrap; }
.sec-head h2, .fs-h2 {
  font-family: var(--fs-display); font-weight: 700; letter-spacing: -.015em;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.14; color: inherit; margin: 0;
}
.sec-head .sub { color: var(--fs-slate); font-size: 15.5px; max-width: 52ch; margin-top: 10px; line-height: 1.65; }
.fs-sec--deep .sec-head .sub { color: rgba(255,255,255,.78); }
.more-link {
  color: var(--fs-teal); font-weight: 600; font-size: 15px; text-decoration: none;
  white-space: nowrap; border-bottom: 1.5px solid transparent; transition: border-color .2s;
}
.more-link:hover { border-bottom-color: var(--fs-coral); }

/* buttons (mirror of global.css .fs-btn so previews/static pages match) */
.fs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 26px; min-height: 44px;
  font-weight: 600; font-size: 15px; line-height: 1; text-decoration: none;
  border: none; cursor: pointer; font-family: var(--fs-body);
  transition: transform .2s cubic-bezier(.4,0,.2,1), background .2s, box-shadow .2s, color .2s;
}
.fs-btn-coral { background: var(--fs-coral); color: #fff; }
.fs-btn-coral:hover { background: var(--fs-coral-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(242,102,75,.3); }
.fs-btn-ghost { border: 1.5px solid var(--fs-teal); color: var(--fs-teal); background: transparent; }
.fs-btn-ghost:hover { background: var(--fs-teal-tint); }
.fs-btn-white { background: #fff; color: var(--fs-teal-deep); }
.fs-btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(9,63,58,.25); }
.fs-btn-teal { background: var(--fs-teal); color: #fff; }
.fs-btn-teal:hover { background: var(--fs-teal-deep); }

.fs-chip {
  display: inline-block; background: var(--fs-teal-tint); color: var(--fs-teal);
  border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 500;
  white-space: nowrap;
}
.fs-chip--gold { background: rgba(232,169,60,.16); color: #8a6114; }

/* cards */
.fs-card {
  background: var(--fs-card); border-radius: var(--fs-radius); overflow: hidden;
  box-shadow: var(--fs-shadow-1); border: 1px solid rgba(227,224,213,.6);
  transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s;
}
a.fs-card { display: block; text-decoration: none; color: inherit; }
.fs-card:hover { transform: translateY(-3px); box-shadow: var(--fs-shadow-2); }

/* grids */
.fs-grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* stars & ratings */
.stars { color: var(--fs-star); letter-spacing: .04em; font-size: 14px; }
.rate-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fs-teal); color: #fff; border-radius: 8px;
  padding: 3px 8px; font-size: 13px; font-weight: 600; line-height: 1.3;
}
.rate-note { color: var(--fs-slate); font-size: 12.5px; }

/* ============================================================
   HERO (homepage + locale landings)
   ============================================================ */
.fs-hero {
  position: relative; min-height: 92svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--fs-teal-deep);
}
.fs-hero .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.fs-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,63,58,.52) 0%, rgba(9,63,58,.18) 30%, rgba(9,63,58,.14) 55%, rgba(9,63,58,.62) 100%),
    linear-gradient(100deg, rgba(9,63,58,.55) 0%, rgba(9,63,58,.22) 48%, rgba(9,63,58,.05) 75%);
}
.fs-hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 120px var(--fs-pad-x) 90px;
  display: grid; grid-template-columns: minmax(0,1fr) 460px;
  gap: 56px; align-items: center;
}
.fs-hero-aside { justify-self: end; width: 100%; max-width: 460px; }
@media (max-width: 900px) {
  .fs-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .fs-hero-aside { justify-self: stretch; max-width: 520px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; color: #fff;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fs-gold); box-shadow: 0 0 12px var(--fs-gold); }
.fs-hero h1 {
  font-family: var(--fs-display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(38px, 6.2vw, 68px); line-height: 1.06; max-width: 17ch; margin: 0;
  text-shadow: 0 3px 26px rgba(9,63,58,.45);
}
.fs-hero h1 em { font-style: normal; color: var(--fs-gold); }
.fs-hero .lead {
  margin-top: 20px; font-size: clamp(16px, 1.9vw, 19.5px); line-height: 1.6;
  max-width: 56ch; color: rgba(255,255,255,.94); text-shadow: 0 1px 14px rgba(9,63,58,.5);
}
.fs-hero .lead b { color: #fff; font-weight: 600; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero mini search */
.hero-search {
  margin-top: 30px; max-width: 560px; display: flex; gap: 10px;
  background: rgba(255,255,255,.97); border-radius: 999px; padding: 7px 7px 7px 20px;
  box-shadow: 0 18px 48px -14px rgba(9,63,58,.55); align-items: center;
}
.hero-search svg { flex: none; color: var(--fs-teal); }
.hero-search input {
  flex: 1; border: none; outline: none; background: transparent; min-width: 0;
  font-size: 15.5px; font-family: var(--fs-body); color: var(--fs-ink); padding: 10px 0;
}
.hero-search input::placeholder { color: var(--fs-mist); }
.hero-search button { flex: none; }

.hero-stats { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.gstat {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 13px 20px; min-width: 128px;
}
.gstat b {
  display: block; font-family: var(--fs-display); font-weight: 700;
  font-size: 24px; letter-spacing: -.01em; font-variant-numeric: tabular-nums;
}
.gstat span { font-size: 12px; color: rgba(255,255,255,.82); letter-spacing: .04em; }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */
/* how it works */
.step-card { padding: 30px 28px; position: relative; }
.step-card .n {
  font-family: var(--fs-display); font-weight: 700; font-size: 15px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--fs-teal); color: #fff; margin-bottom: 18px;
}
.step-card h3 { font-family: var(--fs-display); font-weight: 600; font-size: 19px; margin: 0 0 9px; letter-spacing: -.01em; }
.step-card p { color: var(--fs-slate); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* country cards */
.country-card { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; }
.country-card .flag { font-size: 30px; line-height: 1; }
.country-card h3 { font-family: var(--fs-display); font-weight: 600; font-size: 18px; margin: 0; letter-spacing: -.01em; }
.country-card .meta { color: var(--fs-slate); font-size: 13.5px; line-height: 1.55; }
.country-card .meta b { color: var(--fs-teal); font-weight: 600; }
.country-card .go { margin-top: auto; color: var(--fs-coral); font-weight: 600; font-size: 13.5px; }

/* city cards */
.city-card { padding: 20px 22px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.city-card h3 { font-family: var(--fs-display); font-weight: 600; font-size: 16.5px; margin: 0; letter-spacing: -.01em; }
.city-card .c-meta { color: var(--fs-slate); font-size: 13px; margin-top: 4px; }
.city-card .from { text-align: right; flex: none; }
.city-card .from b { display: block; color: var(--fs-teal); font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }
.city-card .from span { font-size: 11.5px; color: var(--fs-mist); }

/* property cards */
.prop-card { display: flex; flex-direction: column; }
.prop-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--fs-teal-tint); }
.prop-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.prop-card:hover .prop-thumb img { transform: scale(1.05); }
.prop-thumb .ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--fs-teal) 0%, var(--fs-teal-deep) 100%);
  color: rgba(255,255,255,.9); font-family: var(--fs-display);
  font-size: 44px; font-weight: 700;
}
.prop-thumb .rate-badge { position: absolute; top: 12px; left: 12px; box-shadow: 0 4px 14px rgba(9,63,58,.35); }
.prop-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prop-body h3 { font-family: var(--fs-display); font-weight: 600; font-size: 16.5px; line-height: 1.35; margin: 0; letter-spacing: -.01em; }
.prop-body .loc { color: var(--fs-slate); font-size: 13px; }
.prop-body .price { margin-top: auto; padding-top: 8px; font-size: 14px; color: var(--fs-slate); }
.prop-body .price b { color: var(--fs-coral-deep); font-weight: 700; font-size: 16px; font-variant-numeric: tabular-nums; }
.prop-body .price .ind { font-size: 11.5px; color: var(--fs-mist); display: block; margin-top: 2px; }
.prop-body .units { display: flex; flex-wrap: wrap; gap: 6px; }

/* resident quotes */
.quote-card { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.quote-card .q { font-size: 15px; line-height: 1.7; color: var(--fs-ink); margin: 0; }
.quote-card .q::before { content: "“"; color: var(--fs-coral); font-family: var(--fs-display); font-weight: 700; }
.quote-card .q::after { content: "”"; color: var(--fs-coral); font-family: var(--fs-display); font-weight: 700; }
.quote-card .who { margin-top: auto; font-size: 13px; color: var(--fs-slate); }
.quote-card .who b { color: var(--fs-ink); font-weight: 600; display: block; }

/* university strip */
.uni-pill {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  text-decoration: none; color: inherit;
}
.uni-pill .rank {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; background: var(--fs-teal-tint);
  color: var(--fs-teal); font-family: var(--fs-display); font-weight: 700; font-size: 13px;
}
.uni-pill h3 { font-size: 14.5px; font-weight: 600; margin: 0; line-height: 1.35; font-family: var(--fs-body); }
.uni-pill span { font-size: 12.5px; color: var(--fs-slate); }

/* guide cards */
.guide-card { padding: 24px; display: flex; flex-direction: column; gap: 10px; border-top: 3px solid var(--fs-teal); }
.guide-card .tagline { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--fs-coral); font-weight: 700; }
.guide-card h3 { font-family: var(--fs-display); font-weight: 600; font-size: 17px; line-height: 1.4; margin: 0; letter-spacing: -.01em; }
.guide-card p { color: var(--fs-slate); font-size: 13.5px; line-height: 1.6; margin: 0; flex: 1; }
.guide-card .date { font-size: 12.5px; color: var(--fs-mist); }

/* FAQ */
.faq { max-width: 820px; }
.faq details {
  background: #fff; border: 1px solid var(--fs-line); border-radius: var(--fs-radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 15.5px;
  font-family: var(--fs-body); min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: var(--fs-teal-tint); color: var(--fs-teal);
  font-weight: 600; font-size: 17px; transition: transform .25s, background .25s, color .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--fs-coral); color: #fff; }
.faq .a { padding: 0 22px 20px; color: var(--fs-slate); font-size: 14.5px; line-height: 1.7; }
.faq .a a { color: var(--fs-teal); font-weight: 500; }

/* CTA band */
.cta-band {
  border-radius: 20px; padding: clamp(36px, 5.5vw, 60px);
  background:
    radial-gradient(90% 160% at 100% 0%, rgba(232,169,60,.25), transparent 55%),
    linear-gradient(115deg, var(--fs-teal-deep), var(--fs-teal) 70%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-family: var(--fs-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -.015em; margin: 0; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 54ch; margin: 14px auto 26px; font-size: 15.5px; line-height: 1.65; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CTA card (inline, end of data pages) */
.cta-card {
  border-radius: var(--fs-radius); padding: 30px clamp(22px, 4vw, 40px);
  background: linear-gradient(115deg, var(--fs-teal-deep), var(--fs-teal));
  color: #fff; display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
}
.cta-card h3 { font-family: var(--fs-display); font-weight: 700; font-size: 20px; margin: 0 0 6px; letter-spacing: -.01em; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; max-width: 56ch; line-height: 1.6; }

/* ============================================================
   DATA-PAGE FURNITURE
   ============================================================ */
/* page hero (compact, for hub/detail pages) */
.page-hero { background: linear-gradient(180deg, var(--fs-teal-tint), var(--fs-sand)); padding: 38px 0 44px; }
.page-hero h1 {
  font-family: var(--fs-display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(28px, 4.4vw, 44px); line-height: 1.12; margin: 10px 0 0; color: var(--fs-ink);
}
.page-hero .intro { margin-top: 16px; max-width: 74ch; color: var(--fs-slate); font-size: 16px; line-height: 1.75; }
.page-hero .intro b { color: var(--fs-ink); font-weight: 600; }
.stat-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.stat-pill {
  background: #fff; border: 1px solid var(--fs-line); border-radius: 12px;
  padding: 10px 18px; font-size: 13.5px; color: var(--fs-slate);
}
.stat-pill b { display: block; color: var(--fs-teal); font-family: var(--fs-display); font-weight: 700; font-size: 18px; font-variant-numeric: tabular-nums; }

/* property detail hero grid (image + facts) */
.prop-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 880px) { .prop-hero-grid { grid-template-columns: 1fr; } }

/* breadcrumbs */
.crumbs { font-size: 13px; color: var(--fs-slate); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a { color: var(--fs-teal); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: var(--fs-mist); }
.crumbs [aria-current] { color: var(--fs-slate); }

/* key facts */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact { background: #fff; border: 1px solid var(--fs-line); border-radius: 12px; padding: 16px 18px; }
.fact span { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--fs-mist); font-weight: 600; margin-bottom: 6px; }
.fact b { font-size: 15.5px; font-weight: 600; color: var(--fs-ink); line-height: 1.4; }
.fact .sm { font-size: 12px; color: var(--fs-slate); font-weight: 400; display: block; margin-top: 3px; }

/* rating bars */
.rating-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.rbar { font-size: 13.5px; color: var(--fs-slate); }
.rbar .lab { display: flex; justify-content: space-between; margin-bottom: 5px; }
.rbar .lab b { color: var(--fs-ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.rbar .track { height: 7px; border-radius: 4px; background: var(--fs-teal-tint); overflow: hidden; }
.rbar .fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--fs-teal), #1a8577); }

/* review cards */
.review-card { background: #fff; border: 1px solid var(--fs-line); border-radius: var(--fs-radius); padding: 22px 24px; }
.review-card .head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.review-card .who { font-weight: 600; font-size: 14px; }
.review-card .src { font-size: 12px; color: var(--fs-mist); }
.review-card p { margin: 0; color: var(--fs-slate); font-size: 14px; line-height: 1.7; }

/* university list rows */
.uni-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  background: #fff; border: 1px solid var(--fs-line); border-radius: 12px;
  margin-bottom: 10px; text-decoration: none; color: inherit;
  transition: transform .18s, box-shadow .18s;
}
.uni-row:hover { transform: translateX(3px); box-shadow: var(--fs-shadow-1); }
.uni-row .rank {
  flex: none; min-width: 52px; text-align: center; font-family: var(--fs-display);
  font-weight: 700; font-size: 13px; color: var(--fs-teal);
  background: var(--fs-teal-tint); border-radius: 8px; padding: 7px 8px;
}
.uni-row .u-name { font-weight: 600; font-size: 14.5px; line-height: 1.35; }
.uni-row .u-meta { font-size: 12.5px; color: var(--fs-slate); margin-top: 2px; }
.uni-row .u-side { margin-left: auto; text-align: right; flex: none; font-size: 13px; color: var(--fs-slate); }
.uni-row .u-side .stars { display: block; font-size: 12.5px; }

/* anchor toc */
.anchor-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 6px; }
.anchor-toc a {
  text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--fs-teal);
  background: #fff; border: 1px solid var(--fs-line); border-radius: 999px; padding: 8px 15px;
  transition: background .2s, color .2s, border-color .2s;
}
.anchor-toc a:hover { background: var(--fs-teal); border-color: var(--fs-teal); color: #fff; }

/* prose block on data pages */
.fs-prose { max-width: 74ch; color: var(--fs-slate); font-size: 15px; line-height: 1.8; }
.fs-prose b, .fs-prose strong { color: var(--fs-ink); }
.fs-prose a { color: var(--fs-teal); }

/* disclaimer note */
.fine { font-size: 12.5px; color: var(--fs-mist); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--fs-teal-deep); color: rgba(255,255,255,.72); font-family: var(--fs-body); }
.foot-grid {
  max-width: 1200px; margin: 0 auto; padding: 58px var(--fs-pad-x) 34px;
  display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr; gap: 36px;
}
.foot-brand .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.foot-brand .logo img { width: 28px; height: 28px; }
.foot-brand .logo b { font-family: var(--fs-display); font-weight: 700; font-size: 19px; color: #fff; }
.foot-brand .logo b em { font-style: normal; color: var(--fs-gold); }
.foot-brand p { font-size: 13.5px; line-height: 1.7; max-width: 40ch; margin: 0 0 14px; }
.foot h4 { color: #fff; font-family: var(--fs-display); font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px; }
.foot a { display: block; color: rgba(255,255,255,.68); font-size: 13.5px; text-decoration: none; padding: 4.5px 0; transition: color .2s; }
.foot a:hover { color: #FFD9A0; }
.foot .fine { color: rgba(255,255,255,.45); font-size: 12px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
}
.foot-bottom .inner {
  max-width: 1200px; margin: 0 auto; padding: 20px var(--fs-pad-x);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}

/* ============================================================
   REVEAL (mirrors global.css so static pages get it too)
   ============================================================ */
.fs-reveal { opacity: 0; transform: translateY(14px); transition: opacity .48s ease, transform .48s ease; }
.fs-reveal.fs-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fs-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .fs-card, .fs-btn, .prop-thumb img, .uni-row { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .g-4 { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--fs-line);
    box-shadow: 0 24px 40px -20px rgba(22,33,29,.25); padding: 10px 0 16px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px var(--fs-pad-x); font-size: 16px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 10px var(--fs-pad-x) 0; justify-content: center; }
  .hamb { display: flex; }
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .rating-bars { grid-template-columns: 1fr; }
  .fs-hero { min-height: 86svh; }
  .fs-hero-inner { padding-top: 104px; padding-bottom: 70px; }
  .foot-grid { grid-template-columns: 1fr 1fr; padding-top: 44px; }
}
@media (max-width: 560px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .hero-stats .gstat { flex: 1 1 40%; min-width: 0; }
  .hero-search { flex-direction: row; }
  .hero-search .fs-btn { padding: 12px 18px; }
  .city-card { flex-direction: column; align-items: flex-start; gap: 6px; }
  .city-card .from { text-align: left; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- language dropdown (nav) ---------- */
.nav-lang { position: relative; display: inline-flex; }
.nav-lang-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; font-family: var(--fs-body); font-size: 15px; font-weight: 500; color: var(--fs-ink); padding: 10px 6px; line-height: 1; }
.nav-lang-btn:hover { color: var(--fs-teal); }
.nav-lang-menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 190px; background: #fff; border: 1px solid var(--fs-line); border-radius: 14px; box-shadow: var(--fs-shadow-2); padding: 8px; display: none; z-index: 95; }
.nav-lang.open .nav-lang-menu, .nav-lang:hover .nav-lang-menu { display: block; }
.nav-lang-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--fs-ink); text-decoration: none; white-space: nowrap; }
.nav-lang-menu a:hover { background: var(--fs-teal-tint); color: var(--fs-teal); }
.nav.overlay:not(.scrolled):not(.open) .nav-lang-btn { color: #fff; }
@media (max-width: 900px) { .nav-lang { width: 100%; } .nav-lang-menu { position: static; box-shadow: none; border: 0; padding: 4px 0; min-width: 0; } .nav-lang.open .nav-lang-menu { display: block; } .nav-lang:hover .nav-lang-menu { display: none; } .nav-lang.open .nav-lang-menu { display: block; } }

/* ---------- inner-page "Find my home" FAB + wizard modal ---------- */
.fsw-fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: inline-flex; align-items: center; gap: 8px; background: var(--fs-teal); color: #fff; border: 0; border-radius: 999px; padding: 12px 20px 12px 13px; font-family: var(--fs-display); font-weight: 600; font-size: 15px; cursor: pointer; box-shadow: 0 12px 30px rgba(75,63,228,.42); transition: transform .18s, box-shadow .18s; }
.fsw-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(75,63,228,.5); }
.fsw-fab-ai { background: var(--fs-gold); color: var(--fs-ink); font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 6px; font-family: var(--fs-display); }
.fsw-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.fsw-modal.open { display: flex; }
.fsw-modal-bg { position: absolute; inset: 0; background: rgba(20,18,42,.62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.fsw-modal-card { position: relative; z-index: 2; width: 100%; max-width: 460px; }
.fsw-modal-x { position: absolute; top: -13px; right: -6px; z-index: 5; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 0; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.22); font-size: 15px; color: var(--fs-ink); }
@media (max-width: 520px) { .fsw-fab span:not(.fsw-fab-ai) { display: none; } .fsw-fab { padding: 13px; } }
