/* ─────────────────────────────────────────
   Casa Princeton — Luxury Apartments FL
   Palette: navy + sand + cream · Type: Futura PT Cond (brand)
   ───────────────────────────────────────── */

@font-face {
  font-family: 'Futura PT Cond';
  src: url('assets/fonts/FuturaPTCondBook.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT Cond';
  src: url('assets/fonts/FuturaPTCondMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT Cond';
  src: url('assets/fonts/FuturaPTCondBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura PT Cond';
  src: url('assets/fonts/FuturaPTCondExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:       #1B2E4A;
  --navy-deep:  #0F1E33;
  --navy-soft:  #2A4063;
  --sand:       #C9A961;
  --sand-soft:  #E2CFA1;
  --cream:      #F8F4EC;
  --cream-deep: #EFE7D6;
  --paper:      #FFFFFF;
  --ink:        #14141A;
  --ink-soft:   #4A4F5A;
  --line:       rgba(20, 20, 26, 0.10);
  --shadow-sm:  0 2px 12px rgba(15, 30, 51, 0.06);
  --shadow-md:  0 16px 40px rgba(15, 30, 51, 0.10);
  --shadow-lg:  0 28px 70px rgba(15, 30, 51, 0.16);
  --serif:      'Futura PT Cond', 'Helvetica Neue', Arial, sans-serif;
  --sans:       'Futura PT Cond', 'Helvetica Neue', Arial, sans-serif;
  --container:  1280px;
  --r:          6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 18px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.005em; color: var(--navy); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--sand); }

/* ───── Skip link (accessibility) ───── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--sand); }

/* ───── CRO: Urgency bar ───── */
.urgency-bar {
  background: linear-gradient(90deg, #8B1A26 0%, #6B0F1A 50%, #8B1A26 100%);
  background-size: 200% 100%;
  animation: urgencyShine 6s linear infinite;
  color: #FCE5C9;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 60;
}
@keyframes urgencyShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 32px;
  flex-wrap: wrap;
  text-align: center;
}
.urgency-bar strong { color: #FFE9A8; font-weight: 700; letter-spacing: 0.02em; }
.urgency-bar em { color: #FFE9A8; font-style: normal; font-weight: 700; padding: 1px 6px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.urgency-bar a {
  color: #FCE5C9;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.3s;
}
.urgency-bar a:hover { color: #FFFFFF; }
.urgency-bar__pulse {
  width: 9px;
  height: 9px;
  background: #FFE9A8;
  border-radius: 50%;
  animation: pulseDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,233,168,0.7); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(255,233,168,0); }
}

/* ───── Top utility bar ───── */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
}
.topbar a {
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.topbar a:hover { color: var(--sand-soft); }
.topbar svg { width: 14px; height: 14px; }
.topbar__sep { margin: 0 14px; opacity: 0.3; }
.topbar__lang { background: none; border: 1px solid rgba(255,255,255,0.20); color: inherit; padding: 4px 10px; border-radius: 3px; font-size: 11px; cursor: pointer; letter-spacing: 0.1em; font-family: inherit; transition: background 0.2s; }
.topbar__lang:hover { background: rgba(255,255,255,0.10); }
.topbar__lang:focus-visible { outline: 1px solid var(--sand); outline-offset: 2px; }

/* ───── Navigation ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--sand);
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-text strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.nav__logo-text small {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}
.nav__logo--light .nav__logo-text strong { color: var(--cream); }
.nav__logo--light .nav__logo-mark { background: var(--cream); color: var(--navy); }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sand);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--navy);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav__toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn--primary { background: var(--navy); color: var(--cream); }
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--cream); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--cream); }
.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--block { width: 100%; padding: 18px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow span { color: var(--sand); }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4A6B8A 0%, #2A4063 60%, #1B2E4A 100%);
}
.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(226, 207, 161, 0.35), transparent 50%),
    radial-gradient(ellipse at 20% 30%, rgba(120, 165, 200, 0.4), transparent 50%);
}
.hero__building {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 45%;
  height: 70%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 30, 51, 0.5) 100%),
    repeating-linear-gradient(90deg, var(--navy-deep) 0 60px, var(--navy-soft) 60px 62px),
    repeating-linear-gradient(0deg, var(--navy-deep) 0 50px, var(--navy-soft) 50px 52px);
  clip-path: polygon(0 30%, 30% 30%, 30% 0, 70% 0, 70% 15%, 100% 15%, 100% 100%, 0 100%);
  opacity: 0.55;
}
.hero__pool {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background:
    linear-gradient(180deg, rgba(80, 130, 170, 0.6) 0%, rgba(40, 80, 120, 0.85) 100%);
}
.hero__pool::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 4px;
  background: var(--sand-soft);
  opacity: 0.4;
}
.hero__palms {
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 240px;
  height: 280px;
  background:
    radial-gradient(ellipse at 50% 20%, var(--navy-deep) 0%, transparent 35%),
    radial-gradient(ellipse at 30% 30%, var(--navy-deep) 0%, transparent 25%),
    radial-gradient(ellipse at 70% 35%, var(--navy-deep) 0%, transparent 25%);
  opacity: 0.6;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 30, 51, 0.55) 0%, rgba(15, 30, 51, 0.55) 55%, rgba(15, 30, 51, 0.35) 100%),
    linear-gradient(105deg, rgba(15, 30, 51, 0.45) 0%, rgba(15, 30, 51, 0.20) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(201, 169, 97, 0.20);
  border: 1px solid rgba(226, 207, 161, 0.45);
  color: var(--sand-soft);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.hero h1 em { color: var(--sand-soft); font-style: italic; }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(248, 244, 236, 0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 700px;
  padding-top: 32px;
  border-top: 1px solid rgba(226, 207, 161, 0.30);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--sand-soft);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stats span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.65);
  font-weight: 600;
}

/* ───── CRO: Social Proof bar ───── */
.social-proof {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.social-proof__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.social-proof__item + .social-proof__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  width: 1px; height: 60%;
  background: rgba(27, 46, 74, 0.18);
}
.social-proof__item strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 34px);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.social-proof__item span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ───── CRO: Testimonials ───── */
.testimonials { background: var(--paper); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.testimonial {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
}
.testimonial__stars {
  color: var(--sand);
  font-size: 18px;
  letter-spacing: 0.08em;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  flex: 1;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--sand);
}
.testimonial footer strong {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.testimonial footer span {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.testimonials__cta { text-align: center; }

/* ───── Sections ───── */
.section { padding: 130px 0; position: relative; }
.section--cream { background: var(--cream); }
.section__head {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 18px;
}
.section__head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ───── Intro ───── */
.intro { padding: 130px 0; background: var(--paper); }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__copy h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 18px 0 24px;
  line-height: 1.05;
}
.intro__copy p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.75;
  max-width: 480px;
}
.intro__visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.intro__card {
  padding: 32px 28px;
  border-radius: var(--r);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.4s;
}
.intro__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.intro__card--a { grid-column: span 2; background: var(--navy); color: var(--cream); border-color: var(--navy); }
.intro__card--a h4 { color: var(--cream); }
.intro__card--a p { color: rgba(248,244,236,0.72); }
.intro__card--a .intro__num { color: var(--sand-soft); }
.intro__num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 12px;
}
.intro__card h4 {
  font-size: 21px;
  margin-bottom: 10px;
}
.intro__card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───── Plan tabs ───── */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.plan-tab {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.plan-tab:hover { color: var(--navy); border-color: var(--navy); }
.plan-tab.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ───── Plans grid ───── */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sand); }
.plan.is-hidden { display: none; }
.plan__visual {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--navy);
  padding: 24px;
}
.plan__svg { width: 80%; height: 80%; }
.plan__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
}
.plan__badge--gold { background: var(--sand); color: var(--navy-deep); }
.plan__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.plan__body h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.plan__specs {
  list-style: none;
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.plan__specs li {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.plan__specs strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.plan__price {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 20px;
}
.plan__price span {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 8px;
}
.plan__price small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.plan--feature .plan__visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); color: var(--sand-soft); }

/* ───── Amenities ───── */
.amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.amenities__col {
  background: var(--paper);
  padding: 56px 48px;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.amenities__col--accent { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.amenities__col--accent h3 { color: var(--cream); }
.amenities__col--accent .amenities__list li { border-color: rgba(248,244,236,0.12); color: rgba(248,244,236,0.85); }
.amenities__col--accent .amenities__list span { color: var(--sand-soft); }
.amenities__col h3 {
  font-size: 30px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--sand);
  display: inline-block;
}
.amenities__list { list-style: none; }
.amenities__list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.amenities__list li:last-child { border-bottom: none; }
.amenities__list span {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--sand);
  font-weight: 600;
  font-style: italic;
  min-width: 24px;
}
.amenities__cta {
  text-align: center;
  padding: 40px;
  background: var(--cream);
  border-radius: var(--r);
}
.amenities__cta p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ───── Gallery ───── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--a { grid-row: span 2; }
.gallery__item--c { grid-column: span 2; }
.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  position: relative;
  transition: transform 0.6s;
}
.gallery__item:hover .gallery__placeholder { transform: scale(1.05); }
.gallery__placeholder[data-art="kitchen"] { background: linear-gradient(135deg, #B5A88E 0%, #8B7B5E 100%); }
.gallery__placeholder[data-art="kitchen"]::after { content: ''; position: absolute; inset: 20% 30%; background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 60%); border-radius: 4px; }
.gallery__placeholder[data-art="pool"] { background: linear-gradient(180deg, #6FA0C8 0%, #2D5980 100%); }
.gallery__placeholder[data-art="pool"]::after { content: ''; position: absolute; inset: 60% 0 0 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 10px, transparent 10px 20px); }
.gallery__placeholder[data-art="bedroom"] { background: linear-gradient(135deg, #D8C9AC 0%, #A38B68 100%); }
.gallery__placeholder[data-art="bedroom"]::after { content: ''; position: absolute; inset: 40% 25% 10% 25%; background: rgba(255,255,255,0.3); border-radius: 4px; }
.gallery__placeholder[data-art="lounge"] { background: linear-gradient(135deg, #2A4063 0%, #1B2E4A 100%); }
.gallery__placeholder[data-art="lounge"]::after { content: ''; position: absolute; inset: 30% 20%; border: 1px solid rgba(226,207,161,0.4); border-radius: 4px; }
.gallery__placeholder[data-art="exterior"] { background: linear-gradient(180deg, #8AABC8 0%, #2A4063 100%); }
.gallery__placeholder[data-art="exterior"]::after { content: ''; position: absolute; inset: 30% 0 0 0; background: linear-gradient(90deg, rgba(15,30,51,0.6) 0%, rgba(15,30,51,0.4) 100%); }
.gallery__placeholder[data-art="gym"] { background: linear-gradient(135deg, #3A3A42 0%, #1A1A20 100%); }
.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 51, 0.85) 100%);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
}

/* ───── Neighborhood ───── */
.neighborhood__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.neighborhood__copy h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 18px 0 24px;
}
.neighborhood__copy > p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.neighborhood__perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.neighborhood__perks li {
  border-left: 2px solid var(--sand);
  padding-left: 18px;
}
.neighborhood__perks h4 {
  font-size: 19px;
  margin-bottom: 6px;
}
.neighborhood__perks p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.neighborhood__map { position: relative; }
.map {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.map__roads { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__pin--home {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.map__pin--home span {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  border: 3px solid var(--sand);
  box-shadow: 0 8px 20px rgba(15, 30, 51, 0.30);
}
.map__pin--home small {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.map__poi {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map__poi i {
  width: 14px; height: 14px;
  background: var(--sand);
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: var(--shadow-sm);
  animation: ping 3s ease-out infinite;
}
.map__poi span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
@keyframes ping {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(201, 169, 97, 0); }
}

/* ───── Pet ───── */
.pet { padding: 100px 0; background: var(--navy); color: var(--cream); }
.pet__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: center;
}
.pet__icon { color: var(--sand); width: 100px; height: 100px; }
.pet__icon svg { width: 100%; height: 100%; }
.pet__copy h3 { color: var(--cream); font-size: 32px; margin: 12px 0 14px; }
.pet__copy p { color: rgba(248,244,236,0.78); font-size: 16px; max-width: 540px; margin-bottom: 16px; }
.pet__copy .link-arrow { color: var(--sand-soft); border-color: var(--sand); }
.pet__copy .eyebrow { color: var(--sand-soft); }

/* ───── FAQ ───── */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  margin: 18px 0 16px;
}
.faq__head p { color: var(--ink-soft); }
.faq__head a { color: var(--navy); border-bottom: 1px solid var(--sand); }
.faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq__list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  color: var(--sand);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq__list details[open] summary::after { content: '–'; transform: rotate(180deg); }
.faq__list details p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 580px;
}

/* ───── Contact ───── */
.contact { background: var(--navy-deep); color: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__copy h2 { color: var(--cream); font-size: clamp(36px, 4.5vw, 52px); margin: 18px 0 18px; }
.contact__copy > p { color: rgba(248,244,236,0.78); font-size: 16px; margin-bottom: 36px; max-width: 480px; }
.contact__copy .eyebrow { color: var(--sand-soft); }
.contact__info { list-style: none; display: grid; gap: 24px; }
.contact__info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 2px solid var(--sand);
  font-size: 14.5px;
  color: rgba(248,244,236,0.88);
  line-height: 1.6;
}
.contact__info strong {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact__info a { color: var(--cream); transition: color 0.3s; }
.contact__info a:hover { color: var(--sand-soft); }

.contact__form {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 44px;
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}
.contact__form h3 {
  grid-column: span 2;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 46, 74, 0.10);
}
.field textarea { resize: vertical; min-height: 80px; }
.contact__form .btn { grid-column: span 2; }
.contact__small {
  grid-column: span 2;
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}

/* ───── Footer ───── */
.footer {
  background: var(--navy-deep);
  color: rgba(248,244,236,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(248,244,236,0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248,244,236,0.10);
}
.footer__brand p {
  margin-top: 24px;
  font-size: 15px;
  max-width: 360px;
  line-height: 1.7;
  color: rgba(248,244,236,0.65);
}
.footer__col h5 {
  color: var(--sand-soft);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 15px;
  color: rgba(248,244,236,0.72);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--sand-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 12.5px;
  color: rgba(248,244,236,0.50);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(248,244,236,0.50); transition: color 0.3s; }
.footer__legal a:hover { color: var(--sand-soft); }

/* ───── Floating CTA ───── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 30, 51, 0.30);
  z-index: 100;
  transition: all 0.3s;
  border: 2px solid var(--sand);
}
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15, 30, 51, 0.40); background: var(--navy-deep); }
.float-cta svg { width: 18px; height: 18px; color: var(--sand-soft); }

/* ───── CRO: Mobile sticky CTA bar ───── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(15,30,51,0.10);
}
.mobile-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
.mobile-cta__btn svg { width: 16px; height: 16px; }
.mobile-cta__btn--primary { background: var(--navy); color: var(--cream); flex: 1.5; border: 2px solid var(--sand); }
.mobile-cta__btn--primary:hover { background: var(--navy-deep); }
.mobile-cta__btn--alt { background: var(--cream); color: var(--navy); border: 1px solid var(--line); }
.mobile-cta__btn--alt:hover { background: var(--cream-deep); }

/* ───── CRO: Exit-intent modal ───── */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-modal[hidden] { display: none; }
.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 51, 0.78);
  backdrop-filter: blur(6px);
}
.exit-modal__panel {
  position: relative;
  background: var(--paper);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px 36px;
  border-radius: 8px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.exit-modal__close {
  position: absolute;
  top: 12px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.exit-modal__close:hover { background: var(--cream-deep); transform: rotate(90deg); }
.exit-modal__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 14px;
}
.exit-modal__panel h3 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 14px;
}
.exit-modal__panel p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-modal__panel strong { color: var(--navy); }
.exit-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.exit-modal__form input {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}
.exit-modal__form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 46, 74, 0.1);
}
.exit-modal__panel small {
  font-size: 11.5px;
  color: var(--ink-soft);
}

/* ───── Reveal ───── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .urgency-bar__inner { font-size: 12px; padding: 9px 20px; gap: 8px; }
  .urgency-bar a { display: block; width: 100%; }
  .social-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .social-proof__item:nth-child(3)::before, .social-proof__item:nth-child(2)::before { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .float-cta { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .topbar__inner { flex-direction: column; gap: 6px; padding: 8px 20px; font-size: 11.5px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .intro__grid, .neighborhood__grid, .faq__layout, .contact__grid, .amenities__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .neighborhood__perks { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--c { grid-column: span 2; }
  .pet__grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .pet__icon { margin: 0 auto; }
  .container { padding: 0 20px; }
}
@media (max-width: 640px) {
  .exit-modal__panel { padding: 36px 24px 28px; }
  .exit-modal__panel h3 { font-size: 26px; }
  .nav__links a { font-size: 16px; }
  .section { padding: 80px 0; }
  .intro { padding: 80px 0; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plans { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--c, .gallery__item--a { grid-column: auto; grid-row: auto; }
  .contact__form { padding: 32px 24px; grid-template-columns: 1fr; }
  .contact__form h3, .field--full, .contact__form .btn, .contact__small { grid-column: auto; }
  .field { grid-column: auto !important; }
  .amenities__col { padding: 36px 28px; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE COMPONENTS — added in v2 redesign
   ═══════════════════════════════════════════════════════════════ */

/* ───── Page hero (sub-pages) ───── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(120, 165, 200, 0.15), transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  color: var(--cream);
  margin: 12px 0 18px;
  line-height: 1.05;
}
.page-hero h1 em { color: var(--sand-soft); font-style: italic; }
.page-hero p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(248, 244, 236, 0.85);
  max-width: 560px;
  line-height: 1.7;
}

/* ───── Breadcrumbs ───── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--sand-soft);
}
.breadcrumb a { color: var(--sand-soft); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb__sep { color: rgba(226, 207, 161, 0.4); }
.breadcrumb__current { color: rgba(248, 244, 236, 0.6); }

/* ───── Plan card (improved for floorplans page) ───── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.plan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sand);
}
.plan-card__visual {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--navy);
  padding: 24px;
}
.plan-card__visual svg { width: 80%; height: 80%; max-height: 220px; }
.plan-card__chips {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.plan-card__chip {
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
}
.plan-card__chip--gold { background: var(--sand); color: var(--navy-deep); }
.plan-card__chip--alert { background: #8B1A26; color: var(--cream-light, #FAF5ED); animation: pulseChip 2s ease-in-out infinite; }
@keyframes pulseChip { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.plan-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.plan-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.plan-card__title-row h3 {
  font-size: 28px;
  margin: 0;
}
.plan-card__id {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sand);
  font-weight: 600;
  text-transform: uppercase;
}
.plan-card__specs {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 16px 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan-card__specs li {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.plan-card__specs strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.plan-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.plan-card__price {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  font-weight: 600;
}
.plan-card__price small { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); font-weight: 400; }
.plan-card__included {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.plan-card__included svg { width: 12px; height: 12px; vertical-align: -1px; color: var(--sand); margin-right: 2px; }
.plan-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}
.plan-card__actions .btn { flex: 1; min-width: 130px; }
.plan-card__compare {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  cursor: pointer;
  margin-top: 12px;
  letter-spacing: 0.04em;
}
.plan-card__compare input { accent-color: var(--navy); }

/* ───── Cost calculator widget ───── */
.calculator {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.calculator__inputs { display: flex; flex-direction: column; gap: 22px; }
.calculator__row { display: flex; flex-direction: column; gap: 10px; }
.calculator__row label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.calculator__row label span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--sand);
  font-weight: 600;
  font-style: italic;
}
.calculator__row input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}
.calculator__row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--navy);
  border: 3px solid var(--sand);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}
.calculator__row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calculator__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
}
.calculator__toggle input { accent-color: var(--navy); }
.calculator__output {
  background: var(--navy);
  color: var(--cream);
  padding: 32px;
  border-radius: var(--r);
  border: 1px solid var(--sand);
  text-align: center;
}
.calculator__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-soft);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.calculator__total {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.calculator__breakdown {
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(248, 244, 236, 0.75);
  text-align: left;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 207, 161, 0.25);
}
.calculator__breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  list-style: none;
}
.calculator__breakdown li strong { color: var(--cream); font-weight: 600; }

/* ───── Compare drawer ───── */
.compare-drawer {
  position: fixed;
  bottom: -200px;
  left: 0; right: 0;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 18px 24px;
  z-index: 80;
  border-top: 2px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -12px 40px rgba(15, 30, 51, 0.4);
  transition: bottom 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.compare-drawer.is-open { bottom: 0; }
.compare-drawer__items {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.compare-drawer__chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 207, 161, 0.3);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-drawer__chip button { background: none; border: none; color: var(--sand-soft); cursor: pointer; font-size: 16px; line-height: 1; }
.compare-drawer__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-soft);
  font-weight: 600;
}

/* ───── Comparator modal ───── */
.compare-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.compare-modal.is-open { display: block; }
.compare-modal__panel {
  position: absolute;
  inset: 0;
  background: var(--paper);
  overflow-y: auto;
  padding: 32px;
}
.compare-modal__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}
.compare-grid {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 64px auto 0;
}
.compare-grid h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin-bottom: 12px;
}
.compare-grid p { text-align: center; color: var(--ink-soft); margin-bottom: 32px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare-table th {
  background: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.compare-table .compare-row-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  background: var(--cream);
}

/* ───── Amenity icon grid ───── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s;
}
.amenity:hover {
  transform: translateY(-4px);
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
}
.amenity__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity__icon svg { width: 100%; height: 100%; }
.amenity h4 {
  font-size: 16px;
  font-family: var(--sans);
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.amenity p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.amenity-section + .amenity-section { margin-top: 60px; }
.amenity-section h3 {
  font-size: 32px;
  margin-bottom: 32px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}

/* ───── Pet breed list ───── */
.breed-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  list-style: none;
  padding: 0;
}
.breed-list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.breed-list li::before {
  content: '×';
  color: #8B1A26;
  font-weight: 700;
  font-size: 16px;
}
.pet-fees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pet-fee-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sand);
  padding: 28px;
  border-radius: var(--r);
}
.pet-fee-card h4 {
  font-size: 15px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
}
.pet-fee-card .pet-fee-amount {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.pet-fee-card p { font-size: 14px; color: var(--ink-soft); }

/* ───── Fee table ───── */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.fee-table thead {
  background: var(--navy);
  color: var(--cream);
}
.fee-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.fee-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.fee-table tbody tr:nth-child(even) { background: var(--cream); }
.fee-table tbody tr:hover { background: var(--cream-deep); }
.fee-table .fee-amount {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}
.fee-section-row td {
  background: var(--navy-deep) !important;
  color: var(--sand-soft);
  font-size: 11.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
}

/* ───── Lightbox ───── */
.lightbox { position: fixed; inset: 0; background: rgba(15, 30, 51, 0.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox__img { max-width: 100%; max-height: 90vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: var(--cream); color: var(--navy); border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: all 0.3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--sand); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--cream); font-family: var(--serif); font-size: 18px; font-style: italic; }

/* ───── Gallery filter tabs ───── */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-tab {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.gallery-tab:hover { color: var(--navy); border-color: var(--navy); }
.gallery-tab.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ───── Map filters ───── */
.map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.map-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.3s;
}
.map-chip:hover { border-color: var(--sand); }
.map-chip.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.map-chip__dot { width: 8px; height: 8px; border-radius: 50%; }

/* ───── Staff directory ───── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.staff-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.staff-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  border: 3px solid var(--sand);
  flex-shrink: 0;
}
.staff-card h4 { font-size: 22px; margin: 0 0 4px; }
.staff-card .staff-role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 12px; display: block; }
.staff-card a { font-size: 15px; color: var(--navy); display: block; margin-bottom: 4px; }
.staff-card a:hover { color: var(--sand); }

/* ───── 404 page ───── */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 80px 24px;
}
.error-page__inner { max-width: 560px; }
.error-page__num {
  font-family: var(--serif);
  font-size: clamp(120px, 22vw, 220px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.error-page__num em { color: var(--sand); font-style: italic; }
.error-page h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.error-page p { font-size: 16px; color: var(--ink-soft); margin-bottom: 32px; }

/* ───── Newsletter (footer) ───── */
.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 207, 161, 0.25);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--r);
  font-size: 14px;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(248, 244, 236, 0.45); }
.newsletter input:focus { outline: none; border-color: var(--sand); }
.newsletter button {
  background: var(--sand);
  color: var(--navy-deep);
  border: none;
  padding: 10px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}
.newsletter button:hover { background: var(--sand-soft); }

/* ───── Focus ring (a11y polish) ───── */
.btn:focus-visible,
.nav__cta:focus-visible,
.plan-tab:focus-visible,
.gallery-tab:focus-visible,
.map-chip:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ───── Responsive overrides for new components ───── */
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; }
  .calculator { grid-template-columns: 1fr; padding: 28px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .breed-list { grid-template-columns: repeat(2, 1fr); }
  .pet-fees { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 70px 0 60px; }
}
@media (max-width: 640px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .breed-list { grid-template-columns: 1fr; }
  .plan-card__actions { flex-direction: column; }
  .plan-card__actions .btn { flex: none; }
  .fee-table th, .fee-table td { padding: 12px 14px; font-size: 12.5px; }
  .calculator__total { font-size: 36px; }
  .compare-drawer { flex-direction: column; align-items: stretch; }
}

/* ════════════════════════════════════════════════════════════════════
   PHOTO DROP-IN HOOKS
   When a real <img> is added inside these containers, the synthetic
   CSS-art / SVG / placeholder is hidden automatically. No HTML rewrite
   needed — just uncomment the <picture> block.
   ════════════════════════════════════════════════════════════════════ */

/* Hero — real photo replaces CSS-art */
.hero__media > picture,
.hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__media > picture img,
.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media:has(img) > .hero__sky,
.hero__media:has(img) > .hero__building,
.hero__media:has(img) > .hero__pool,
.hero__media:has(img) > .hero__palms { display: none; }

/* Gallery — real photo replaces gradient placeholder */
.gallery__placeholder > picture,
.gallery__placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.gallery__placeholder > picture img,
.gallery__placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__placeholder:has(img)::before,
.gallery__placeholder:has(img)::after { display: none; }

/* Floor plans — real plan PNG replaces inline SVG */
.plan__visual > picture,
.plan__visual > img,
.plan-card__visual > picture,
.plan-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.plan__visual:has(img) > .plan__svg,
.plan-card__visual:has(img) > .plan__svg,
.plan-card__visual:has(img) > svg { display: none; }

/* Staff avatars (contact.html) — real headshot replaces CSS circle */
.staff-card__avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.staff-card__avatar:has(img) { background: none !important; }
.staff-card__avatar:has(img) > span { display: none; }

/* Testimonial avatars — same drop-in pattern */
.testimonial__avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.testimonial__avatar:has(img) { background: none !important; }

/* ════════════════════════════════════════════════════════════════════
   LANDING PAGE — Google Ads single-page layout
   Sticky header · hero · trust bar · unit ladder · amenities grid
   · location · final CTA · footer · floating WhatsApp FAB
   ════════════════════════════════════════════════════════════════════ */

/* Sticky-top wrapper: keeps banner + header pinned together (fixes mobile sticky bug) */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Header */
.landing-header {
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 30, 51, 0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  gap: 16px;
}
.landing-header__logo {
  display: flex; align-items: center;
  text-decoration: none; color: var(--navy);
}
.landing-header__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 520px) {
  .landing-header__logo-img { height: 26px; }
}

.landing-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.landing-header__nav a {
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.landing-header__nav a:hover { border-bottom-color: var(--sand); color: var(--navy-deep); }

@media (max-width: 880px) {
  .landing-header__nav { display: none; }
}
@media (max-width: 520px) {
  .landing-header { padding: 10px 16px; }
}

/* Contact button — brand black */
.btn--contact {
  background: #000;
  color: #fff !important;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-weight: 600; font-size: 15px;
  border-radius: 50px;
  text-transform: none; letter-spacing: 0.2px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
.btn--contact:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #fff !important;
}
.btn--contact svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { font-size: 17px; padding: 16px 32px; gap: 12px; }
.btn--lg svg { width: 22px; height: 22px; }
.btn--sm { font-size: 14px; padding: 8px 16px; gap: 6px; }
.btn--sm svg { width: 14px; height: 14px; }

/* Hero (full viewport landing) — background photo carousel + centered text */
.hero-landing {
  position: relative;
  color: var(--cream);
  padding: 130px 24px 90px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-landing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-landing__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-landing__slide.is-active { opacity: 1; }
.hero-landing__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 0s;
}
/* Ken Burns: when slide becomes active, slowly zoom + drift for ~7s */
.hero-landing__slide.is-active img {
  animation: kenBurns 7.5s ease-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -1%); }
}
/* Alternate direction per slide so motion doesn't feel repetitive */
.hero-landing__slide:nth-child(2).is-active img { animation-name: kenBurnsAlt1; }
.hero-landing__slide:nth-child(3).is-active img { animation-name: kenBurnsAlt2; }
.hero-landing__slide:nth-child(4).is-active img { animation-name: kenBurnsAlt3; }
@keyframes kenBurnsAlt1 {
  0%   { transform: scale(1.18) translate(-1.5%, -1%); }
  100% { transform: scale(1.05) translate(1%, 1%); }
}
@keyframes kenBurnsAlt2 {
  0%   { transform: scale(1.05) translate(1.5%, 0); }
  100% { transform: scale(1.18) translate(-1%, -1.5%); }
}
@keyframes kenBurnsAlt3 {
  0%   { transform: scale(1.18) translate(0, 1%); }
  100% { transform: scale(1.05) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-landing__slide.is-active img,
  .hero-landing__slide:nth-child(n).is-active img { animation: none; transform: scale(1); }
}
.hero-landing__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 30, 51, 0.55) 0%, rgba(15, 30, 51, 0.65) 100%);
}
.hero-landing__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-landing__inner h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.08;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-landing__inner h1 em {
  color: var(--sand);
  font-style: italic;
}
.hero-landing__dots {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hero-landing__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
}
.hero-landing__dot:hover { background: rgba(255, 255, 255, 0.75); }
.hero-landing__dot.is-active {
  background: var(--cream);
  width: 28px;
  border-radius: 6px;
}
.hero-landing__dot:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .hero-landing { padding: 100px 18px 70px; min-height: 78vh; }
  .hero-landing__inner h1 { font-size: clamp(26px, 6.5vw, 36px); margin: 0 0 6px; line-height: 1.15; }
  .hero-landing__dot { width: 8px; height: 8px; }
  .hero-landing__dot.is-active { width: 22px; }
}

/* Icon for Contact CTAs (generic chat bubble — replaces WhatsApp logo) */
.icon-chat { width: 18px; height: 18px; flex-shrink: 0; }

/* Units price ladder */
.units-section {
  padding: 80px 24px;
  background: var(--paper);
}
@media (max-width: 720px) {
  .units-section { padding: 48px 18px 32px; }
}
.units-section__inner {
  max-width: 960px;
  margin: 0 auto;
}
.units-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin: 0 0 8px;
  text-align: center;
}
.units-section__sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 36px;
}
.units-section__more {
  text-align: center;
  margin: 30px 0 0;
}
@media (max-width: 720px) {
  .units-section__more { margin: 18px 0 0; font-size: 14px; }
}
.units-section__more-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.units-section__more-link:hover {
  border-bottom-color: var(--sand);
  color: var(--navy-deep);
}
.unit-ladder {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.unit-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px 160px auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cream-deep);
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.unit-row:hover {
  border-color: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 30, 51, 0.08);
}
.unit-row--featured {
  border: 2px solid var(--sand);
  background: linear-gradient(180deg, #FFFCF5 0%, #FFFFFF 100%);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.12);
}
.unit-row__badge {
  position: absolute;
  top: -11px; left: 26px;
  background: var(--sand);
  color: var(--navy-deep);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px;
}
.unit-row__br {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.unit-row__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
}
.unit-row__name small {
  font-size: 14px; color: var(--ink-soft); font-family: var(--sans, 'Inter', sans-serif); font-style: normal;
}
.unit-row__sqft {
  color: var(--ink-soft);
  font-size: 15px;
}
.unit-row__price {
  font-size: 16px;
  color: var(--ink-soft);
}
.unit-row__price strong {
  font-size: 19px;
  color: var(--navy);
}
.unit-row__plan-link {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  font-family: inherit;
}
.unit-row__plan-link:hover { color: var(--navy); }

/* ═════ Floor plan modal ═════ */
.floorplan-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.floorplan-modal[hidden] { display: none; }
.floorplan-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 30, 51, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.floorplan-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px 22px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 30, 51, 0.4);
  text-align: center;
}
.floorplan-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  font-size: 28px; line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.floorplan-modal__close:hover { background: var(--cream); color: var(--navy); }
.floorplan-modal__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 16px;
}
.floorplan-modal__panel img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}
.floorplan-modal__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}
@media (max-width: 600px) {
  .floorplan-modal__panel { padding: 30px 16px 16px; }
  .floorplan-modal__title { font-size: 18px; }
}

@media (max-width: 820px) {
  .unit-row {
    grid-template-columns: auto 1fr auto;
    gap: 8px 16px;
    padding: 20px 22px;
  }
  .unit-row__br { grid-column: 1; grid-row: 1; }
  .unit-row__name { grid-column: 2 / -1; grid-row: 1; }
  .unit-row__sqft { grid-column: 1 / 3; grid-row: 2; }
  .unit-row__price { grid-column: 3; grid-row: 2; text-align: right; }
  .unit-row .btn--contact { grid-column: 1 / -1; grid-row: 3; justify-content: center; margin-top: 8px; }
  .unit-row__plan-link { grid-column: 1 / -1; grid-row: 4; text-align: center; }
  .unit-row__badge { position: static; align-self: start; margin-bottom: 8px; grid-column: 1 / -1; grid-row: 0; width: max-content; }
}

/* Amenities grid */
.amenities-landing {
  padding: 80px 24px;
  background: var(--cream);
}
@media (max-width: 720px) {
  .amenities-landing { padding: 40px 18px 48px; }
}
.amenities-landing__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.amenities-landing h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin: 0 0 32px;
  text-align: center;
}
.amenities-landing__sub {
  text-align: center;
  margin: -16px auto 36px;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 16px;
}
/* Real photo gallery grid (replaces icon cards) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 51, 0.85) 100%);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.2px;
}
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item figcaption { font-size: 14px; padding: 10px 14px; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

/* Community / site plan */
.community-section {
  padding: 80px 24px;
  background: var(--paper);
}
.community-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.community-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin: 0 0 14px;
}
.community-section__sub {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: 16px;
}
.community-section__figure {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(15, 30, 51, 0.08);
}
.community-section__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.community-section__figure figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Location */
.location-landing {
  padding: 80px 24px;
  background: var(--paper);
}
.location-landing__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.location-landing h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin: 0 0 16px;
}
.location-landing > .location-landing__inner > p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.location-landing iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(15, 30, 51, 0.12);
  display: block;
}
@media (max-width: 720px) { .location-landing iframe { height: 320px; } }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2A4063 100%);
  color: var(--cream);
  text-align: center;
  padding: 90px 24px;
}
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 16px;
  font-weight: 600;
}
.final-cta p {
  font-size: 18px;
  opacity: 0.92;
  margin: 0 0 32px;
  line-height: 1.5;
}
.final-cta strong { color: var(--sand-soft); }

/* Landing footer (minimal) */
.landing-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-size: 15px;
  line-height: 1.65;
}
.landing-footer__col strong {
  display: block;
  color: var(--sand-soft);
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.landing-footer__col p { margin: 0; opacity: 0.85; }
.landing-footer a { color: var(--sand); text-decoration: none; }
.landing-footer a:hover { color: var(--sand-soft); text-decoration: underline; }
.eho-badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--sand);
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--sand-soft);
}
.landing-footer__legal { margin: 8px 0; font-size: 12px; opacity: 0.85; }
.landing-footer__copy { font-size: 11px; opacity: 0.6; margin: 12px 0 0; }
@media (max-width: 720px) {
  .landing-footer { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px 24px; }
}

/* Floating Contact FAB — pill with icon + label, brand black */
.fab-contact {
  position: fixed;
  bottom: 22px; right: 22px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: transform 0.2s ease, opacity 0.3s ease, box-shadow 0.2s, background 0.2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.fab-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-contact:hover {
  background: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
  color: #fff;
}
.fab-contact__icon { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }
.fab-contact__text { white-space: nowrap; }
@media (max-width: 520px) {
  .fab-contact { bottom: 18px; right: 18px; padding: 12px 18px 12px 14px; font-size: 15px; }
  .fab-contact__icon { width: 20px; height: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   ITERATION v2 — Concession banner, hero prices, fees, lang toggle
   ════════════════════════════════════════════════════════════════════ */

/* Concession banner (sits inside .sticky-top wrapper) */
.concession-banner {
  position: relative;
  background: linear-gradient(90deg, #C9A961 0%, #E2CFA1 50%, #C9A961 100%);
  color: var(--navy-deep);
  padding: 13px 48px 13px 24px;
  text-align: center;
  font-size: 17px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid rgba(15, 30, 51, 0.15);
  box-shadow: 0 1px 4px rgba(15, 30, 51, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.4s ease, padding 0.4s ease;
  max-height: 80px;
  overflow: hidden;
}
.concession-banner.is-dismissed {
  opacity: 0;
  transform: translateY(-100%);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.concession-banner__icon {
  font-size: 17px;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.concession-banner__text strong { font-weight: 700; }
.concession-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--navy-deep);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.concession-banner__close:hover { background: rgba(15, 30, 51, 0.12); }
.concession-banner__close:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
@media (max-width: 520px) {
  .concession-banner { padding: 11px 40px 11px 14px; font-size: 14.5px; gap: 6px; }
  .concession-banner__close { right: 8px; width: 26px; height: 26px; font-size: 20px; }
}

/* Hero prices (replaces hero badge + single-price line) */
.hero__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 18px;
  margin: 26px 0 18px;
  max-width: 480px;
}
.hero__price-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.hero__price-chip:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  background: rgba(255, 255, 255, 0.18);
}
.hero__price-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
}
.hero__price-value {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.hero__price-value small {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.8;
  margin-left: 2px;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  margin: 10px 0 18px;
  color: var(--cream);
  opacity: 0.92;
  line-height: 1.5;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 960px) {
  .hero__prices { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .hero__prices { margin: 12px auto 8px; gap: 10px; }
  .hero__price-chip { padding: 10px 18px; }
  .hero__price-value { font-size: 24px; }
  .hero__price-label { font-size: 10px; margin-bottom: 2px; letter-spacing: 1.4px; }
  .hero__sub { margin: 4px auto 14px; font-size: 14.5px; line-height: 1.4; }
}
@media (max-width: 520px) {
  .hero__prices {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 260px;
    margin: 10px auto 8px;
  }
  .hero__price-chip { padding: 8px 18px; }
  .hero__price-value { font-size: 22px; }
}

/* Fees section */
.fees-section {
  padding: 80px 24px;
  background: var(--cream);
}
@media (max-width: 720px) {
  .fees-section { padding: 32px 18px 40px; }
}
.fees-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}
/* Top-level accordion wrapping the whole Fees section */
.fees-accordion {
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fees-accordion[open] {
  border-color: var(--sand);
  box-shadow: 0 8px 28px rgba(15, 30, 51, 0.07);
}
.fees-accordion > summary {
  padding: 28px 64px 28px 32px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: background 0.15s;
}
.fees-accordion > summary::-webkit-details-marker { display: none; }
.fees-accordion > summary::after {
  content: '+';
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
  color: var(--sand);
  font-weight: 300;
  transition: transform 0.2s;
}
.fees-accordion[open] > summary::after { content: '−'; }
.fees-accordion > summary h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy);
  margin: 0;
  text-align: left;
}
.fees-accordion__sub {
  font-size: 16px;
  color: var(--ink-soft);
  text-align: left;
}
.fees-accordion > summary:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: -2px;
}
.fees-accordion__body {
  padding: 8px 32px 32px;
}
@media (max-width: 600px) {
  .fees-accordion > summary { padding: 22px 52px 22px 22px; }
  .fees-accordion > summary::after { right: 20px; }
  .fees-accordion__body { padding: 8px 22px 22px; }
}
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fees-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cream-deep);
  padding: 26px 26px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.fees-card:hover {
  border-color: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 30, 51, 0.07);
}
.fees-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 600;
}
.fees-card__sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-style: italic;
}
.fees-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.fees-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 15px;
  gap: 14px;
}
.fees-list li:last-child { border-bottom: none; }
.fees-list span { color: var(--ink-soft); }
.fees-list strong { color: var(--navy); font-weight: 700; white-space: nowrap; }
.fees-section__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 24px 0 0;
}
.fees-card__note {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Collapsible situational fees */
.fees-extra {
  max-width: 720px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fees-extra[open] {
  border-color: var(--sand);
  box-shadow: 0 4px 18px rgba(15, 30, 51, 0.05);
}
.fees-extra summary {
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.fees-extra summary::-webkit-details-marker { display: none; }
.fees-extra summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--sand);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.fees-extra[open] summary::after { content: '–'; }
.fees-extra summary:focus-visible { outline: 2px solid var(--sand); outline-offset: 2px; border-radius: 10px; }
.fees-list--situational {
  padding: 4px 22px 18px;
  margin: 0;
}

@media (max-width: 880px) { .fees-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Pet & parking policy section */
.policies-section {
  padding: 80px 24px;
  background: var(--paper);
}
@media (max-width: 720px) {
  .policies-section { padding: 40px 18px 48px; }
  .policies-section h2 { margin-bottom: 22px; font-size: clamp(26px, 6vw, 32px); }
}
.policies-section__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.policies-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin: 0 0 36px;
  text-align: center;
}
.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.policy-card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.policy-card:hover {
  border-color: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 30, 51, 0.07);
}
.policy-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.policy-card__icon svg { width: 28px; height: 28px; }
.policy-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 600;
}
.policy-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.policy-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 16.5px;
  gap: 14px;
}
.policy-card__list li:last-child { border-bottom: none; }
.policy-card__list span { color: var(--ink-soft); }
.policy-card__list strong { color: var(--navy); font-weight: 700; white-space: nowrap; }
.policy-card__note {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
  margin: 12px 0 0;
}
/* Mascot images (pet, vehicle) — centered at the top of each policy card */
.policy-card--pet,
.policy-card--parking { position: relative; }
.policy-card__mascot {
  display: block;
  height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 12px;
}
.policy-card__mascot--vehicle {
  /* Same vertical footprint as the pet mascot for visual balance */
  height: 200px;
}
.policy-card__intro {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 14px 0 0;
}
@media (max-width: 720px) {
  .policy-card__mascot { height: 160px; }
}
/* Nearby pet services sub-block */
.policy-card__nearby {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--cream-deep);
}
.policy-card__nearby h4 {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 6px;
  font-weight: 700;
}
.policy-card__list--nearby { margin: 0; }
@media (max-width: 720px) {
  .policies-grid { grid-template-columns: 1fr; gap: 16px; }
  .policy-card__mascot { width: 110px; }
}

/* FAQs section */
.faqs-section {
  padding: 80px 24px;
  background: var(--cream);
}
.faqs-section__inner {
  max-width: 820px;
  margin: 0 auto;
}
.faqs-section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin: 0 0 8px;
  text-align: center;
}
.faqs-section__sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 0 32px;
}
.faqs-list {
  display: grid;
  gap: 10px;
}
.faq {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 10px;
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq[open] {
  border-color: var(--sand);
  box-shadow: 0 4px 18px rgba(15, 30, 51, 0.05);
}
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--sand);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq[open] summary::after {
  content: '–';
  transform: rotate(0deg);
}
.faq summary:hover { color: var(--navy-deep); }
.faq summary:focus-visible { outline: 2px solid var(--sand); outline-offset: 2px; border-radius: 10px; }
.faq p {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Language toggle button (header) */
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-right: 4px;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: var(--navy);
  color: var(--cream);
}
.lang-toggle:focus-visible { outline: 2px solid var(--sand); outline-offset: 2px; }
@media (max-width: 520px) {
  .lang-toggle { padding: 6px 10px; font-size: 11px; }
}

/* ════════════════════════════════════════════════════════
   Mobile readability bump — keeps body copy comfortably
   sized on phones without changing component layouts.
   ════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  body { font-size: 22px; }

  /* Top banner */
  .concession-banner { font-size: 18px !important; padding: 15px 46px 15px 18px; }
  .concession-banner__icon { font-size: 20px; }

  /* Header / lang toggle / Contact CTA in header */
  .lang-toggle { font-size: 14px !important; padding: 8px 14px !important; }

  /* Hero — much bigger headline + sub on mobile */
  .hero-landing__inner h1 { font-size: clamp(36px, 9.5vw, 52px) !important; line-height: 1.1; }
  .hero__sub { font-size: 19px !important; max-width: 100%; }
  .hero__price-label { font-size: 14px; letter-spacing: 1.4px; }
  .hero__price-value { font-size: 30px; }
  .hero__price-value small { font-size: 15px; }

  /* Section subtitles + section copy */
  .units-section__sub,
  .amenities-landing__sub,
  .fees-accordion__sub,
  .fees-section__note,
  .units-section__more-link { font-size: 21px; }

  /* Section h2 floors (clamp lower bound) */
  .units-section h2,
  .amenities-landing h2,
  .policies-section h2,
  .faqs-section h2 { font-size: clamp(30px, 7vw, 38px); }

  /* Unit cards */
  .unit-row__br { font-size: 15px; }
  .unit-row__name { font-size: 23px; }
  .unit-row__sqft { font-size: 20px; }
  .unit-row__price { font-size: 22px; }
  .unit-row__plan-link { font-size: 20px; }

  /* Fees */
  .fees-card h3 { font-size: 26px; }
  .fees-card__sub { font-size: 19px; }
  .fees-list li { font-size: 22px; }
  .fees-card__note { font-size: 19px; }
  .fees-extra summary { font-size: 20px; }

  /* Pet / Parking */
  .policy-card h3 { font-size: 30px; }
  .policy-card__list li { font-size: 22px; }
  .policy-card__note { font-size: 19px; }
  .policy-card__intro { font-size: 21px; line-height: 1.55; }
  .policy-card__nearby h4 { font-size: 19px; }

  /* FAQs */
  .faqs-section__sub { font-size: 21px; }
  .faq summary { font-size: 24px; padding: 24px 24px; }
  .faq p { font-size: 21px; padding: 0 24px 24px; line-height: 1.65; }

  /* Amenities gallery */
  .gallery-item figcaption { font-size: 19px; }

  /* Final CTA */
  .final-cta p,
  .final-cta__sub { font-size: 22px; }

  /* Buttons */
  .btn--lg { font-size: 19px; padding: 18px 28px; }
  .btn--sm { font-size: 18px; padding: 12px 22px; }
  .btn--contact { font-size: 19px; }
  /* Header Contact Us must stay compact so it fits on one line on phones */
  .landing-header .btn--contact { font-size: 14px; padding: 9px 16px; gap: 6px; white-space: nowrap; }
  .landing-header .btn--contact .icon-chat { width: 15px; height: 15px; }

  /* Floating Contact pill */
  .fab-contact__text { font-size: 18px; }

  /* Footer */
  .landing-footer { font-size: 21px; gap: 32px; padding: 48px 24px 32px; }
  .landing-footer__col strong { font-size: 25px; margin-bottom: 12px; }
  .landing-footer__col p,
  .landing-footer__col a { font-size: 21px; line-height: 1.7; }
  .eho-badge { font-size: 15px; padding: 9px 15px; }
  .landing-footer__legal { font-size: 18px; }
  .landing-footer__legal a { font-size: 18px; }
  .landing-footer__copy { font-size: 17px; }
}
