/* ============================================
   THE PENNINGTON — Brand Stylesheet
   Colors: Midnight #1C2331 | Gold #CBA96E | Cream #F5F2EC
   Buildings: Randolph #2D5F5D | Aycrigg #8B6B3D | Pennington #5B4A6E | High #6B3A3A
   Typography: Georgia (headlines) | system sans-serif (body)
   ============================================ */

:root {
  --midnight: #1C2331;
  --gold: #CBA96E;
  --cream: #F5F2EC;
  --randolph: #2D5F5D;
  --aycrigg: #8B6B3D;
  --pennington-bldg: #5B4A6E;
  --high: #6B3A3A;
  --white: #FFFFFF;
  --text-dark: #1C2331;
  --text-light: #F5F2EC;
  --text-muted: #8A8A8A;
  --gold-dim: rgba(203, 169, 110, 0.15);
  --border-subtle: rgba(203, 169, 110, 0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Calibri', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
}

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

a { text-decoration: none; color: inherit; transition: color 0.3s, opacity 0.3s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── UTILITY ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-label--light { color: var(--gold); }

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--midnight);
  margin-bottom: 20px;
}

.section-title--light { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
}
.btn-primary:hover {
  background: #b8954e;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(245, 242, 236, 0.15);
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--midnight);
}

.btn-outline--dark {
  background: transparent;
  color: var(--midnight);
  border: 1px solid var(--midnight);
}
.btn-outline--dark:hover {
  background: var(--midnight);
  color: var(--cream);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--midnight);
  border-bottom: 1px solid rgba(203, 169, 110, 0.12);
  padding: 8px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.topbar a:hover { opacity: 0.8; }

/* ── NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--midnight);
  border-bottom: 1px solid rgba(203, 169, 110, 0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; z-index: 10; }
.logo__mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
}
.logo__text {
  font-family: Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.65);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  display: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  display: none;
}

/* CTA in nav */
.nav-cta {
  font-size: 0.75rem;
  padding: 10px 24px;
  letter-spacing: 0.1em;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--midnight);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1C2331;
  background-size: cover;
  background-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 35, 49, 0.55) 0%, rgba(28, 35, 49, 0.35) 40%, rgba(28, 35, 49, 0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(245, 242, 236, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Gold accent line */
.hero__accent {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* Stats bar */
.stats-bar {
  background: var(--midnight);
  border-top: 1px solid rgba(203, 169, 110, 0.1);
  padding: 48px 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__value {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ── SECTIONS (alternating cream / midnight) ── */
.section { padding: 100px 0; }
.section--dark { background: var(--midnight); }
.section--cream { background: var(--cream); }

/* ── BRAND VISION ── */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vision__text p {
  font-size: 1.02rem;
  color: #555;
  line-height: 1.8;
  margin-top: 20px;
}

/* Building cards */
.buildings__stack { display: flex; flex-direction: column; gap: 12px; }
.building-card {
  padding: 22px 28px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.building-card__name {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}
.building-card__arrow {
  color: rgba(245, 242, 236, 0.4);
  font-size: 1.1rem;
}
.building-card--randolph { background: var(--randolph); }
.building-card--aycrigg { background: var(--aycrigg); }
.building-card--pennington { background: var(--pennington-bldg); }
.building-card--high { background: var(--high); }

/* ── COLLECTION CARDS ── */
.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.collection-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.collection-card__accent {
  height: 4px;
  width: 100%;
}
.collection-card__body {
  padding: 36px 28px 32px;
  text-align: center;
}
/* Circled P logo — matches the main brand mark */
.collection-card__logo {
  width: 56px;
  height: 56px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 auto 20px;
}
.collection-card__name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--midnight);
  margin-bottom: 6px;
}
.collection-card__formerly {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}
.collection-card__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}
.collection-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.collection-card__link:hover {
  opacity: 0.7;
}

/* ── AMENITIES GRID ── */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.amenity-card {
  border: 1px solid rgba(203, 169, 110, 0.18);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.amenity-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.amenity-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--gold);
}
.amenity-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.amenity-card__title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.amenity-card__desc {
  font-size: 0.85rem;
  color: rgba(245, 242, 236, 0.5);
  line-height: 1.6;
}

/* ── FLOOR PLAN CARDS ── */
.floorplans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fp-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.fp-card__accent {
  height: 4px;
  width: 100%;
}
.fp-card__body {
  padding: 32px 24px;
}
.fp-card__type {
  font-family: Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 6px;
}
.fp-card__size {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.fp-card__price {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.fp-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-card__features li {
  font-size: 0.85rem;
  color: #555;
  padding-left: 16px;
  position: relative;
}
.fp-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── LOCATION STATS ── */
.location-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.loc-card {
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
}
.loc-card__icon {
  margin-bottom: 16px;
  color: var(--gold);
}
.loc-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.loc-card__value {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 8px;
}
.loc-card__label {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.5);
  line-height: 1.5;
}

.transit-bar {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(245, 242, 236, 0.4);
}
.transit-bar span {
  margin: 0 16px;
}

/* ── LIFESTYLE GRID ── */
.lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 48px;
}
.lifestyle-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.lifestyle-item__text {
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.6);
  line-height: 1.75;
}

/* ── IN-UNIT FEATURES ── */
.features__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 80px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(203, 169, 110, 0.08);
}
.feature-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.feature-item__text {
  font-size: 0.92rem;
  color: rgba(245, 242, 236, 0.7);
}

/* ── REFERRAL BANNER ── */
.referral {
  background: linear-gradient(135deg, var(--midnight) 0%, #151c28 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(203, 169, 110, 0.1);
  border-bottom: 1px solid rgba(203, 169, 110, 0.1);
}
.referral__amount {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 16px;
}
.referral__text {
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.6);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.referral-steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}
.referral-step {
  text-align: center;
}
.referral-step__num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 auto 12px;
}
.referral-step__text {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.5);
  max-width: 160px;
}

/* ── CONTACT FORM ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}
.contact-info__item {
  margin-bottom: 32px;
}
.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--midnight);
}
.contact-info__value a {
  color: var(--midnight);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.contact-info__value a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--midnight);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── GALLERY ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.gallery__item {
  aspect-ratio: 4 / 3;
  background: var(--midnight);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 35, 49, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(203, 169, 110, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── MAP EMBED ── */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(203, 169, 110, 0.1);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo-text {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.4);
  line-height: 1.6;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(245, 242, 236, 0.5);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 169, 110, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 242, 236, 0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(245, 242, 236, 0.3);
}
.footer__legal a:hover { color: var(--gold); }

/* ── GOLD DIVIDER ── */
.gold-divider {
  height: 3px;
  background: linear-gradient(90deg,
    var(--randolph) 25%,
    var(--aycrigg) 25% 50%,
    var(--pennington-bldg) 50% 75%,
    var(--high) 75%
  );
}

/* ── MOBILE PHONE BAR ── */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--midnight);
  border-top: 1px solid rgba(203, 169, 110, 0.2);
  padding: 0;
}
.mobile-phone-bar__inner {
  display: flex;
  align-items: stretch;
}
.mobile-phone-bar__call,
.mobile-phone-bar__tour {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-phone-bar__call {
  background: var(--midnight);
  color: var(--gold);
  border-right: 1px solid rgba(203, 169, 110, 0.15);
}
.mobile-phone-bar__tour {
  background: var(--gold);
  color: var(--midnight);
}
.mobile-phone-bar__call svg,
.mobile-phone-bar__tour svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Add bottom padding to body so sticky bar doesn't cover footer */
body.has-mobile-bar { padding-bottom: 52px; }

/* ── TOUR SCHEDULING FORM ── */
.tour-form {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 40px 32px;
  max-width: 480px;
  margin: 0 auto;
}
.tour-form__title {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--midnight);
  margin-bottom: 24px;
  text-align: center;
}
.tour-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.tour-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tour-form__field--full {
  grid-column: 1 / -1;
}
.tour-form__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.tour-form__input {
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--midnight);
  background: var(--white);
  transition: border-color 0.3s;
}
.tour-form__input:focus {
  outline: none;
  border-color: var(--gold);
}
.tour-form__submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--gold);
  color: var(--midnight);
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.tour-form__submit:hover {
  background: #b8954e;
}

/* ── GALLERY PAGE ── */
.gallery-page__grid {
  columns: 3;
  column-gap: 12px;
  margin-top: 48px;
}
.gallery-page__item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
  background: #e8e4dd;
  aspect-ratio: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .collection__grid,
  .floorplans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide topbar on mobile — too cramped */
  .topbar { display: none; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--midnight);
    border-bottom: 1px solid rgba(203, 169, 110, 0.1);
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }

  /* Hero — better mobile sizing */
  .hero { min-height: 70vh; }
  .hero__title { font-size: 2rem; line-height: 1.12; }
  .hero__subtitle { font-size: 0.88rem; margin-bottom: 20px; }
  .hero__label { font-size: 0.65rem; margin-bottom: 12px; }
  .hero__content { padding: 0 4px; }
  .hero__accent { display: none; }

  /* Hero buttons — slim, inline on mobile */
  .hero__actions {
    flex-direction: row;
    gap: 10px;
  }
  .hero__actions .btn {
    padding: 10px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  /* Hide collection cards on mobile — go straight to units */
  .collection__grid { display: none; }

  /* Sticky phone bar on mobile */
  .mobile-phone-bar {
    display: flex;
  }

  /* Stats bar — horizontal 3-col with smaller type */
  .stats-bar { padding: 32px 0; }
  .stats-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
  }
  .stat__value {
    font-size: 1.15rem;
    letter-spacing: 0;
  }
  .stat__label {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .vision__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenities__grid {
    grid-template-columns: 1fr;
  }

  /* Collection cards hidden on mobile — users go straight to unit listings */

  .floorplans__grid {
    grid-template-columns: 1fr;
  }

  .location-stats {
    grid-template-columns: 1fr;
  }

  /* Location cards — horizontal row */
  .loc-card { padding: 24px 16px; }
  .loc-card__value { font-size: 1.3rem; }

  .lifestyle__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__columns {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .referral-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Map responsive */
  .map-container { margin-top: 32px; }
  .map-container iframe { height: 260px; }

  /* Transit bar wrap */
  .transit-bar { font-size: 0.7rem; line-height: 2; }
  .transit-bar span { margin: 0 8px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-page__grid {
    columns: 2;
  }

  .section { padding: 56px 0; }

  /* Section titles smaller on mobile */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Referral section */
  .referral__amount { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  /* Stats bar — still 3-col but tighter */
  .stats-bar__inner { gap: 8px; }
  .stat__value { font-size: 1rem; }
  .stat__label { font-size: 0.6rem; }

  /* Collection cards stack to 1 */
  .collection__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery-page__grid {
    columns: 1;
  }
  .hero__title { font-size: 1.7rem; }
  .hero { min-height: 60vh; }

  /* Location cards horizontal */
  .location-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .loc-card { padding: 16px 8px; }
  .loc-card__value { font-size: 1rem; }
  .loc-card__label { font-size: 0.68rem; }
  .loc-card__icon svg { width: 24px; height: 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* Page header banner */
.page-header {
  background: var(--midnight);
  padding: 120px 0 60px;
  text-align: center;
}
.page-header__title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}
.page-header__sub {
  font-size: 0.9rem;
  color: rgba(245, 242, 236, 0.5);
  margin-top: 12px;
}

/* Amenity page - cream cards */
.amenity-card--cream {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-card--cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.amenity-card--cream .amenity-card__title {
  color: var(--midnight);
}
.amenity-card--cream .amenity-card__desc {
  color: #666;
}

/* Pet Policy Badge */
.pet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-subtle);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--midnight);
  margin-top: 32px;
}
