/* ===================================
   Bakerview West Business Park
   Styles — Polished Edition
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-navy: #1a2744;
  --color-navy-light: #243556;
  --color-blue: #2c5f8a;
  --color-blue-light: #3a7ab5;
  --color-gold: #c4973b;
  --color-gold-light: #d4ab52;
  --color-white: #ffffff;
  --color-off-white: #f7f8fa;
  --color-gray-100: #eef0f3;
  --color-gray-200: #dde1e7;
  --color-gray-400: #8e95a2;
  --color-gray-600: #555d6e;
  --color-gray-800: #2d3342;
  --color-text: #333a47;
  --color-text-light: #5c6374;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1140px;
  --nav-height: 72px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-blue-light); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(196, 151, 59, 0.3);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(196, 151, 59, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(26, 39, 68, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo:hover { color: var(--color-gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-links li a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
}
.nav-cta:hover {
  background: var(--color-gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-navy);
  overflow: hidden;
  padding: calc(var(--nav-height) + 48px) 24px 96px;
}

.hero-map-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.3) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0.45) 0%,
    rgba(26, 39, 68, 0.65) 50%,
    rgba(26, 39, 68, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-location {
  font-size: 0.95rem;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-off-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.stat-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.15;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}

/* --- Features Row --- */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.feature:hover {
  background: rgba(196, 151, 59, 0.04);
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* --- Site Plan --- */
.siteplan-wrap {
  background: var(--color-white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  overflow: hidden;
}

.siteplan-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.siteplan-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.siteplan-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 28px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legend-swatch {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.legend-office { background: #d4a843; }
.legend-flex { background: #e8e8e0; }
.legend-retail { background: #c0392b; }

.legend-label {
  font-size: 1.1rem;
  color: var(--color-navy);
  font-weight: 700;
  white-space: nowrap;
}

.legend-label small {
  font-weight: 500;
  color: var(--color-gray-600);
  margin-left: 6px;
  font-size: 0.9rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

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

/* --- Property Cards --- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.property-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card-header {
  padding: 28px 24px;
  color: var(--color-white);
  position: relative;
}
.property-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.property-card-header.office { background: #d4a843; }
.property-card-header.flex { background: #e8e8e0; color: var(--color-navy); }
.property-card-header.flex::after { background: rgba(0, 0, 0, 0.08); }
.property-card-header.retail { background: #c0392b; }

.property-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  opacity: 0.7;
}

.property-card-header h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.property-card-header.flex .property-card-icon,
.property-card-header.flex h3,
.property-card-header.flex .property-card-acres {
  color: var(--color-navy);
}

.property-card-acres {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 600;
}

.property-card-body {
  padding: 24px;
}

.property-card-body ul {
  list-style: none;
}

.property-card-body li {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.95rem;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}
.property-card-body li:last-child { border-bottom: none; }
.property-card-body li::before {
  content: '\2014';
  color: var(--color-gold);
  margin-right: 10px;
  font-weight: 600;
}

/* --- Design Standards --- */
.design-standards {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.design-standards h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 28px;
  text-align: center;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.standard-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.standard-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* --- Location --- */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.advantage {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-200);
  transition: padding-left 0.2s ease;
}
.advantage:last-child { border-bottom: none; }
.advantage:hover {
  padding-left: 8px;
}

.advantage h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.advantage h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.advantage p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.location-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* --- Phases --- */
.phases-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.phases-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gray-200) 100%);
}

.phase-card {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.phase-card:last-child { margin-bottom: 0; }

.phase-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(26, 39, 68, 0.3);
}

.phase-content {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  flex: 1;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-left: 3px solid transparent;
}
.phase-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-gold);
}

.phase-content h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.phase-pct {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
}

.phase-sf {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  font-weight: 600;
  margin-bottom: 16px;
}

.phase-content ul {
  list-style: none;
}

.phase-content li {
  padding: 5px 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
}
.phase-content li::before {
  content: '\2022';
  color: var(--color-gold);
  margin-right: 10px;
  font-weight: 700;
}

.phase-note {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 20px 28px;
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
  box-shadow: var(--shadow-sm);
}

/* --- Investment --- */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.invest-card {
  text-align: center;
  padding: 36px 16px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius);
  color: var(--color-white);
  transition: transform 0.3s ease;
}
.invest-card:hover {
  transform: translateY(-3px);
}

.invest-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.invest-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  opacity: 0.75;
  font-weight: 600;
}

.investment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.invest-detail-col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.invest-table {
  width: 100%;
  border-collapse: collapse;
}

.invest-table th,
.invest-table td {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.invest-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.invest-table th:first-child { border-radius: 8px 0 0 0; }
.invest-table th:last-child { border-radius: 0 8px 0 0; }

.invest-table td {
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-text-light);
}

.invest-table tr:last-child td { border-bottom: none; }
.invest-table tr:hover td { background: rgba(196, 151, 59, 0.03); }

.invest-detail-col ul {
  list-style: none;
}

.invest-detail-col li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 0.95rem;
  color: var(--color-text-light);
}
.invest-detail-col li:last-child { border-bottom: none; }
.invest-detail-col li::before {
  content: '\2713';
  color: var(--color-gold);
  margin-right: 10px;
  font-weight: 700;
}

.buyer-financing {
  background: linear-gradient(135deg, var(--color-off-white) 0%, #eef1f5 100%);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  border: 1px solid var(--color-gray-200);
}

.buyer-financing h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.buyer-financing p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(196, 151, 59, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  padding-top: 8px;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-block p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.contact-info-block a {
  color: var(--color-blue);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.2s ease;
  font-weight: 500;
}
.footer-links a:hover { color: var(--color-gold-light); }

.footer-legal {
  font-size: 0.8rem;
  opacity: 0.5;
}

.disclaimer {
  max-width: 600px;
  margin-top: 8px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* --- Form Success --- */
.form-success {
  text-align: center;
  padding: 56px 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* --- Scroll Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Active Nav Link --- */
.nav-links li a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .investment-details {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
    padding: calc(var(--nav-height) + 24px) 16px 56px;
  }

  .hero h1 {
    white-space: normal;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-location {
    font-size: 0.8rem;
  }

  .hero-map-bg {
    width: 500%;
    height: 500%;
  }

  .section {
    padding: 64px 0;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-number { font-size: 1.8rem; }

  .design-standards {
    padding: 24px;
  }

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

  .google-map {
    min-height: 280px;
  }

  .phases-timeline::before { left: 20px; }
  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .phase-card { gap: 16px; }
  .phase-content { padding: 20px; }

  .investment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .invest-value { font-size: 1.5rem; }

  .invest-table th,
  .invest-table td {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

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

  .contact-form {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .siteplan-wrap {
    padding: 8px;
  }

  .siteplan-actions {
    flex-direction: column;
    align-items: center;
  }

  .siteplan-legend {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 16px;
  }

  .footer-links {
    gap: 16px;
  }
}
