/* ============================================================
   Founder's Walk – Elementor Addon  |  Shared Styles
   All widget styles are scoped under .fw-widget to avoid
   conflicts with the active WordPress theme.
   ============================================================ */

:root {
  --fw-navy:       #040a1c;
  --fw-navy-80:    rgba(4,10,28,0.80);
  --fw-navy-60:    rgba(4,10,28,0.60);
  --fw-navy-20:    rgba(4,10,28,0.20);
  --fw-gold:       #c8a96e;
  --fw-gold-light: #e2c99a;
  --fw-cream:      #f7f3ed;
  --fw-white:      #ffffff;
  --fw-text:       #2a2a2a;
  --fw-muted:      #666666;
  --fw-serif:      'Cormorant Garamond', Georgia, serif;
  --fw-sans:       'Inter', system-ui, sans-serif;
}

.fw-widget {
  font-family: var(--fw-sans);
  color: var(--fw-text);
  box-sizing: border-box;
}

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

/* ── TYPOGRAPHY HELPERS ── */
.fw-eyebrow {
  font-family: var(--fw-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fw-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fw-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fw-gold);
  flex-shrink: 0;
}

.fw-eyebrow--center {
  justify-content: center;
}

.fw-eyebrow--center::before { display: none; }
.fw-eyebrow--center::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fw-gold);
}

.fw-title {
  font-family: var(--fw-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fw-navy);
  margin-bottom: 24px;
}

.fw-title em  { font-style: italic; color: var(--fw-gold); }
.fw-title--light { color: var(--fw-white); }

.fw-body {
  font-size: 15px;
  line-height: 1.80;
  color: var(--fw-muted);
  max-width: 680px;
}

.fw-body--light { color: rgba(255,255,255,0.62); }

/* ── BUTTONS ── */
.fw-btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--fw-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}

.fw-btn--gold {
  background: var(--fw-gold);
  color: var(--fw-navy);
}

.fw-btn--gold:hover { background: var(--fw-gold-light); color: var(--fw-navy); }

.fw-btn--dark {
  background: var(--fw-navy);
  color: var(--fw-white);
}

.fw-btn--dark:hover { background: #0e1b3a; color: var(--fw-white); }

.fw-btn--outline-light {
  border: 1px solid rgba(4,10,28,0.30);
  color: var(--fw-navy);
  background: transparent;
}

.fw-btn--outline-light:hover { border-color: var(--fw-gold); color: var(--fw-gold); }

/* ============================================================
   WIDGET: Hero
   ============================================================ */
.fw-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fw-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.fw-hero-bg.loaded { transform: scale(1); }

.fw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,10,28,0.92) 0%,
    rgba(4,10,28,0.50) 45%,
    rgba(4,10,28,0.20) 100%
  );
}

.fw-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  width: 100%;
}

.fw-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 40px;
  align-items: center;
}

.fw-hero-copy {
  max-width: 900px;
}

.fw-hero-eyebrow {
  font-family: var(--fw-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fw-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fw-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--fw-gold);
}

.fw-hero-title {
  font-family: var(--fw-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--fw-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.fw-hero-title em {
  font-style: italic;
  color: var(--fw-gold-light);
}

.fw-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.fw-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fw-hero-btn-primary {
  padding: 14px 36px;
  font-size: 12px;
}

.fw-hero-btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--fw-white);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.fw-hero-btn-outline:hover {
  border-color: var(--fw-gold);
  color: var(--fw-gold);
}

.fw-hero-form-card {
  background: rgba(4,10,28,0.72);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 2px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.fw-hero-form-title {
  font-family: var(--fw-serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--fw-white);
  margin: 0 0 16px;
}

.fw-hero-form-wrap {
  margin: 0;
  max-width: none;
}

.fw-hero-form-wrap .wpforms-container {
  margin: 0;
}

.fw-hero-form-wrap .wpforms-form .wpforms-field {
  padding: 0 0 10px !important;
}

.fw-hero-form-wrap .wpforms-form .wpforms-submit-container {
  padding: 0;
  margin-top: 10px;
}

.fw-hero-form-wrap .wpforms-form .wpforms-field-label {
  margin: 0 0 8px !important;
  line-height: 1.35 !important;
}

.fw-hero-form-wrap .wpforms-form .wpforms-field input,
.fw-hero-form-wrap .wpforms-form .wpforms-field select {
  min-height: 56px;
  line-height: 1.3 !important;
}

.fw-hero-form-wrap .wpforms-form .wpforms-field textarea {
  line-height: 1.4 !important;
}

.fw-hero-form-wrap .wpforms-form button[type=submit],
.fw-hero-form-wrap .wpforms-form .wpforms-submit-container button[type=submit] {
  width: 100%;
}

.fw-hero-form-note {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}

/* ── SECTION WRAPPER ── */
.fw-section {
  padding: 96px 80px;
}

.fw-section--navy  { background: var(--fw-navy); }
.fw-section--cream { background: var(--fw-cream); }
.fw-section--white { background: var(--fw-white); }

/* ============================================================
   WIDGET: Stats Bar
   ============================================================ */
.fw-stats-bar {
  background: var(--fw-navy);
  padding: 32px 80px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(200,169,110,0.18);
}

.fw-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.fw-stat-item:last-child { border-right: none; }

.fw-stat-number {
  font-family: var(--fw-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--fw-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.fw-stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ============================================================
   WIDGET: About
   ============================================================ */
.fw-about {
  background: var(--fw-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 80px;
}

.fw-about__img-wrap { position: relative; }

.fw-about__img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.fw-about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--fw-navy);
  color: var(--fw-white);
  padding: 28px 32px;
  min-width: 180px;
  text-align: center;
}

.fw-about__badge-num {
  font-family: var(--fw-serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--fw-gold);
  display: block;
  line-height: 1.1;
}

.fw-about__badge-text {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}

.fw-about__cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   WIDGET: Highlights
   ============================================================ */
.fw-highlights {
  background: var(--fw-white);
  padding: 96px 80px;
}

.fw-highlights__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.fw-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fw-navy-20);
}

.fw-highlight-card {
  background: var(--fw-white);
  padding: 44px 36px;
  transition: background 0.2s;
}

.fw-highlight-card:hover { background: var(--fw-cream); }

.fw-highlight-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--fw-gold);
}

.fw-highlight-title {
  font-family: var(--fw-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fw-navy);
  margin-bottom: 12px;
}

.fw-highlight-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fw-muted);
}

/* ============================================================
   WIDGET: Gallery
   ============================================================ */
.fw-gallery { padding: 0; overflow: hidden; }

.fw-gallery__label {
  background: var(--fw-navy);
  padding: 56px 80px;
}

.fw-gallery__label .fw-title  { color: var(--fw-white); margin-bottom: 8px; }
.fw-gallery__label .fw-body   { color: rgba(255,255,255,0.60); }

.fw-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--fw-gallery-columns, 4), 1fr);
  gap: var(--fw-gallery-gap, 8px);
}

.fw-gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fw-gallery__item { overflow: hidden; }
.fw-gallery__item:hover img { transform: scale(1.04); }

/* ============================================================
   WIDGET: Floor Plans
   ============================================================ */
.fw-floorplan {
  background: var(--fw-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 80px;
}

.fw-floorplan__img {
  width: 100%;
  border: 6px solid var(--fw-white);
  box-shadow: 0 24px 64px var(--fw-navy-20);
  display: block;
}

.fw-floorplan__list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
}

.fw-floorplan__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(4,10,28,0.08);
  font-size: 14px;
  color: var(--fw-text);
}

.fw-floorplan__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fw-gold);
  margin-top: 6px;
}

/* ============================================================
   WIDGET: Investment
   ============================================================ */
.fw-investment {
  background: var(--fw-navy);
  padding: 96px 80px;
}

.fw-investment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.fw-invest-card {
  border: 1px solid rgba(200,169,110,0.25);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fw-invest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.fw-invest-num {
  font-family: var(--fw-serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--fw-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.fw-invest-sublabel {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 6px;
}

.fw-invest-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================================
   WIDGET: Developers
   ============================================================ */
.fw-developers {
  background: var(--fw-cream);
  padding: 96px 80px;
}

.fw-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.fw-dev-card {
  background: var(--fw-white);
  padding: 52px 48px;
  border-bottom: 3px solid var(--fw-gold);
}

.fw-dev-logo {
  height: 48px;
  object-fit: contain;
  display: block;
  margin-bottom: 28px;
  filter: brightness(0) saturate(100%);
}

.fw-dev-name {
  font-family: var(--fw-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--fw-navy);
  margin-bottom: 6px;
}

.fw-dev-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fw-gold);
  margin-bottom: 20px;
}

.fw-dev-body {
  font-size: 14px;
  line-height: 1.78;
  color: var(--fw-muted);
  margin-bottom: 24px;
}

.fw-dev-achievements {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(4,10,28,0.08);
  padding-top: 20px;
}

.fw-dev-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fw-text);
  padding: 7px 0;
}

.fw-dev-achievements li::before {
  content: '→';
  color: var(--fw-gold);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.fw-dev-quote {
  font-family: var(--fw-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fw-navy);
  border-left: 3px solid var(--fw-gold);
  padding-left: 20px;
  margin-top: 28px;
  line-height: 1.6;
}

/* ============================================================
   WIDGET: Transportation
   ============================================================ */
.fw-transportation {
  background: var(--fw-white);
  padding: 96px 80px;
}

.fw-transport-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  margin-top: 56px;
  align-items: start;
}

.fw-transport-tab {
  border: 1px solid rgba(4,10,28,0.10);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.fw-transport-tab-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
  user-select: none;
}

.fw-transport-tab-header:hover { background: var(--fw-cream); }
.fw-transport-tab.open .fw-transport-tab-header { background: var(--fw-navy); }

.fw-tab-icon {
  width: 32px;
  height: 32px;
  background: var(--fw-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fw-tab-icon svg { width: 16px; height: 16px; color: var(--fw-navy); }

.fw-tab-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fw-navy);
}

.fw-transport-tab.open .fw-tab-label { color: var(--fw-white); }

.fw-tab-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--fw-cream);
}

.fw-transport-tab.open .fw-tab-body { display: block; }

.fw-tab-body ul { list-style: none; padding: 12px 0 0; margin: 0; }

.fw-tab-body li {
  font-size: 13.5px;
  color: var(--fw-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fw-tab-body li::before {
  content: '·';
  color: var(--fw-gold);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.fw-map-frame {
  border: 0;
  width: 100%;
  height: 420px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 16px 48px var(--fw-navy-20);
}

/* ============================================================
   WIDGET: Neighbourhood
   ============================================================ */
.fw-neighbourhood {
  background: var(--fw-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 80px;
}

.fw-neighbourhood__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.fw-amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.fw-amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fw-text);
  padding: 12px;
  background: var(--fw-white);
  border-left: 2px solid var(--fw-gold);
  line-height: 1.4;
}

/* ============================================================
   WIDGET: Site Plan
   ============================================================ */
.fw-siteplan {
  background: var(--fw-navy);
  text-align: center;
  padding: 96px 80px;
}

.fw-siteplan__img-wrap {
  max-width: 960px;
  margin: 48px auto 0;
}

.fw-siteplan__img-wrap img {
  width: 100%;
  display: block;
  border: 2px solid rgba(200,169,110,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.fw-siteplan__note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  letter-spacing: 0.06em;
}

/* ============================================================
   WIDGET: VIP Appointment
   ============================================================ */
.fw-appointment {
  background: var(--fw-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 80px;
}

.fw-appointment__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.fw-appt-hours {
  margin: 32px 0;
  border: 1px solid rgba(4,10,28,0.10);
}

.fw-appt-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(4,10,28,0.07);
}

.fw-appt-row:last-child { border-bottom: none; }
.fw-appt-day  { color: var(--fw-navy); font-weight: 500; }
.fw-appt-time { color: var(--fw-muted); }

.fw-appt-address {
  font-size: 14px;
  color: var(--fw-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--fw-gold);
}

.fw-appt-address strong { color: var(--fw-navy); display: block; margin-bottom: 4px; }
.fw-appt-address a { color: var(--fw-gold); text-decoration: none; }

/* ============================================================
   WIDGET: VIP Register (WPForms wrapper)
   ============================================================ */
.fw-register {
  background: var(--fw-navy);
  text-align: center;
  padding: 96px 80px;
}

.fw-register .fw-title  { text-align: center; }
.fw-register .fw-body   { margin: 0 auto 52px; }

.fw-vip-perks {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.fw-vip-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.fw-vip-perk::before {
  content: '✓';
  color: var(--fw-gold);
  font-weight: 700;
}

.fw-wpforms-wrap {
  max-width: 860px;
  margin: 0 auto 20px;
}

/* Override WPForms styling to match brand */
.fw-wpforms-wrap .wpforms-form .wpforms-field input,
.fw-wpforms-wrap .wpforms-form .wpforms-field select,
.fw-wpforms-wrap .wpforms-form .wpforms-field textarea {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  font-family: var(--fw-sans) !important;
  border-radius: 2px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}

.fw-wpforms-wrap .wpforms-form .wpforms-field input::placeholder,
.fw-wpforms-wrap .wpforms-form .wpforms-field textarea::placeholder {
  color: rgba(255,255,255,0.38) !important;
}

.fw-wpforms-wrap .wpforms-form .wpforms-field input:focus,
.fw-wpforms-wrap .wpforms-form .wpforms-field textarea:focus {
  border-color: var(--fw-gold) !important;
}

.fw-wpforms-wrap .wpforms-form .wpforms-submit-container button[type=submit],
.fw-wpforms-wrap .wpforms-form button[type=submit] {
  background: var(--fw-gold) !important;
  color: var(--fw-navy) !important;
  border: none !important;
  padding: 14px 32px !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  font-family: var(--fw-sans) !important;
  transition: background 0.2s !important;
  box-shadow: none !important;
}

.fw-wpforms-wrap .wpforms-form button[type=submit]:hover {
  background: var(--fw-gold-light) !important;
}

.fw-wpforms-wrap .wpforms-form label {
  color: rgba(255,255,255,0.65) !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

.fw-register__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ============================================================
   WIDGET: FAQ
   ============================================================ */
.fw-faq {
  background: var(--fw-white);
  padding: 96px 80px;
}

.fw-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
  background: rgba(4,10,28,0.08);
}

.fw-faq-item {
  background: var(--fw-white);
  padding: 32px 36px;
  cursor: pointer;
  transition: background 0.2s;
}

.fw-faq-item.open { background: var(--fw-cream); }

.fw-faq-q {
  font-family: var(--fw-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--fw-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.fw-faq-a {
  font-size: 13.5px;
  color: var(--fw-muted);
  line-height: 1.75;
  display: none;
}

.fw-faq-item.open .fw-faq-a { display: block; }

.fw-faq-toggle {
  float: right;
  font-size: 20px;
  color: var(--fw-gold);
  line-height: 1;
  margin-left: 12px;
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fw-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fw-hero-form-card {
    max-width: 560px;
  }

  .fw-section,
  .fw-about,
  .fw-floorplan,
  .fw-neighbourhood,
  .fw-appointment,
  .fw-highlights,
  .fw-developers,
  .fw-transportation,
  .fw-investment,
  .fw-faq,
  .fw-siteplan,
  .fw-register {
    padding: 72px 40px;
  }

  .fw-about,
  .fw-floorplan,
  .fw-neighbourhood,
  .fw-appointment { grid-template-columns: 1fr; }

  .fw-highlights__intro { grid-template-columns: 1fr; gap: 24px; }
  .fw-dev-grid          { grid-template-columns: 1fr; }
  .fw-investment__grid  { grid-template-columns: 1fr 1fr; }
  .fw-transport-layout  { grid-template-columns: 1fr; }
  .fw-gallery__label    { padding: 40px; }
}

@media (max-width: 768px) {
  .fw-hero-content { padding: 0 24px; }

  .fw-hero-form-title {
    font-size: 24px;
  }

  .fw-hero-form-card {
    padding: 18px;
  }

  .fw-section,
  .fw-about,
  .fw-floorplan,
  .fw-neighbourhood,
  .fw-appointment,
  .fw-highlights,
  .fw-developers,
  .fw-transportation,
  .fw-investment,
  .fw-faq,
  .fw-siteplan,
  .fw-register {
    padding: 56px 24px;
  }

  .fw-stats-bar      { padding: 28px 24px; flex-wrap: wrap; gap: 24px; }
  .fw-stat-item      { border-right: none; flex: 0 0 calc(50% - 12px); }
  .fw-highlights__grid { grid-template-columns: 1fr; }
  .fw-gallery__grid  {
    grid-template-columns: 1fr 1fr;
  }
  .fw-faq__grid      { grid-template-columns: 1fr; }
  .fw-investment__grid { grid-template-columns: 1fr; }
  .fw-about__badge   { right: 8px; bottom: -16px; }
  .fw-gallery__label { padding: 32px 24px; }
  .fw-amenity-grid   { grid-template-columns: 1fr; }
  .fw-vip-perks      { gap: 20px; }
}
