/* ============================================================
   GENESIS 1 — SITE STYLES
   Brand palette (from the maintenance form / brand kit):
   --g1-primary  #536689   slate blue
   --g1-dark     #3D4F73   dark slate
   --g1-soft     #EDF1F7   soft background
   Type: Fraunces (headings) + Archivo (text)
   ============================================================ */

:root {
  --g1-primary: #536689;
  --g1-dark: #3D4F73;
  --g1-soft: #EDF1F7;
  --g1-ink: #232b3a;
  --g1-muted: #5d6779;
  --g1-line: #d9dfe8;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--g1-ink);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

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

a { color: var(--g1-primary); text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, var(--g1-primary), var(--g1-dark));
  box-shadow: 0 2px 12px rgba(29, 38, 55, .25);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 13px 22px;
}
.logo img { height: 32px; width: auto; }
.nav-links { display: none; list-style: none; align-items: center; gap: 28px; }
.nav-links a { color: #fff; font-size: .95rem; font-weight: 500; opacity: .92; }
.nav-links a:hover { opacity: 1; }
.btn-apply {
  background: #fff; color: var(--g1-dark) !important; font-weight: 600 !important;
  padding: 9px 22px; border-radius: 8px; opacity: 1 !important;
}
.btn-apply:hover { background: var(--g1-soft); }
.menu-toggle {
  background: none; border: 0; cursor: pointer; padding: 6px;
  display: flex; flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; background: var(--g1-dark); padding: 8px 22px 22px;
  list-style: none;
}
.mobile-menu.open { display: block; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu li:last-child { border: 0; padding-top: 15px; }
.mobile-menu a { color: #fff; display: block; padding: 13px 2px; font-weight: 500; }
.mobile-menu .btn-apply { display: inline-block; padding: 11px 26px; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .menu-toggle, .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end;
  background: var(--g1-dark);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,38,55,.30) 0%, rgba(29,38,55,.08) 40%, rgba(29,38,55,.78) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: #fff;
  max-width: var(--max); margin: 0 auto; padding: 140px 22px 70px; width: 100%;
}
.hero h1 {
  font-size: clamp(2rem, 5.4vw, 3.4rem); font-weight: 600;
  line-height: 1.12; max-width: 15em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero p {
  margin-top: 18px; font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 36em; text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 13px; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: .99rem; transition: .2s;
}
.btn-primary { background: #fff; color: var(--g1-dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.8); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-slate { background: var(--g1-primary); color: #fff; }
.btn-slate:hover { background: var(--g1-dark); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--g1-dark); color: #fff; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.trust ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 36px; max-width: var(--max); margin: 0 auto; padding: 0 22px;
  font-size: .9rem; opacity: .95; text-align: center;
}

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-soft { background: var(--g1-soft); }
h2.section-title {
  font-size: clamp(1.7rem, 3.8vw, 2.35rem); line-height: 1.18; margin-bottom: 16px;
  max-width: 20em;
}
.section-intro { color: var(--g1-muted); max-width: 46em; font-size: 1.04rem; }

/* ---------- Room cards ---------- */
.room-grid { display: grid; gap: 26px; margin-top: 44px; }
@media (min-width: 760px) { .room-grid { grid-template-columns: repeat(3, 1fr); } }
.room-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--g1-line);
  display: flex; flex-direction: column; transition: .25s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(29,38,55,.12); }
.room-card img { height: 215px; width: 100%; object-fit: cover; }
.room-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.45rem; }
.room-price { color: var(--g1-dark); margin: 3px 0 12px; font-size: .95rem; }
.room-price span { font-size: 1.25rem; font-weight: 700; color: var(--g1-primary); }
.room-price small { color: var(--g1-muted); }
.room-body p { color: var(--g1-muted); font-size: .95rem; flex: 1; }
.room-link { margin-top: 18px; font-weight: 600; border-bottom: 1.5px solid var(--g1-line); padding-bottom: 2px; align-self: flex-start; }
.room-link:hover { border-color: var(--g1-primary); }

/* ---------- Inclusions ---------- */
.incl-flex { display: grid; gap: 44px; margin-top: 8px; }
@media (min-width: 900px) { .incl-flex { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.incl-list { list-style: none; margin-top: 28px; display: grid; gap: 18px 22px; }
@media (min-width: 560px) { .incl-list { grid-template-columns: 1fr 1fr; } }
.incl-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .95rem; color: var(--g1-muted); }
.incl-list li strong { display: block; color: var(--g1-ink); font-weight: 600; }
.incl-icon {
  flex: 0 0 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--g1-line);
  color: var(--g1-primary); display: flex;
  align-items: center; justify-content: center;
}
.incl-icon svg { width: 20px; height: 20px; }
.fine-print { margin-top: 24px; font-size: .78rem; color: var(--g1-muted); max-width: 46em; line-height: 1.6; }
.incl-img img { border-radius: 14px; box-shadow: 0 18px 44px rgba(29,38,55,.16); }

/* ---------- Facilities ---------- */
.fac-grid { display: grid; gap: 18px; margin-top: 44px; }
@media (min-width: 700px) { .fac-grid { grid-template-columns: 1fr 1fr; } }
.fac-card { position: relative; border-radius: 14px; overflow: hidden; }
.fac-card img { height: 255px; width: 100%; object-fit: cover; transition: .4s; }
.fac-card:hover img { transform: scale(1.04); }
.fac-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(29,38,55,.85));
  color: #fff; font-weight: 500; font-size: 1rem;
}
.amenities {
  margin-top: 26px; background: var(--g1-soft); border-radius: 14px;
  padding: 38px 36px; display: grid; gap: 34px;
}
@media (min-width: 820px) { .amenities { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.amenity-group h3 {
  font-family: "Archivo", sans-serif; font-size: 1.02rem; font-weight: 600;
  display: flex; align-items: center; gap: 11px; margin-bottom: 16px;
  color: var(--g1-dark);
}
.amenity-icon {
  flex: 0 0 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid var(--g1-line);
  color: var(--g1-primary); display: inline-flex;
  align-items: center; justify-content: center;
}
.amenity-icon svg { width: 18px; height: 18px; }
.amenity-group ul { list-style: none; }
.amenity-group li {
  color: var(--g1-muted); font-size: .93rem; padding: 8px 0 8px 0;
  border-bottom: 1px solid rgba(83, 102, 137, .14);
}
.amenity-group li:last-child { border-bottom: 0; }

/* ---------- Community / life carousel ---------- */
.life-carousel { position: relative; margin-top: 44px; border-radius: 14px; overflow: hidden; }
.life-slide { display: none; position: relative; }
.life-slide.active { display: block; }
.life-slide img { width: 100%; height: min(58vw, 520px); object-fit: cover; }
.life-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(29,38,55,.85));
  color: #fff; font-weight: 500;
}
.life-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.92); color: var(--g1-dark);
  border: 0; width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; z-index: 5;
}
.life-nav:hover { background: #fff; }
.life-prev { left: 14px; } .life-next { right: 14px; }
.life-dots { position: absolute; bottom: 10px; right: 18px; z-index: 5; display: flex; gap: 6px; }
.life-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
}
.life-dots button.active { background: #fff; }

/* ---------- Stats ---------- */
.stats { background: #fff; border-top: 1px solid var(--g1-line); border-bottom: 1px solid var(--g1-line); padding: 56px 0; }
.stats-grid { display: grid; gap: 34px; text-align: center; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-num { font-family: "Fraunces", Georgia, serif; font-size: 2.9rem; font-weight: 600; color: var(--g1-primary); line-height: 1.1; }
.stat-label { color: var(--g1-muted); font-size: .95rem; margin-top: 6px; }

/* ---------- Location ---------- */
.loc-flex { display: grid; gap: 36px; margin-top: 44px; }
@media (min-width: 900px) { .loc-flex { grid-template-columns: 1fr 1fr; align-items: start; } }
.loc-list { list-style: none; margin-top: 4px; display: grid; gap: 12px; }
.loc-list li { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--g1-line); padding-bottom: 11px; font-size: .95rem; }
.loc-list li b { color: var(--g1-primary); white-space: nowrap; font-weight: 600; }
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(29,38,55,.13); background: var(--g1-soft); }
.map-embed iframe { width: 100%; height: 330px; border: 0; display: block; }
.loc-img { margin-top: 20px; border-radius: 14px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 38px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--g1-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 19px 52px 19px 0; font-size: 1.03rem; font-weight: 600;
  font-family: inherit; color: var(--g1-ink); position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.35rem; color: var(--g1-primary); font-weight: 400; transition: .25s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { display: none; padding: 0 40px 20px 0; color: var(--g1-muted); font-size: .96rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--g1-primary), var(--g1-dark));
  color: #fff; text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.cta-band p { opacity: .9; margin-top: 14px; max-width: 38em; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: #232b3a; color: #c6cddb; padding: 56px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer img { height: 28px; width: auto; margin-bottom: 16px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; font-weight: 600; font-family: "Archivo", sans-serif; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #c6cddb; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px;
  font-size: .8rem; color: #8b93a5; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* ---------- Page hero ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--g1-primary), var(--g1-dark));
  color: #fff; padding: 58px 0 48px;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1.15; }
.page-hero .lead { margin-top: 12px; opacity: .92; max-width: 44em; font-size: 1.05rem; }
.page-hero .price-line { margin-top: 16px; font-size: 1.1rem; }
.page-hero .price-line span[data-rate] { font-size: 1.5rem; font-weight: 700; }
.crumbs { font-size: .82rem; opacity: .75; margin-bottom: 14px; }
.crumbs a { color: #fff; }

/* ---------- Unit gallery ---------- */
.unit-gallery { display: grid; gap: 14px; margin-top: -34px; position: relative; z-index: 3; }
@media (min-width: 760px) {
  .unit-gallery { grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; }
  .unit-gallery a:first-child { grid-column: span 2; grid-row: span 2; }
}
.unit-gallery a { display: block; border-radius: 12px; overflow: hidden; background: var(--g1-soft); }
.unit-gallery img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: .35s; }
.unit-gallery a:hover img { transform: scale(1.04); }

/* ---------- Unit layout ---------- */
.unit-layout { display: grid; gap: 44px; margin-top: 52px; }
@media (min-width: 900px) { .unit-layout { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.unit-desc h2 { font-size: 1.6rem; margin-bottom: 14px; }
.unit-desc p { color: var(--g1-muted); margin-bottom: 16px; }
.check-list { list-style: none; margin-top: 8px; display: grid; gap: 10px; }
@media (min-width: 560px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { padding-left: 26px; position: relative; color: var(--g1-muted); font-size: .94rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 8px;
  border-left: 2px solid var(--g1-primary); border-bottom: 2px solid var(--g1-primary);
  transform: rotate(-45deg);
}
.unit-facts {
  background: var(--g1-soft); border-radius: 14px; padding: 28px;
  position: sticky; top: 92px;
}
.unit-facts h3 { font-family: "Archivo", sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.unit-facts .big-price { font-family: "Fraunces", Georgia, serif; font-size: 2.2rem; color: var(--g1-primary); font-weight: 600; }
.unit-facts .big-price small { font-size: 1rem; color: var(--g1-muted); font-family: "Archivo", sans-serif; font-weight: 400; }
.unit-facts ul { list-style: none; margin: 18px 0 22px; }
.unit-facts li { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; padding: 9px 0; border-bottom: 1px solid rgba(83,102,137,.16); color: var(--g1-muted); }
.unit-facts li b { color: var(--g1-ink); font-weight: 600; text-align: right; }
.unit-facts .btn { display: block; text-align: center; margin-bottom: 10px; }
.unit-facts .fine-print { margin-top: 14px; }

/* ---------- Floor plan ---------- */
.floorplan { text-align: center; margin-top: 64px; }
.floorplan img { max-height: 520px; width: auto; max-width: 100%; margin: 26px auto 0; border: 1px solid var(--g1-line); border-radius: 12px; padding: 14px; background: #fff; }
.floorplan .note { font-size: .85rem; color: var(--g1-muted); margin-top: 12px; }

/* ---------- Other units ---------- */
.other-units { margin-top: 70px; }
.other-units h2 { font-size: 1.5rem; margin-bottom: 22px; }

/* ---------- Rates table ---------- */
.rates-table { width: 100%; border-collapse: collapse; margin-top: 40px; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(29,38,55,.06); }
.rates-table th { background: var(--g1-dark); color: #fff; text-align: left; padding: 16px 20px; font-weight: 600; font-size: .95rem; }
.rates-table td { padding: 18px 20px; border-bottom: 1px solid var(--g1-line); font-size: .96rem; vertical-align: top; }
.rates-table tr:last-child td { border-bottom: 0; }
.rates-table .rt-price { font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; color: var(--g1-primary); font-weight: 600; white-space: nowrap; }
.rates-table .rt-price small { font-family: "Archivo", sans-serif; font-size: .8rem; color: var(--g1-muted); font-weight: 400; }
.rates-table a { font-weight: 600; }
.movein-grid { display: grid; gap: 18px; margin-top: 34px; }
@media (min-width: 700px) { .movein-grid { grid-template-columns: 1fr 1fr 1fr; } }
.movein-card { background: #fff; border: 1px solid var(--g1-line); border-radius: 14px; padding: 26px; }
.movein-card .num { font-family: "Fraunces", Georgia, serif; font-size: 1.9rem; color: var(--g1-primary); font-weight: 600; }
.movein-card h3 { font-family: "Archivo", sans-serif; font-size: 1rem; font-weight: 600; margin: 4px 0 8px; }
.movein-card p { color: var(--g1-muted); font-size: .92rem; }

/* ---------- Residents hub ---------- */
.res-grid { display: grid; gap: 20px; margin-top: 42px; }
@media (min-width: 700px) { .res-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .res-grid { grid-template-columns: 1fr 1fr 1fr; } }
.res-card { background: #fff; border: 1px solid var(--g1-line); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
.res-card.res-primary { background: linear-gradient(160deg, var(--g1-primary), var(--g1-dark)); color: #fff; border: 0; }
.res-card.res-primary p { color: rgba(255,255,255,.85); }
.res-card.res-primary .res-link { color: #fff; }
.res-card h3 { font-family: "Archivo", sans-serif; font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.res-card p { color: var(--g1-muted); font-size: .93rem; flex: 1; }
.res-link { margin-top: 16px; font-weight: 600; }
.res-card ul { margin: 10px 0 0 18px; color: var(--g1-muted); font-size: .93rem; }
.res-card ul li { margin-bottom: 6px; }
.contact-strip { margin-top: 44px; background: var(--g1-soft); border-radius: 14px; padding: 30px; display: grid; gap: 18px; }
@media (min-width: 760px) { .contact-strip { grid-template-columns: repeat(4, 1fr); } }
.contact-strip div b { display: block; font-size: .85rem; color: var(--g1-ink); }
.contact-strip div span, .contact-strip div a { font-size: .95rem; color: var(--g1-muted); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 40px; margin-top: 46px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.contact-card { background: var(--g1-soft); border-radius: 14px; padding: 30px; margin-bottom: 20px; }
.contact-card h3 { font-family: "Archivo", sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--g1-muted); font-size: .95rem; }
.contact-card a.big { font-size: 1.25rem; font-weight: 600; color: var(--g1-primary); }

/* ---------- Application wizard ---------- */
.wizard-wrap { max-width: 640px; margin: -40px auto 0; position: relative; z-index: 5; padding: 0 20px 80px; }
.wz-card { background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(29,38,55,.14); border: 1px solid var(--g1-line); overflow: hidden; }
.wz-progress { display: flex; gap: 5px; padding: 20px 26px 0; }
.wz-progress span { height: 5px; flex: 1; border-radius: 99px; background: var(--g1-line); transition: background .25s; }
.wz-progress span.on { background: var(--g1-primary); }
.wz-body { padding: 26px 26px 30px; }
.wz-body h2 { font-family: "Archivo", sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.wz-sub { color: var(--g1-muted); font-size: .92rem; margin-bottom: 20px; }
.wz-step { display: none; }
.wz-step.active { display: block; }
.wz-field { margin-bottom: 16px; }
.wz-field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.wz-field input, .wz-field select, .wz-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--g1-line); border-radius: 10px;
  font-family: inherit; font-size: .98rem; color: var(--g1-ink); background: #fff;
}
.wz-field input:focus, .wz-field select:focus, .wz-field textarea:focus { outline: none; border-color: var(--g1-primary); }
.wz-options { display: grid; gap: 12px; }
.wz-option {
  border: 1.5px solid var(--g1-line); border-radius: 12px; padding: 16px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: .15s;
}
.wz-option:hover { border-color: var(--g1-primary); }
.wz-option.sel { border-color: var(--g1-primary); background: var(--g1-soft); }
.wz-option b { font-size: 1rem; }
.wz-option small { display: block; color: var(--g1-muted); }
.wz-option .wz-price { font-weight: 700; color: var(--g1-primary); white-space: nowrap; }
.wz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.wz-back { background: none; border: 1.5px solid var(--g1-line); color: var(--g1-muted); padding: 12px 22px; border-radius: 10px; font-family: inherit; font-size: .95rem; cursor: pointer; }
.wz-next, .wz-send {
  background: var(--g1-primary); color: #fff; border: 0; padding: 13px 28px; border-radius: 10px;
  font-family: inherit; font-size: .98rem; font-weight: 600; cursor: pointer;
}
.wz-next:hover, .wz-send:hover { background: var(--g1-dark); }
.wz-review { border: 1px solid var(--g1-line); border-radius: 12px; padding: 6px 18px; margin-top: 6px; }
.wz-review div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--g1-line); font-size: .92rem; }
.wz-review div:last-child { border: 0; }
.wz-review dt { color: var(--g1-muted); }
.wz-review dd { text-align: right; font-weight: 600; }
.wz-err { color: #b42318; font-size: .85rem; margin-top: 10px; display: none; }
.wz-alt { text-align: center; margin-top: 18px; font-size: .88rem; color: var(--g1-muted); }

/* ---------- Photo page heroes ---------- */
.page-hero.has-img { position: relative; padding: 96px 0 74px; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero.has-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(50,63,92,.78), rgba(38,49,76,.86));
}
.page-hero.has-img .wrap { position: relative; z-index: 2; }

/* ---------- Rates table thumbnails ---------- */
.rt-cell { display: flex; gap: 16px; align-items: center; }
.rt-thumb { width: 104px; height: 72px; object-fit: cover; border-radius: 8px; flex: 0 0 104px; }
@media (max-width: 620px) { .rt-cell { flex-direction: column; align-items: flex-start; } }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; gap: 14px; margin-top: 40px; }
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
.photo-strip figure { position: relative; border-radius: 12px; overflow: hidden; }
.photo-strip img { height: 210px; width: 100%; object-fit: cover; transition: .35s; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(29,38,55,.8));
  color: #fff; font-size: .9rem; font-weight: 500;
}

/* ---------- Move-in grid: 4 cards ---------- */
@media (min-width: 700px) { .movein-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .movein-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Payment details ---------- */
.pay-list { list-style: none; margin: 12px 0 10px; border: 1px solid var(--g1-line); border-radius: 10px; padding: 4px 14px; background: #fff; }
.pay-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--g1-line); font-size: .9rem; color: var(--g1-muted); }
.pay-list li:last-child { border: 0; }
.pay-list li b { color: var(--g1-ink); text-align: right; font-weight: 600; }
.pay-ref { background: var(--g1-soft); border-radius: 8px; padding: 10px 14px; font-size: .88rem; color: var(--g1-ink); margin-top: 4px; }
