/* ============================================================
   C13 ESTATES — app.css
   Single global stylesheet for all pages
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colours */
  --color-ink:         #1a1a1a;
  --color-ink-light:   #4a4a4a;
  --color-ink-muted:   #7a7a7a;
  --color-cream:       #f8f6f2;
  --color-cream-dark:  #eee9e1;
  --color-white:       #ffffff;
  --color-gold:        #b08d57;
  --color-gold-light:  #c9a96e;
  --color-gold-dark:   #8a6d3b;
  --color-sage:        #6b7c6e;
  --color-success:     #3a7d44;
  --color-reserved:    #c4872e;
  --color-sold:        #a04040;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing scale (8pt grid) */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Border radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);

  /* Transitions */
  --transition:      0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-cream);
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem);  letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem,   4vw, 3.5rem);  letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; }
em { font-style: italic; }
strong { font-weight: 600; }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.section-tag--light { color: var(--color-gold-light); }
.section-tag--light::before { background: var(--color-gold-light); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-title {
  margin-top: var(--space-sm);
  color: var(--color-ink);
}
.section-subtitle {
  margin-top: var(--space-sm);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-ink-light);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.btn--outline-dark:hover {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn--dark {
  background: var(--color-ink);
  color: var(--color-white);
}
.btn--dark:hover { background: var(--color-gold-dark); transform: translateY(-2px); }
.btn--gold {
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 500;
}
.btn--gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn--full { width: 100%; }
.btn--sm   { padding: 0.65rem 1.5rem; font-size: 0.82rem; }
.btn--lg   { padding: 1.1rem 2.8rem; font-size: 0.95rem; }

/* ============================================================
   6. FORMS
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; position: relative; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-ink-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-ink);
  background: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.12);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--color-sold);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-ink-muted); }

.form-group--checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.form-group--checkbox input {
  width: auto;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-gold-dark);
}
.form-group--checkbox label {
  font-size: 0.78rem;
  color: var(--color-ink-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.form-group--checkbox label a { color: var(--color-gold-dark); text-decoration: underline; }

.form-error {
  display: block;
  font-size: 0.75rem;
  color: var(--color-sold);
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: var(--space-md);
}
.form-success.is-active { opacity: 1; visibility: visible; }
.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  margin-bottom: 1rem;
}
.form-success p { color: var(--color-ink-light); font-size: 0.95rem; }
.form-success strong {
  color: var(--color-ink);
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

/* ============================================================
   7. REVEAL ANIMATIONS
   ============================================================ */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-loaded .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-loaded .reveal--delay-1 { transition-delay: 0.15s; }
.js-loaded .reveal--delay-2 { transition-delay: 0.30s; }
.js-loaded .reveal--delay-3 { transition-delay: 0.45s; }

/* ============================================================
   8. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  overflow: visible;
  transition: all var(--transition);
}
.nav.is-scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Match the white panel height: logo 70px + 1rem top + 1rem bottom */
  min-height: calc(70px + 2rem);
}
.nav.is-scrolled .nav__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* Pull logo out of the centred inner container to sit flush at the viewport left */
  position: absolute;
  top: 0;
  left: 0;
}
.nav.is-scrolled .nav__logo {
  position: static;
}
.nav__logo-hex {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  /* Slanted right edge: diagonal cut from top-right down to bottom-left */
  clip-path: polygon(0% 0%, 100% 0%, 78% 100%, 0% 100%);
  /* Vertical padding drives the panel height — keep in sync with nav__inner min-height */
  padding: 1rem clamp(2.5rem, 5vw, 4.5rem) 1rem clamp(1.25rem, 4vw, 2rem);
  min-height: calc(70px + 2rem);
  transition: background var(--transition), padding var(--transition),
              clip-path var(--transition), min-height var(--transition);
}
.nav.is-scrolled .nav__logo-hex {
  clip-path: none;
  background: transparent;
  padding: 0;
  min-height: 0;
}
.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: height var(--transition);
}
.nav.is-scrolled .nav__logo-img {
  height: 40px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--color-white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--color-white); }
.nav.is-scrolled .nav__links a { color: rgba(255,255,255,0.8); font-size: 0.82rem; letter-spacing: 0.02em; }
.nav.is-scrolled .nav__links a:hover { color: var(--color-white); }
.nav.is-scrolled .nav__links a[aria-current="page"] { color: var(--color-white); }

.nav__cta {
  padding: 0.5rem 1.2rem !important;
  background: rgba(255,255,255,0.12) !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--color-white) !important;
  color: var(--color-ink) !important;
  border-color: var(--color-white) !important;
}
.nav.is-scrolled .nav__cta {
  color: var(--color-white) !important;
  border-color: rgba(255,255,255,0.35) !important;
}
.nav.is-scrolled .nav__cta:hover {
  background: var(--color-white) !important;
  color: var(--color-ink) !important;
  border-color: var(--color-white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all var(--transition);
  transform-origin: center;
}
.nav.is-scrolled .nav__toggle span {
  background: var(--color-white);
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   9. STATUS BADGES
   ============================================================ */
.status {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.status--available { background: #e8f5e9; color: var(--color-success); }
.status--reserved  { background: #fff3e0; color: var(--color-reserved); }
.status--sold      { background: #ffebee; color: var(--color-sold); }

/* ============================================================
   10. BREADCRUMB
   ============================================================ */
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  list-style: none;
}
.dev-hero__content .breadcrumb ol {
  justify-content: center;
}
.breadcrumb li { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.55); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.4rem; }
.breadcrumb li:last-child { color: var(--color-gold-light); font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb--light li { color: rgba(255,255,255,0.55); }
.breadcrumb--light li:last-child { color: var(--color-gold-light); font-weight: 500; }
.breadcrumb--light a { color: rgba(255,255,255,0.75); }
.breadcrumb--light a:hover { color: var(--color-white); }

/* ============================================================
   11. MAIN HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
/* ── Hero overlay ───────────────────────────────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(18,42,72,0.78) 0%,
    rgba(18,42,72,0.62) 50%,
    rgba(18,42,72,0.75) 100%
  );
}

/* ── Hero content layout ────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(4rem, 10vw, 10rem);
  padding-bottom: clamp(4rem, 10vh, 8rem);
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--color-white);
  max-width: 800px;
}
.hero__title em { color: var(--color-gold-light); }
.hero__subtitle {
  margin-top: 1.5rem;
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero__actions .btn--outline {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.hero__actions .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-gold-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   12. PAGE BANNER (Inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.page-banner--short { height: 50vh; min-height: 400px; }
.page-banner__bg {
  position: absolute;
  inset: 0;
}
.page-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,42,72,0.78) 0%,
    rgba(18,42,72,0.62) 50%,
    rgba(18,42,72,0.75) 100%
  );
}
.page-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(4rem, 10vw, 10rem);
}
.page-banner__title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}
.page-banner__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  margin-top: 0.75rem;
}

/* ============================================================
   13. ABOUT SECTION (Homepage)
   ============================================================ */
.about {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.about__label { margin-bottom: var(--space-lg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about__title { margin-bottom: var(--space-md); color: var(--color-ink); }
.about__title em { color: var(--color-gold-dark); }
.about__body {
  color: var(--color-ink-light);
  margin-bottom: var(--space-sm);
  max-width: 520px;
}
.btn--dark { display: inline-flex; margin-top: var(--space-sm); }
.about__visual { position: relative; }
.about__visual img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about__stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  max-width: 220px;
  box-shadow: var(--shadow-hover);
}
.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about__stat-label {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.5;
}
.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-cream-dark);
}
.about__value h3   { margin: 0.75rem 0 0.4rem; }
.about__value p    { font-size: 0.9rem; color: var(--color-ink-light); }
.about__value-num  {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-gold);
}

/* ============================================================
   14. DEVELOPMENTS GRID & CARDS
   ============================================================ */
.developments {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}
.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.dev-grid--full { /* for listing page — allow cards to be bigger */ }
.dev-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.dev-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.dev-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.dev-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
}
.dev-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.dev-card:hover .dev-card__image-wrap img { transform: scale(1.06); }
.dev-card__status {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  color: var(--color-white);
}
.dev-card__status--selling { background: var(--color-success); }
.dev-card__status--coming  { background: var(--color-gold-dark); }
.dev-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dev-card__name     { margin-bottom: 0.25rem; }
.dev-card__location {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  margin-bottom: 0.75rem;
}
.dev-card__desc {
  font-size: 0.9rem;
  color: var(--color-ink-light);
  margin-bottom: 1rem;
  flex: 1;
}
.dev-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--color-cream);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.dev-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold-dark);
  transition: color var(--transition);
  margin-top: auto;
}
.dev-card__link:hover { color: var(--color-ink); }

/* ============================================================
   15. DEV LISTING PAGE
   ============================================================ */

/* ── Intro header ── */
.dev-listing__intro {
  padding: var(--space-2xl) 0 0;
  background: var(--color-white);
}

/* ── Alternating development sections ── */
.dev-listing-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.dev-listing-section--alt {
  background: var(--color-cream);
}
.dev-listing-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

/* Text side */
.dev-listing-section__text .section-tag {
  margin-bottom: var(--space-sm);
  display: flex;
}
.dev-listing-section__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  color: var(--color-ink);
}
.dev-listing-section__desc {
  color: var(--color-ink-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  max-width: 500px;
}
.dev-listing-section__stats {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.dev-listing-section__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dev-listing-section__stats li strong {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
.dev-listing-section__stats li span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

/* Image side */
.dev-listing-section__image {
  position: relative;
}
.dev-listing-section__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: block;
  transition: transform 0.5s ease;
}
.dev-listing-section__image:hover img {
  transform: scale(1.02);
}
.dev-listing-section__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dev-listing-section__badge--selling {
  background: rgba(34,197,94,0.18);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.3);
}
.dev-listing-section__badge--coming {
  background: rgba(176,141,87,0.18);
  color: var(--color-gold-dark);
  border: 1px solid rgba(176,141,87,0.35);
}
.dev-listing-section__badge--sold {
  background: rgba(107,114,128,0.18);
  color: #374151;
  border: 1px solid rgba(107,114,128,0.25);
}

/* Legacy grid kept in case it's referenced elsewhere */
.dev-listing {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}
.dev-listing__why {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.dev-listing__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.dev-listing__why-item { text-align: center; }
.dev-listing__why-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-cream-dark);
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
}
.dev-listing__why-icon svg { width: 24px; height: 24px; color: var(--color-gold); }
.dev-listing__why-item h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.dev-listing__why-item p  { font-size: 0.88rem; color: var(--color-ink-light); }

.dev-listing__cta {
  padding: var(--space-xl) 0;
  background: var(--color-ink);
}
.dev-listing__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.dev-listing__cta-text h2 { color: var(--color-white); font-size: clamp(1.6rem, 3vw, 2.5rem); }
.dev-listing__cta-text p  { color: rgba(255,255,255,0.65); margin-top: 0.5rem; }

/* ============================================================
   16. AVAILABILITY TABLE
   ============================================================ */
.availability {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.avail-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-cream-dark);
}
.avail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.avail-table thead { background: var(--color-ink); color: var(--color-white); }
.avail-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.avail-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-cream);
  vertical-align: middle;
}
.avail-table tbody tr { transition: background var(--transition); }
.avail-table tbody tr:hover { background: var(--color-cream); }
.avail-table tbody tr:last-child td { border-bottom: none; }
.table-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.table-link--active { color: var(--color-gold-dark); }
.table-link:hover   { color: var(--color-ink); }
.avail-note {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--color-ink-muted);
}

/* ============================================================
   17. AREA GUIDE (legacy — kept for other pages)
   ============================================================ */
.area {
  padding: var(--space-2xl) 0 0;
  background: var(--color-cream);
}
.area__map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin-top: var(--space-lg);
}
.area__map {
  background: var(--color-cream-dark);
  overflow: hidden;
}
.area__map iframe { display: block; min-height: 500px; }
.area__highlights {
  background: var(--color-ink);
  padding: var(--space-lg) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}
.area__highlight {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  color: var(--color-white);
}
.area__highlight-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
}
.area__highlight-icon svg { width: 20px; height: 20px; color: var(--color-gold-light); }
.area__highlight h4  { margin-bottom: 0.25rem; }
.area__highlight p   { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   18. REGISTER / CTA SECTION (Homepage)
   ============================================================ */
.register {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}
.register__bg {
  position: absolute;
  inset: 0;
}
.register__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.register__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.93), rgba(26,26,26,0.78));
}
.register__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.register__text { color: var(--color-white); }
.register__text h2 { margin: 0.75rem 0 1.25rem; font-size: clamp(2rem, 4vw, 3rem); }
.register__text em { color: var(--color-gold-light); }
.register__text > p { color: rgba(255,255,255,0.7); max-width: 440px; }
.register__trust {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.register__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.register__trust-item svg {
  width: 18px; height: 18px;
  color: var(--color-gold-light);
  flex-shrink: 0;
}
.register__form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  position: relative;
}

/* ============================================================
   19. DEVELOPMENT HERO
   ============================================================ */
.dev-hero {
  position: relative;
  height: 75vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dev-hero__bg { position: absolute; inset: 0; }
.dev-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: devHeroZoom 18s ease-out forwards;
}
@keyframes devHeroZoom { to { transform: scale(1); } }
.dev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,42,72,0.78) 0%,
    rgba(18,42,72,0.62) 50%,
    rgba(18,42,72,0.75) 100%
  );
}
.dev-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(4rem, 10vw, 10rem) clamp(3rem, 8vh, 6rem);
  text-align: center;
}
.dev-hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-gold-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.dev-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.dev-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2rem;
}
.dev-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.dev-hero__actions .btn--outline {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.dev-hero__actions .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}

/* ============================================================
   20. DEV STATS BAR
   ============================================================ */
.dev-stats-bar {
  background: var(--color-ink);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dev-stats-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.dev-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.dev-stats-bar__item:last-child { border-right: none; }
.dev-stats-bar__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-gold-light);
  line-height: 1.2;
}
.dev-stats-bar__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* ============================================================
   21. DEV CONTENT SECTIONS (alternating text / image)
   ============================================================ */
.dev-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.dev-section--alt {
  background: var(--color-cream);
}
.dev-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.dev-section__text .section-tag {
  margin-bottom: var(--space-sm);
  display: flex;
}
.dev-section__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}
.dev-section__text p {
  color: var(--color-ink-light);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 520px;
}
.dev-section__image img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
  transition: transform 0.5s ease;
}
.dev-section__image:hover img {
  transform: scale(1.02);
}

/* ============================================================
   22. DEV FEATURES CARDS
   ============================================================ */
.dev-features {
  padding: var(--space-2xl) 0;
  background: var(--color-ink);
}
.dev-features .section-header .section-tag {
  background: rgba(176,141,87,0.15);
  color: var(--color-gold-light);
  border-color: rgba(176,141,87,0.3);
}
.dev-features .section-header .section-title {
  color: var(--color-white);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(176,141,87,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(176,141,87,0.12);
  border: 1px solid rgba(176,141,87,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-card__icon svg {
  width: 26px; height: 26px;
  color: var(--color-gold-light);
}
.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   23. GALLERY SLIDER
   ============================================================ */
.dev-gallery {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.gallery-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-slider__slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.gallery-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}
.gallery-slider__btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}
.gallery-slider__btn svg { width: 20px; height: 20px; }
.gallery-slider__btn--prev { left:  1.25rem; }
.gallery-slider__btn--next { right: 1.25rem; }
.gallery-slider__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.gallery-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.gallery-slider__dot.is-active {
  background: var(--color-white);
  transform: scale(1.35);
}

/* ============================================================
   24. DEV AREA GUIDE (full-width map)
   ============================================================ */
.dev-area {
  padding: var(--space-2xl) 0 0;
  background: var(--color-cream);
}
.dev-area .section-header {
  padding-bottom: var(--space-lg);
}
.dev-area__map {
  overflow: hidden;
  line-height: 0;
}
.dev-area__map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

/* ============================================================
   25. DEV CONTACT FORM
   ============================================================ */
.dev-contact {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.dev-contact .section-header {
  margin-bottom: var(--space-lg);
}
.dev-contact .section-header .section-tag--light {
  background: rgba(176,141,87,0.1);
  color: var(--color-gold);
  border-color: rgba(176,141,87,0.25);
}
.dev-contact__form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}
.dev-contact__form { position: relative; }
.dev-contact__form .form-success { background: var(--color-cream); }

/* ============================================================
   26. OTHER DEVELOPMENTS SECTION
   ============================================================ */
.other-developments {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

/* ============================================================
   27. ABOUT PAGE
   ============================================================ */
.about-page__story {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.about-page__story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-page__story-text .section-tag { margin-bottom: var(--space-sm); display: flex; }
.about-page__story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}
.about-page__story-text h2 em { color: var(--color-gold-dark); }
.about-page__story-text p {
  color: var(--color-ink-light);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  max-width: 520px;
}
.about-page__story-image img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.about-page__mv {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}
.about-page__mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.about-page__mv-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.about-page__mv-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.about-page__mv-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.about-page__mv-icon svg { width: 24px; height: 24px; color: var(--color-gold); }
.about-page__mv-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-sm);
}
.about-page__mv-card p { color: var(--color-ink-light); line-height: 1.8; }

.about-page__stats {
  padding: var(--space-xl) 0;
  background: var(--color-ink);
}
.about-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.about-page__stat { text-align: center; }
.about-page__stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-page__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.about-page__values {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.about-page__value { padding: var(--space-sm) 0; }
.about-page__value h3 { margin: 0.75rem 0 0.4rem; }
.about-page__value p  { font-size: 0.9rem; color: var(--color-ink-light); line-height: 1.7; }

.about-page__feature-row {
  overflow: hidden;
  background: var(--color-cream);
}
.about-page__feature-images {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 4px;
  max-height: 420px;
}
.about-page__feature-img { overflow: hidden; }
.about-page__feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-page__feature-img:hover img { transform: scale(1.05); }
.about-page__feature-img--tall { max-height: 460px; }

.about-page__cta {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}
.about-page__cta-inner { text-align: center; }
.about-page__cta-inner .section-tag { margin-bottom: var(--space-sm); justify-content: center; }
.about-page__cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.about-page__cta-inner p {
  color: var(--color-ink-light);
  max-width: 480px;
  margin: 0 auto 2rem;
}
.about-page__cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   28. CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-section__info .section-tag { margin-bottom: var(--space-sm); display: flex; }
.contact-section__info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: var(--space-sm);
}
.contact-section__info h2 em { color: var(--color-gold-dark); }
.contact-section__intro {
  color: var(--color-ink-light);
  margin-bottom: var(--space-md);
  max-width: 480px;
  line-height: 1.8;
}
.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.contact-section__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-section__detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  margin-top: 2px;
}
.contact-section__detail-icon svg { width: 18px; height: 18px; color: var(--color-gold); }
.contact-section__detail h3 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 500; margin-bottom: 0.2rem; }
.contact-section__detail a  { color: var(--color-gold-dark); font-size: 0.9rem; transition: color var(--transition); }
.contact-section__detail a:hover { color: var(--color-ink); }
.contact-section__detail p  { font-size: 0.88rem; color: var(--color-ink-light); line-height: 1.6; }
.contact-section__devs { margin-top: var(--space-md); }
.contact-section__devs h3 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-section__devs li { margin-bottom: 0.6rem; }
.contact-section__devs a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--color-ink-light);
  transition: color var(--transition);
}
.contact-section__devs a:hover { color: var(--color-gold-dark); }
.contact-section__devs strong { color: var(--color-ink); }
.contact-section__dev-status {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
}
.contact-section__dev-status--selling { background: #e8f5e9; color: var(--color-success); }
.contact-section__dev-status--coming  { background: #fff3e0; color: var(--color-reserved); }

.contact-section__form-wrap {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
  position: relative;
}
.contact-section__form { position: relative; }
.contact-section__form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}
.contact-section__form .form-success { background: var(--color-cream); }

.contact-map { background: var(--color-cream-dark); }

/* ============================================================
   29. FOOTER
   ============================================================ */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__address {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer__links-group h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links-group li { margin-bottom: 0.5rem; }
.footer__links-group a { font-size: 0.85rem; transition: color var(--transition); }
.footer__links-group a:hover { color: var(--color-gold-light); }
.footer__register-link { color: var(--color-gold-light) !important; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.75rem;
  opacity: 0.45;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* ============================================================
   30. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* — 1200px — */
@media (max-width: 1200px) {
  .dev-listing__why-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-page__values-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards          { grid-template-columns: repeat(2, 1fr); }
}

/* — 1024px — */
@media (max-width: 1024px) {
  .dev-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .about-page__stats-grid { grid-template-columns: repeat(3, 1fr); }
  .dev-stats-bar__item { padding: 0.5rem 1.5rem; }
}

/* — 768px — */
@media (max-width: 768px) {
  /* Hero — centre content vertically, restore normal padding, smaller text */
  .hero { align-items: center; }
  .hero__content {
    padding: clamp(1.25rem, 6vw, 2rem);
    padding-bottom: 0;
  }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero__subtitle { font-size: 0.9rem; margin-top: 1rem; line-height: 1.6; }
  .hero__actions { margin-top: 1.5rem; gap: 0.5rem; flex-wrap: nowrap; }
  .hero__actions .btn { font-size: 0.78rem; padding: 0.55rem 0.9rem; letter-spacing: 0.02em; }
  .dev-hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .dev-hero__subtitle { font-size: 0.9rem; }
  .dev-hero__actions { flex-wrap: nowrap; gap: 0.75rem; }

  /* Navigation mobile — full-screen overlay */
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    background: rgba(10, 13, 24, 0.97);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    list-style: none;
    margin: 0;
  }
  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links li { text-align: center; }
  .nav__links a {
    display: block;
    color: rgba(255,255,255,0.70) !important;
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    padding: 0.55rem 1.5rem;
    text-decoration: none;
    transition: color 0.18s;
    line-height: 1.15;
  }
  .nav__links a::after { display: none !important; }
  .nav__links a:hover,
  .nav__links a[aria-current="page"] { color: var(--color-white) !important; }

  .nav__cta {
    margin-top: 1.5rem !important;
    font-size: clamp(0.85rem, 3vw, 1rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    padding: 0.7rem 2rem !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.30) !important;
    border-radius: 50px !important;
    color: var(--color-white) !important;
    transition: background 0.18s, color 0.18s !important;
  }
  .nav__cta:hover {
    background: var(--color-white) !important;
    color: var(--color-ink) !important;
  }


  /* Layouts to single column */
  .about__grid        { grid-template-columns: 1fr; gap: var(--space-md); }
  .about__values      { grid-template-columns: 1fr; }
  .about__stat-card   { position: relative; bottom: auto; left: auto; margin-top: -2rem; margin-left: 1rem; }
  .dev-grid           { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .register__inner    { grid-template-columns: 1fr; }
  .form-row               { grid-template-columns: 1fr; }
  .dev-section__inner         { grid-template-columns: 1fr; gap: var(--space-md); }
  .dev-listing-section__inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .dev-listing-section__desc  { max-width: 100%; }
  .feature-cards          { grid-template-columns: 1fr 1fr; }
  .dev-area__map iframe   { height: 340px; }
  .about-page__story-inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .about-page__mv-grid { grid-template-columns: 1fr; }
  .about-page__values-grid { grid-template-columns: 1fr 1fr; }
  .about-page__stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-page__feature-images { grid-template-columns: 1fr 1fr; max-height: none; }
  .about-page__feature-img--tall { display: none; }
  .contact-section__grid { grid-template-columns: 1fr; }
  .area__map-section  { grid-template-columns: 1fr; }
  .area__map          { min-height: 280px; }
  .area__map iframe   { min-height: 280px; }
  .dev-stats-bar__inner { gap: 0; }
  .dev-stats-bar__item { padding: 0.5rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 50%; }
  .dev-stats-bar__item:nth-child(3), .dev-stats-bar__item:nth-child(4) { border-bottom: none; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .dev-listing__why-grid { grid-template-columns: 1fr 1fr; }
  .dev-listing__cta-inner { flex-direction: column; text-align: center; }
  .footer__top   { grid-template-columns: 1fr 1fr; }
  .footer__bottom{ flex-direction: column; text-align: center; }
  .gallery-slider__slide { aspect-ratio: 4/3; }

  /* Availability table stacked on mobile */
  .avail-table thead { display: none; }
  .avail-table,
  .avail-table tbody,
  .avail-table tr,
  .avail-table td { display: block; }
  .avail-table tr {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-cream);
  }
  .avail-table td {
    padding: 0.25rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
  }
  .avail-table td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--color-ink-muted);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  .avail-table td:last-child::before { content: ''; }

  /* Page banner */
  .page-banner       { height: 45vh; min-height: 360px; }
  .page-banner--short{ height: 40vh; min-height: 300px; }
  .dev-hero          { height: 65vh; min-height: 450px; }
}

/* — 600px — */
@media (max-width: 600px) {
  .about-page__values-grid { grid-template-columns: 1fr; }
  .about-page__stats-grid  { grid-template-columns: 1fr; gap: var(--space-sm); }
  .feature-cards           { grid-template-columns: 1fr; }
  .dev-listing__why-grid   { grid-template-columns: 1fr; }
  .about-page__feature-images { grid-template-columns: 1fr; }
}

/* — 480px — */
@media (max-width: 480px) {
  .hero__actions .btn   { flex: 1; min-width: 0; }
  .dev-hero__actions .btn { flex: 1; min-width: 0; }
  .about-page__cta-actions { flex-direction: column; align-items: center; }
  .dev-stats-bar__item  { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dev-stats-bar__item:last-child { border-bottom: none; }
  .gallery-slider__btn  { width: 36px; height: 36px; }
  .gallery-slider__btn svg { width: 16px; height: 16px; }
}

/* — 320px — */
@media (max-width: 320px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 0.75rem 1.5rem; }
}
