/* Bay Club modern prototype styles – v2 with card images */
:root {
  --bg: #f8f9fa;
  --bg-elevated: #ffffff;
  --bg-soft: #f0f2f5;
  --accent: #0066cc;
  --accent-soft: rgba(0, 102, 204, 0.1);
  --accent-strong: #0052a3;
  --text: #1a1a1a;
  --muted: #666666;
  --border-subtle: rgba(0, 0, 0, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --container: min(1120px, 100% - 3rem);
  --container-wide: min(1280px, 100% - 3rem);
}

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

html, body {
  margin: 0;
  padding: 0;
}

/* Smooth in-page anchor scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #e8eef9 0, transparent 55%),
    radial-gradient(circle at bottom right, #f0f2f5 0, #f8f9fa 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(248, 249, 250, 0.96),
      rgba(248, 249, 250, 0.9),
      rgba(248, 249, 250, 0.85)
    );
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 40%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #0066cc 20%, #e8eef9 68%);
  box-shadow: 0 0 22px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 45% -20% -30%;
  background: conic-gradient(
    from 180deg,
    rgba(248, 249, 250, 0.9),
    rgba(248, 249, 250, 0.2),
    rgba(248, 249, 250, 0.95)
  );
}

.brand-text { display: flex; flex-direction: column; gap: 0.1rem; }

.brand-main {
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
 letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
  font-size: 0.85rem;
}

.nav-main a {
  position: relative;
  padding-bottom: 0.15rem;
  color: var(--muted);
}

.nav-main a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: transform 160ms ease-out;
}

.nav-main a:hover { color: var(--text); }

.nav-main a:hover::after,
.nav-main a.is-active::after { transform: scaleX(1); }

.nav-main a.is-active { color: var(--text); }

/* Layout helpers */

.section { padding: 3.75rem 0; }
.section--tight { padding: 2.5rem 0; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.02em;
}

.section-subtitle {
  max-width: none;
  width: 100%;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 0 0 100%;
  align-self: flex-start;
  margin-top: 0.4rem;
}

/* Hero */

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(5, 8, 20, 0.8) 0%, rgba(5, 8, 20, 0.58) 42%, rgba(5, 8, 20, 0.15) 100%);
  z-index: 1;
}

.hero-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(4rem, 8vh, 6rem) 6vw clamp(3rem, 6vh, 5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 214, 196, 0.6);
  background: radial-gradient(circle at top left, rgba(45, 214, 196, 0.22), transparent 70%);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(65, 240, 223, 0.75);
}

.hero-heading {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}

.hero-heading span { color: #ffffff; }

.hero-lede {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
  line-height: 1.6;
}

.hero-meta {
  margin: 1.6rem 0 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.hero-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-size: 0.88rem;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out,
    background 120ms ease-out, color 120ms ease-out;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn {
  /* Softer, lower-saturation fill */
  background: linear-gradient(135deg, rgba(74,160,220,0.16), rgba(56,134,200,0.12));
  color: var(--text);
  border: 1px solid rgba(56,134,200,0.12);
  box-shadow: 0 8px 24px rgba(47,88,120,0.06);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn:hover {
  transform: translateY(-1px);
  /* stronger, darker shadow for better separation */
  box-shadow: 0 20px 60px rgba(20,40,70,0.18);
  background: linear-gradient(135deg, rgba(74,160,220,0.22), rgba(56,134,200,0.16));
}

/* CSS-only arrow for buttons (pseudo-element) */
.btn::after {
  content: "➜";
  margin-left: 0.5rem;
  display: inline-block;
  transform: translateX(0);
  transition: transform 140ms ease-out, opacity 140ms ease-out;
  opacity: 1;
  font-weight: 600;
}
.btn:hover::after {
  transform: translateX(4px);
}

/* Hero media */

.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background:
    radial-gradient(circle at top, rgba(45, 214, 196, 0.16), transparent 50%),
    linear-gradient(145deg, #030515, #080b1b);
  isolation: isolate;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-media::after {
  display: none;
}

.hero-media__img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

.hero-inner > div:first-child {
  max-width: 720px;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-subtext {
  background: #0a1022;
  color: #e8edf7;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-subtext__lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.lede-accent {
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, rgba(0,102,204,0.08), rgba(0,102,204,0));
  padding: 0.12rem 0.3rem;
  border-radius: 999px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.scroll-cue:hover {
  transform: translate(-50%, -3px);
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.scroll-cue:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero { padding: 0; }
  .hero-inner {
    padding: 3rem 1.5rem 2.5rem;
  }
  .hero-inner > div:first-child { padding: 0; max-width: none; }
}

/* Highlight strip */

.highlight-strip {
  background: linear-gradient(120deg, #eef4fb, #f8fbff);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.highlight-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.highlight-item {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem 0.55rem;
  flex-wrap: wrap;
}

.highlight-label {
  font-weight: 600;
  color: var(--accent-strong);
}

.highlight-chip {
  padding: 0.16rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 102, 204, 0.08);
}

.proof-strip {
  padding: 1.6rem 0 0.8rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-card {
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(150deg, rgba(36, 84, 125, 0.94), rgba(67, 129, 178, 0.9));
  color: #f8fbff;
  box-shadow: 0 12px 24px rgba(22, 46, 70, 0.14);
}

.proof-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(211, 234, 255, 0.86);
}

.proof-value {
  font-size: 1.2rem;
  margin-top: 0.3rem;
  letter-spacing: 0.01em;
}

.proof-note {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(239, 248, 255, 0.94);
}

/* Generic cards / grid */

.grid { display: grid; gap: 1.6rem; }

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

/* Residents area cards */
.resident-links { margin-top: 0.4rem; }

.resident-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 204, 0.22);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resident-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 204, 0.45);
  box-shadow: 0 24px 40px rgba(10, 20, 40, 0.22);
}

.resident-card-icon {
  min-width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0b2f55;
  background: linear-gradient(140deg, #ffffff, rgba(0, 102, 204, 0.18));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 18px rgba(0, 102, 204, 0.12);
}

.resident-card-icon svg {
  width: 28px;
  height: 28px;
}

.resident-card-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.resident-card-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-media { order: -1; }
  .highlight-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav-inner {
    gap: 0.85rem 1.25rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .nav-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    margin-left: 0;
    width: 100%;
    font-size: 0.8rem;
  }
  .resident-card {
    padding: 1.05rem 1.15rem;
  }
  .resident-card-icon {
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 0.8rem;
  }
  .resident-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .hero { padding-top: 2.4rem; }
  .highlight-inner { grid-template-columns: minmax(0, 1fr); }
  .grid--3, .grid--2 { grid-template-columns: minmax(0, 1fr); }
}

.card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(0, 102, 204, 0.05), transparent 55%),
    #ffffff;
  box-shadow: 0 10px 30px rgba(3, 5, 15, 0.9);
}

/* Card image header */
.card__image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020308;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.floorplan-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.floorplan-btn {
  position: relative;
  justify-content: center;
  text-align: center;
  min-height: 74px;
  border-radius: 14px;
  border: 1px solid rgba(56, 134, 200, 0.34);
  background: linear-gradient(145deg, rgba(17, 48, 77, 0.96), rgba(35, 87, 136, 0.93));
  color: #f5fbff;
  box-shadow: 0 14px 28px rgba(8, 22, 39, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.7rem 0.9rem;
}

.floorplan-btn:hover {
  background: linear-gradient(145deg, rgba(22, 60, 94, 0.97), rgba(45, 106, 162, 0.95));
  border-color: rgba(108, 176, 236, 0.65);
  box-shadow: 0 18px 34px rgba(10, 28, 49, 0.32);
}

.floorplan-btn::after {
  content: "PDF";
  margin-left: 0;
  transform: none;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.floorplan-btn:hover::after {
  transform: none;
}

.floorplan-btn__title {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.floorplan-btn__sub {
  font-size: 0.75rem;
  color: rgba(238, 247, 255, 0.82);
}

.listing-cta {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.listing-cta img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.listing-cta__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(2, 3, 8, 0.75);
  color: #fff;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

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

.card__image--split img {
  height: 180px;
}

.card__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.2rem;
}

.card__title {
  font-size: 1rem;
  margin: 0.15rem 0 0.6rem;
}

.card__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.meta-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  color: var(--muted);
}

/* Image gallery */

.gallery-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 2fr 1.3fr;
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020308;
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  height: 100%;
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.gallery-aside { display: grid; gap: 1.2rem; }

.gallery-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #030410;
}

.gallery-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gallery-thumb__label {
  position: absolute;
  inset: auto 0.9rem 0.9rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.gallery-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: minmax(0, 1fr); }
  .floorplan-buttons { grid-template-columns: minmax(0, 1fr); }
  .proof-grid { grid-template-columns: minmax(0, 1fr); }
}

/* EV badge */

.ev-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(45, 214, 196, 0.51);
  font-size: 0.7rem;
  color: var(--accent-strong);
}

.ev-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(45, 214, 196, 0.7);
  position: relative;
}

.ev-icon::before,
.ev-icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
}

.ev-icon::before {
  inset: 3px 3px 4px 3px;
  border: 1px solid rgba(45, 214, 196, 0.7);
}

.ev-icon::after {
  width: 4px;
  height: 6px;
  border-left: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: rotate(-35deg);
  right: 1px;
  bottom: 1px;
}

/* List styles */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 0.5rem;
}

.transit-link {
  display: inline-block;
  margin: 0 0.15rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 134, 200, 0.35);
  background: rgba(74, 160, 220, 0.16);
  color: #0b4f86;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.transit-link:hover {
  background: rgba(74, 160, 220, 0.25);
  border-color: rgba(56, 134, 200, 0.55);
}

.management-link {
  color: #0b4f86;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.management-link:hover {
  color: #083c66;
}

.reservation-link {
  color: #0b4f86;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.reservation-link:hover {
  color: #083c66;
}

/* Page-specific utility */

.page-intro {
  max-width: none;
  width: 100%;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* Contact / CTA */

.cta {
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, rgba(44, 96, 140, 0.95), rgba(83, 146, 194, 0.9));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
  box-shadow: 0 14px 26px rgba(28, 60, 90, 0.16);
}

.cta-title {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #f7fbff;
}

.cta-text {
  font-size: 0.9rem;
  color: rgba(228, 241, 252, 0.9);
}

.cta-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 720px) {
  .cta { flex-direction: column; align-items: flex-start; }
  .cta-actions { margin-left: 0; }
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.97);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Simple page hero */

.page-hero {
  padding: 2.4rem 0 1.2rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0;
}

.page-hero .section-kicker { margin-bottom: 0.4rem; }

.contacts-page .page-hero {
  padding: 2.6rem 0 1.6rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contacts-page .section.section--tight {
  padding-top: 1.8rem;
}

.contacts-page .section-header {
  margin-bottom: 1.25rem;
}

.contacts-page .section-header .section-title {
  font-size: clamp(1.25rem, 2.1vw, 1.45rem);
}

.contacts-page .resident-links {
  margin-top: 0.2rem;
}

.contacts-subsection-header {
  margin-top: 1rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
}

.contacts-page .page-intro {
  max-width: 62rem;
}

.amenities-page .section.section--tight.no-gap {
  padding-top: 0.8rem;
}




/* Events tweaks */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
}



/* Sticky section navigation bar under hero */
.section-nav-bar {
  position: sticky;
  top: 64px; /* sits just under the main header */
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.section-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.5rem 0.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  font-size: 0.82rem;
}

.section-nav-inner a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-size: 0.7rem;
  position: relative;
  padding-bottom: 0.15rem;
}

.section-nav-inner a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: transform 140ms ease-out;
}

.section-nav-inner a:hover {
  color: var(--text);
}

.section-nav-inner a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 720px) {
  .section-nav-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0.55rem 0.4rem;
  }
}
