/* ==========================================================================
   Wire Park -- Main Stylesheet
   Design system extracted from homepage preview
   Dark theme · Oswald / Barlow Condensed / Inter
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #fff; background: #111; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ==========================================================================
   2. DESIGN TOKENS
   ========================================================================== */

:root {
  --black:    #111111;
  --navy:     #1B2D3A;
  --dk-gray:  #2A2A2A;
  --mid-gray: #6B7280;
  --lt-gray:  #D1D5DB;
  --cream:    #F5F2EC;
  --white:    #FFFFFF;
  --yellow:   #D4A843;
}

/* ==========================================================================
   3. SHARED TYPOGRAPHY & COMPONENTS
   ========================================================================== */

.story-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.story-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.story-body {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
  border: 1.5px solid currentColor;
  padding: 0.9375rem 2.25rem;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.story-link:hover {
  background: var(--white);
  color: var(--black);
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9375rem 2.25rem;
  background: #fff;
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0;
  transition: all 0.25s;
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn-w .btn-arrow {
  width: 24px;
  height: 12px;
  transition: transform 0.25s;
}

.btn-w:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  padding: 0.9375rem 2.25rem;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 0;
  transition: all 0.25s;
}

.btn-o:hover {
  border-color: #fff;
}

/* ==========================================================================
   5. NAVIGATION (from homepage)
   ========================================================================== */

.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem 1.25rem;
}

.hero-nav img.logo {
  height: 36px;
}

.hero-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-nav > ul > li {
  position: relative;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.nav-social a {
  display: flex;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.nav-social a:hover {
  opacity: 1;
}

.nav-social a::after {
  display: none;
}

.nav-social svg {
  width: 18px;
  height: 18px;
}

.hero-nav a {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}

.hero-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

.hero-nav > ul > li:hover > a::after {
  width: 100%;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  display: flex;
  flex-direction: column;
}

.hero-nav > ul > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.has-dropdown .chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.25s, opacity 0.25s;
  flex-shrink: 0;
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-wp-mark {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   6. PAGE HERO (for interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 3rem clamp(3rem, 6vw, 6rem);
}

.page-hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 2rem + 4vw, 5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero__desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.65;
}

.page-hero__content--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero__play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: #fff;
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.page-hero__play-btn:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.page-hero__play-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .page-hero__content--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   7. DIRECTORY -- FILTERS
   ========================================================================== */

.directory-section {
  background: #fff;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.directory-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.directory-filters__btn {
  padding: 0.5rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.4);
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s;
}

.directory-filters__btn:hover {
  color: var(--navy);
  border-color: rgba(0, 0, 0, 0.35);
}

.directory-filters__btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ==========================================================================
   8. DIRECTORY -- GRID & TILES
   ========================================================================== */

.directory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.directory-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  background: var(--dk-gray);
}

.directory-tile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.directory-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.4s ease;
}

.directory-tile:hover .directory-tile__bg {
  transform: scale(1.06);
}

.directory-tile:hover .directory-tile__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.directory-tile__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem;
}

.directory-tile__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
  transition: margin-bottom 0.3s ease;
}

.directory-tile__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* Desktop: hide tagline until hover */
@media (min-width: 768px) {
  .directory-tile__tagline {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  }

  .directory-tile:hover .directory-tile__name {
    margin-bottom: 0.25rem;
  }

  .directory-tile:hover .directory-tile__tagline {
    max-height: 3rem;
    opacity: 1;
    margin-top: 0.25rem;
  }
}

/* Empty state */
.directory-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
}

/* ==========================================================================
   8b. VISIT / CONTACT PAGE
   ========================================================================== */

.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.visit-info__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2.5rem, 5vw, 5rem);
  background: var(--white);
}

.visit-info__details .story-eyebrow {
  color: var(--yellow);
}

.visit-info__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.visit-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.visit-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--yellow);
  margin-top: 2px;
}

.visit-card__icon svg {
  width: 100%;
  height: 100%;
}

.visit-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  margin-bottom: 0.375rem;
}

.visit-card__text {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
}

.visit-card__text a {
  color: var(--navy);
  border-bottom: 1px solid var(--lt-gray);
  transition: border-color 0.25s;
}

.visit-card__text a:hover {
  border-color: var(--navy);
}

.visit-card__note {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--mid-gray);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.visit-card__note a {
  color: var(--navy);
  border-bottom: 1px solid var(--lt-gray);
  transition: border-color 0.25s;
}

.visit-card__note a:hover {
  border-color: var(--navy);
}

.visit-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.25s;
}

.visit-card__link:hover {
  color: var(--yellow);
}

.visit-card__social {
  display: flex;
  gap: 1.25rem;
}

.visit-card__social a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  border-bottom: 1px solid var(--lt-gray);
  transition: border-color 0.25s, color 0.25s;
}

.visit-card__social a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.visit-info__map {
  position: relative;
  min-height: 500px;
}

.visit-map-pin {
  background: none !important;
  border: none !important;
}

.visit-map-pin__circle {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.visit-map-pin__circle svg {
  width: 20px;
  height: auto;
}

/* ── Contact forms ── */

.visit-forms {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.visit-forms__inner {
  max-width: 720px;
  margin: 0 auto;
}

.visit-forms__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.visit-forms__header .story-eyebrow {
  color: var(--yellow);
}

.visit-forms__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.visit-forms__desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 540px;
  margin: 0 auto;
}

/* Tabs */

.visit-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--lt-gray);
}

.visit-tabs__btn {
  flex: 1;
  padding: 0.875rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.25s, border-color 0.25s;
  cursor: pointer;
}

.visit-tabs__btn:hover {
  color: var(--navy);
}

.visit-tabs__btn.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Forms */

.visit-form {
  display: none;
}

.visit-form[data-active="true"] {
  display: block;
}

.visit-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.visit-form__field {
  margin-bottom: 1.25rem;
}

.visit-form__field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}

.visit-form__field input,
.visit-form__field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--lt-gray);
  border-radius: 0;
  transition: border-color 0.25s;
  outline: none;
}

.visit-form__field input:focus,
.visit-form__field textarea:focus {
  border-color: var(--navy);
}

.visit-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.visit-form__submit {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.25s;
}

.visit-form__submit:hover {
  background: var(--black);
}

.visit-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Visit mobile ── */

@media (max-width: 768px) {
  .visit-info {
    grid-template-columns: 1fr;
  }

  .visit-info__details {
    padding: 3rem 1.5rem;
  }

  .visit-info__map {
    min-height: 350px;
  }

  .visit-form__row {
    grid-template-columns: 1fr;
  }

  .visit-tabs__btn {
    font-size: 0.8125rem;
    padding: 0.75rem 0.5rem;
  }

  .visit-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   8c. FLATS LEASING PAGE
   ========================================================================== */

/* ── Living hero (full-viewport, video bg) ── */

.living-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.living-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.living-hero__video,
.living-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.living-hero__fallback {
  z-index: 0;
}

.living-hero__video {
  z-index: 1;
}

.living-hero .hero-nav {
  position: relative;
  z-index: 10;
}

.living-hero__content {
  position: relative;
  z-index: 3;
  margin: auto 0;
  padding: 3rem clamp(3rem, 6vw, 6rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.living-hero__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.living-hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 2rem + 8vw, 9rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.living-hero__desc {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.65;
}

/* ── Living hero split variant (Our Story) ── */

.living-hero__content--split {
  flex-direction: row;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
}

.living-hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.living-hero__content--split .living-hero__title {
  white-space: nowrap;
}

.living-hero__play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3rem;
}

.hero-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.hero-play-btn {
  width: clamp(100px, 12vw, 160px);
  height: clamp(100px, 12vw, 160px);
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
}

.hero-play-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.06);
}

.hero-play-btn svg {
  width: clamp(32px, 4vw, 52px);
  height: clamp(32px, 4vw, 52px);
  margin-left: 0.2em;
}

.hero-play-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: transparent;
  transition: color 0.25s;
}

.hero-play-wrap:hover .hero-play-label {
  color: rgba(255,255,255,0.85);
}

/* ── Vimeo lightbox ── */

.vimeo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
}

.vimeo-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.vimeo-lightbox__inner {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  position: relative;
  cursor: default;
}

.vimeo-lightbox__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vimeo-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
  cursor: pointer;
}

.vimeo-lightbox__close:hover { opacity: 1; }

@media (max-width: 700px) {
  .living-hero__content--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

/* ── Hero scroll cue ── */

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.hero-scroll-cue span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: bounceArrow 2s ease-in-out infinite;
}

.living-hero:has(.living-hero__content--split) .hero-scroll-cue {
  left: clamp(3rem, 6vw, 6rem);
  transform: none;
  color: #fff;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Intro (50/50 split like Our Story) ── */

.flats-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.flats-intro__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2.5rem, 5vw, 5rem);
  background: var(--cream);
}

.flats-intro__text .story-eyebrow {
  color: var(--yellow);
}

.flats-intro__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.flats-intro__body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  max-width: 500px;
  margin-bottom: 1.25rem;
}

.flats-intro__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.flats-intro__cta {
  color: var(--black);
  border-color: var(--black);
}

.flats-intro__cta:hover {
  background: var(--black);
  color: var(--cream);
}

.flats-intro__image {
  position: relative;
  overflow: hidden;
}

.flats-intro__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Gallery ── */

.flats-gallery {
  background: var(--white);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.flats-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flats-gallery__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.flats-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.flats-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.flats-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.flats-gallery__item:hover img {
  transform: scale(1.05);
}

/* ── Lightbox ── */

.flats-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.flats-lightbox.active {
  opacity: 1;
}

.flats-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.flats-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  line-height: 1;
}

.flats-lightbox__prev,
.flats-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: rgba(255,255,255,0.7);
  font-size: 3rem;
  padding: 1rem;
  line-height: 1;
  transition: color 0.2s;
}

.flats-lightbox__prev:hover,
.flats-lightbox__next:hover {
  color: #fff;
}

.flats-lightbox__prev { left: 1rem; }
.flats-lightbox__next { right: 1rem; }

.flats-lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* ── Interest form ── */

.flats-interest {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.flats-interest__inner {
  max-width: 720px;
  margin: 0 auto;
}

.flats-interest__inner .story-eyebrow {
  color: var(--yellow);
  text-align: center;
}

.flats-interest__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.flats-interest__desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  text-align: center;
  margin-bottom: 2.5rem;
}

.flats-interest__checks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.flats-check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
}

.flats-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.flats-interest__contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border: 1.5px solid var(--lt-gray);
}

.flats-interest__contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.flats-interest__contact-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.flats-interest__contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.25s;
}

.flats-interest__contact-links a:hover {
  color: var(--yellow);
}

/* ── Flats mobile ── */

@media (max-width: 768px) {
  .living-hero {
    min-height: 100vh;
  }

  .living-hero__content {
    padding: 2rem 1.5rem;
  }

  .flats-intro {
    grid-template-columns: 1fr;
  }

  .flats-intro__text {
    padding: 3rem 1.5rem;
  }

  .flats-intro__image {
    min-height: 300px;
  }

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

/* ==========================================================================
   8d. TOWNHOMES LISTINGS
   ========================================================================== */

.townhomes-listings {
  background: var(--white);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.townhomes-listings__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.townhomes-listings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.townhomes-listing {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--lt-gray);
  transition: border-color 0.25s;
}

.townhomes-listing:hover {
  border-color: var(--navy);
}

.townhomes-listing__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin: 24px 24px 0;
}

.townhomes-listing__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.townhomes-listing:hover .townhomes-listing__img img {
  transform: scale(1.03);
}

.townhomes-listing__info {
  padding: 1.5rem 1.75rem;
  background: var(--white);
}

.townhomes-listing__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.625rem 1.125rem;
  background: var(--black);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: normal;
  z-index: 2;
}

.townhomes-listing__address {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.townhomes-listing__city {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--mid-gray);
}

.townhomes-listing__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lt-gray);
}

.townhomes-listing__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color 0.25s;
}

.townhomes-listing__arrow {
  width: 24px;
  height: 12px;
  color: var(--navy);
  transition: transform 0.25s, color 0.25s;
}

.townhomes-listing:hover .townhomes-listing__cta {
  color: var(--navy);
}

.townhomes-listing:hover .townhomes-listing__arrow {
  transform: translateX(4px);
  color: var(--yellow);
}

.townhomes-listings__logos {
  text-align: center;
  margin-bottom: 2.5rem;
}

.townhomes-listings__logos img {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

/* ── Trillium 4-model grid ── */

.trillium-models__grid {
  grid-template-columns: repeat(2, 1fr);
}

.trillium-model .townhomes-listing__img {
  aspect-ratio: 4/3;
}

@media (max-width: 1024px) {
  .trillium-models__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .townhomes-listings__grid {
    grid-template-columns: 1fr;
  }

  .trillium-models__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   8e. OUR STORY — VIDEOS
   ========================================================================== */

.our-story-videos {
  position: relative;
  background: var(--cream);
  padding: clamp(4rem,7vw,7rem) clamp(1.5rem,4vw,4rem) clamp(3rem,5vw,5rem);
  overflow: hidden;
}

.our-story-videos__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.our-story-videos__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2.5rem;
}

.our-story-videos__inner .story-eyebrow {
  color: var(--navy);
}

.our-story-videos__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0;
}

.our-story-videos__embed--full {
  position: relative;
  z-index: 1;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.our-story-videos__embed--full iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   8f. OUR STORY — FEATURES
   ========================================================================== */

.our-story-features {
  background: var(--white);
  padding: clamp(4rem,7vw,7rem) clamp(1.5rem,4vw,4rem);
}

.our-story-features__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.our-story-features__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.our-story-features__desc {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dk-gray);
  max-width: 680px;
  margin: 0 auto 3rem;
}

.our-story-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 0;
  text-align: left;
}

.our-story-features__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--lt-gray);
}

.our-story-features__list li:nth-child(n+4) {
  border-bottom: 1px solid var(--lt-gray);
}

@media (max-width: 900px) {
  .our-story-features__list {
    grid-template-columns: 1fr 1fr;
  }
  .our-story-features__list li:nth-child(n+4) {
    border-bottom: none;
  }
  .our-story-features__list li:last-child,
  .our-story-features__list li:nth-last-child(2) {
    border-bottom: 1px solid var(--lt-gray);
  }
}

@media (max-width: 560px) {
  .our-story-features__list {
    grid-template-columns: 1fr;
  }
  .our-story-features__list li:nth-last-child(2) {
    border-bottom: none;
  }
  .our-story-features__list li:last-child {
    border-bottom: 1px solid var(--lt-gray);
  }
}

.our-story-features__list svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

.our-story-features__list strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.our-story-features__list span {
  font-size: 0.9375rem;
  color: var(--dk-gray);
  line-height: 1.5;
}

/* ==========================================================================
   8e. LIVING OPTIONS (landing page)
   ========================================================================== */

.living-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.living-option--cream {
  background: var(--cream);
}

.living-option--white {
  background: var(--white);
}

.living-option--reverse .living-option__image {
  order: -1;
}

.living-option__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2.5rem, 5vw, 5rem);
}

.living-option__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
}

.living-option__badge--gold {
  background: var(--yellow);
  color: var(--black);
}

.living-option__badge--navy {
  background: var(--navy);
  color: var(--white);
}

.living-option__text .story-eyebrow {
  color: var(--yellow);
}

.living-option__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.living-option__body {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.living-option__cta {
  color: var(--black);
  border-color: var(--black);
  gap: 0.75rem;
  white-space: nowrap;
}

.living-option__cta .btn-arrow {
  width: 24px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.living-option__cta:hover .btn-arrow {
  transform: translateX(4px);
}

.living-option__cta:hover {
  background: var(--black);
  color: var(--cream);
}

.living-option__image {
  position: relative;
  overflow: hidden;
}

.living-option__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- Slideshow + Ken Burns ------------------------------------------------ */

.living-option__slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.living-option__slide.active {
  opacity: 1;
  z-index: 1;
}

.living-option__slide.kb-up {
  animation: kb-up 6s ease forwards;
}

.living-option__slide.kb-down {
  animation: kb-down 6s ease forwards;
}

.living-option__slide.kb-left {
  animation: kb-left 6s ease forwards;
}

.living-option__slide.kb-right {
  animation: kb-right 6s ease forwards;
}

@keyframes kb-up {
  0%   { transform: scale(1.0); transform-origin: bottom center; }
  100% { transform: scale(1.08); transform-origin: bottom center; }
}

@keyframes kb-down {
  0%   { transform: scale(1.0); transform-origin: top center; }
  100% { transform: scale(1.08); transform-origin: top center; }
}

@keyframes kb-left {
  0%   { transform: scale(1.0); transform-origin: right center; }
  100% { transform: scale(1.08); transform-origin: right center; }
}

@keyframes kb-right {
  0%   { transform: scale(1.0); transform-origin: left center; }
  100% { transform: scale(1.08); transform-origin: left center; }
}

@media (max-width: 768px) {
  .living-option {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .living-option--reverse .living-option__image {
    order: 0;
  }

  .living-option__image {
    min-height: 350px;
  }

  .living-option__text {
    padding: 3rem 1.5rem;
  }
}

/* ==========================================================================
   9. NEWSLETTER
   ========================================================================== */

.newsletter {
  position: relative;
  background: var(--black);
  padding: clamp(4rem,7vw,7rem) clamp(3rem,6vw,6rem);
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.newsletter__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__inner .story-heading {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  margin-bottom: 1.5rem;
}

.newsletter__inner .story-body {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.newsletter__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--black);
  padding: clamp(4rem,7vw,6rem) clamp(3rem,6vw,6rem) 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer a:hover {
  color: #fff !important;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}

.footer__brand-logo {
  height: 32px;
  margin-bottom: 1.5rem;
}

.footer__brand-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__contact-info a {
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__col-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer__bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}

/* ==========================================================================
   11. BUSINESS DETAIL PAGE
   ========================================================================== */

/* -- Hero: full-bleed photo with centered logo + name ------------------- */

.business-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.business-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.business-hero__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-hero__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.business-hero__tagline {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* -- Content area (white background) ------------------------------------ */

.business-content {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-content > * {
  width: 100%;
  max-width: 1060px;
}

.business-back {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 2.5rem;
  transition: color 0.25s;
}

.business-back:hover {
  color: var(--black);
}

.business-back .btn-arrow {
  width: 24px;
  height: 12px;
  transform: rotate(180deg);
  transition: transform 0.25s;
}

.business-back:hover .btn-arrow {
  transform: rotate(180deg) translateX(5px);
}

/* -- Two-row layout ----------------------------------------------------- */

.business-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.business-row:last-child {
  margin-bottom: 0;
}

/* Row 1 left: logo */

.business-row__logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Row 1 right: about */

.business-main__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.business-main__desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
}

/* Row 2 left: info block (hours, phone, links) */

.business-info-block {
  margin-bottom: 1.5rem;
}

.business-info-block__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* -- Hours -------------------------------------------------------------- */

.business-hours {
  width: 100%;
  border-collapse: collapse;
}

.business-hours td {
  padding: 0.3rem 0;
  font-size: 0.875rem;
  font-weight: 300;
}

.business-hours td:first-child {
  font-weight: 500;
  padding-right: 1.5rem;
  color: var(--navy);
  white-space: nowrap;
}

.business-hours td:last-child {
  color: rgba(0, 0, 0, 0.5);
}

/* -- Info links (phone, website, socials) ------------------------------- */

.business-info-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}

.business-info-link:hover {
  color: var(--black);
}

.business-info-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* -- Social links ------------------------------------------------------- */

.business-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.business-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--navy);
  transition: background 0.25s, color 0.25s;
}

.business-socials a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.business-socials svg {
  width: 18px;
  height: 18px;
}

/* Row 2 right: feature photo */

.business-feature-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.business-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   12. CALENDAR
   ========================================================================== */

.calendar-section {
  background: #fff;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

.calendar-section__inner {
  max-width: 100%;
  margin: 0 auto;
}

/* -- Month navigation ---------------------------------------------------- */

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.calendar-nav__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  text-align: center;
}

.calendar-nav__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--black);
  transition: opacity 0.25s;
}

.calendar-nav__btn:hover {
  opacity: 0.5;
}

.calendar-nav__btn svg {
  width: 24px;
  height: 24px;
}

/* -- Grid ---------------------------------------------------------------- */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-grid--header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.calendar-header-cell {
  padding: 0.75rem 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* -- Day cells ----------------------------------------------------------- */

.calendar-day {
  position: relative;
  min-height: 140px;
  padding: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.2s;
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.calendar-day--other-month {
  background: rgba(0, 0, 0, 0.015);
}

.calendar-day--other-month .calendar-day__num {
  color: rgba(0, 0, 0, 0.15);
}

.calendar-day--today .calendar-day__num {
  background: var(--black);
  color: #fff;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.calendar-day--has-event {
  cursor: pointer;
}

.calendar-day--has-event:hover {
  background: rgba(0, 0, 0, 0.03);
}

.calendar-day--selected {
  background: rgba(0, 0, 0, 0.04);
}

/* -- Inline event previews in day cells ---------------------------------- */

.calendar-day__events {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}

.calendar-day__event {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--black);
}

.calendar-day__event-time {
  font-weight: 700;
  display: block;
}

.calendar-day__event-name {
  font-weight: 400;
  display: block;
}

/* -- Mobile week agenda (hidden on desktop) ------------------------------ */

.calendar-week {
  display: none;
  overflow: hidden;
  touch-action: pan-y;
}

.calendar-week__track {
  display: flex;
  transition: transform 0.3s ease;
}

.calendar-week__page {
  flex-shrink: 0;
  width: 100%;
}

.calendar-week__day {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.calendar-week__day:last-child {
  border-bottom: none;
}

.calendar-week__date {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.calendar-week__day--today .calendar-week__date {
  color: var(--black);
}

.calendar-week__day--no-events .calendar-week__date {
  color: rgba(0, 0, 0, 0.2);
}

.calendar-week__event {
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid var(--yellow);
  margin-bottom: 0.375rem;
}

.calendar-week__event:last-child {
  margin-bottom: 0;
}

.calendar-week__event-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.125rem;
}

.calendar-week__event-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
}

.calendar-week__dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 1rem 0 0.25rem;
}

.calendar-week__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}

.calendar-week__dot--active {
  background: var(--navy);
}

/* -- Lightbox modal ------------------------------------------------------ */

.calendar-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.calendar-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.calendar-lightbox__inner {
  background: #fff;
  width: 90vw;
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.calendar-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: none;
  color: rgba(0, 0, 0, 0.35);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.calendar-lightbox__close:hover {
  color: var(--black);
}

.calendar-detail__date {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.calendar-detail__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calendar-detail__event {
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-detail__time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 0.375rem;
}

.calendar-detail__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.calendar-detail__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

/* -- 480px: 2-col directory ---------------------------------------------- */

@media (min-width: 480px) {
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -- 768px: Tablet ------------------------------------------------------- */

@media (min-width: 768px) {
  .business-row {
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
  }
}

/* -- Mobile nav ---------------------------------------------------------- */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .hero-nav {
    padding: 1.5rem 1.5rem 1rem;
  }

  .hero-nav img.logo {
    height: 27px;
  }

  .hero-nav ul {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .hero-nav ul.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-wp-mark {
    display: block !important;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav-wp-mark svg {
    height: 36px;
    width: auto;
  }

  .hero-nav ul.open ~ .nav-wp-mark,
  .nav-wp-mark.open {
    opacity: 1;
    visibility: visible;
  }

  .hero-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero-nav > ul > li > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.25rem 2rem;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    width: 100%;
  }

  .hero-nav > ul > li > a::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    align-items: flex-start;
  }

  .has-dropdown.open .nav-dropdown {
    max-height: 300px;
    padding: 0 0 0.75rem;
  }

  .nav-dropdown a {
    padding: 0.5rem 2rem 0.5rem 3.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
  }

  .nav-social {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex !important;
    justify-content: center;
  }

  .nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    flex: 1;
  }

  /* Page hero smaller on mobile */
  .page-hero {
    min-height: 40vh;
  }

  .page-hero__content {
    padding: 2rem 1.5rem;
  }

  /* Buttons full width on mobile */
  .btn-w, .btn-o {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  /* Calendar mobile — swap grid for swipeable week view */
  .calendar-grid,
  .calendar-grid--header {
    display: none;
  }

  .calendar-week {
    display: block;
  }

  .calendar-nav__title {
    font-size: 1.25rem;
  }

  .calendar-detail__event {
    padding: 1rem;
  }

  /* Newsletter */
  .newsletter {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* Footer stacking */
  .footer__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }

  .footer__grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__brand-desc {
    text-align: center;
  }

  .footer__contact-info {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* -- 1024px: Desktop ----------------------------------------------------- */

@media (min-width: 1024px) {
  .directory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ============================================================
   SITE PLAN + LOT LIST (The Towns / Trillium)
   ============================================================ */

.sitemap-section {
  background: #EFEAE0;
  padding: 5rem 1.5rem;
}

.sitemap-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sitemap-section__heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin: 0.75rem 0 0.5rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.sitemap-section__sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--mid-gray);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sitemap-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
  }
}

.sitemap-grid__map {
  margin: 0;
  position: relative;
}

.sitemap-grid__expand {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: var(--white);
  cursor: zoom-in;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sitemap-grid__expand img {
  width: 100%;
  height: auto;
  display: block;
}

.sitemap-grid__zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17,17,17,0.78);
  color: var(--white);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  pointer-events: none;
  transition: background 0.2s ease;
}

.sitemap-grid__expand:hover .sitemap-grid__zoom-icon {
  background: var(--black);
}

.sitemap-grid__list {
  background: var(--white);
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.lot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lot-list__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lot-list__item:last-child {
  border-bottom: none;
}

.lot-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--black);
}

.lot-list__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.lot-list__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lot-list__view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.lot-list__view-link:hover {
  opacity: 0.65;
}

.lot-list__view-link svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.lot-list__id {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.1;
}

.lot-list__address {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.3;
}


.lot-list__status {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
}

.lot-list__status--available {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.lot-list__status--pending {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.lot-list__status--sold {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.lot-list__status--model {
  background: #6BBE6B;
  border-color: #6BBE6B;
  color: var(--white);
}

.lot-list__group-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  padding: 1rem 0 0.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lot-list__group-heading:first-child {
  padding-top: 0.5rem;
}

.sitemap-section__meta {
  margin: 3rem auto 0;
  max-width: 760px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-top: 3px solid var(--yellow);
  padding: 0;
}

.sitemap-section__meta-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.1rem 1.75rem;
  flex: 1;
}

.sitemap-section__meta-icon {
  width: 26px;
  height: 26px;
  color: var(--yellow);
  flex-shrink: 0;
  stroke-width: 1.6;
}

.sitemap-section__meta-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.sitemap-section__meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  line-height: 1;
}

.sitemap-section__meta-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.35;
}

.sitemap-section__meta-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.sitemap-section__meta-note {
  text-align: center;
  margin: 1rem auto 0;
  max-width: 720px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--mid-gray);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .sitemap-section__meta {
    flex-direction: column;
  }
  .sitemap-section__meta-divider {
    width: 100%;
    height: 1px;
  }
  .sitemap-section__meta-item {
    justify-content: flex-start;
  }
}

/* ============================================================
   COPY POINTS (intro feature list)
   ============================================================ */

.copy-points {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.copy-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--black);
}

.copy-points li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--yellow);
}

/* ============================================================
   OFFICE HOURS block (in sales contact)
   ============================================================ */

.flats-interest__hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lt-gray);
  text-align: center;
}

.flats-interest__hours-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin: 0 0 0.4rem;
}

.flats-interest__hours-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  margin: 0;
  line-height: 1.5;
}
