:root {
  --bg: #f7f7f9;
  --bg-alt: #ffffff;
  --primary: #211f60; /* #2d7342 deep green */ 
  --primary-soft: rgba(45, 115, 66, 0.1);
  --text: #1f2933;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.12);
  --shadow-light: 0 10px 18px rgba(15, 23, 42, 0.06);
  
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

body { font-family: Inter, sans-serif; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

h1, h2, h3 {
  margin-top: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #211f60; /* use your green for headlines */
}

h1 {
  font-size: 3.4rem;     /* Hero title */
  line-height: 1.15;
}

h2 {
  font-size: 2.8rem;     /* Section headings */
  line-height: 1.2;
}

h3 {
  font-size: 2.1rem;     /* Sub-sections (Houses, Specs, etc.) */
  line-height: 1.25;
}

h4 {
  font-size: 1.6rem;     /* Cards / tables / blocks */
}

h5 {
  font-size: 1.25rem;    /* Small headings (Plan, Elevation, Gallery) */
}

h6 {
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.8rem; }
}

body {
  margin: 0;
  padding: 0;
}

.hero-section {
  margin: 0;
  padding: 0 0 3rem;
}

.hero-heroimage-wrapper {
  margin: 0;
  padding: 0;
  line-height: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 90px; /* adjust to your header height */
}

.section.alt-section {
  background: #f0f2f7;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  width: 200px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}

/* CONTACT SECTION */
.contact-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-logo-img {
  max-width: 260px;      /* adjust to your liking */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact2-logo-img {
  max-width: 100px;      /* adjust to your liking */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Space between multiple contact blocks */
.contact-wrapper + .contact-wrapper {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.contact-details {
  font-size: 1rem;
}

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

.contact-list li + li {
  margin-top: 0.75rem;
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .contact-logo-img {
    margin-bottom: 1rem;
  }
}


/* Header */

.site-header {
  position:sticky ;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(28,25,83, 0.8);
  /* background: rgba(45, 115, 66, 1); */
  border-bottom: 1px solid rgba(226, 232, 240, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 40px;   /* adjust this for size */
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
}

.logo-text {
  font-weight: 600;
  font-size: 2rem;
  color: #ffffff;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
  color: #ffffff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.top-banner {
  background: #2d7342;        /* choose your Oakmane brand colour */
  color: #ffffff;
  font-size: 0.85rem;
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  text-align: center;
}

.top-banner-dev {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-banner-location {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}


/* Hero / Overview */

.hero-section {
  padding: 0 0 3rem; /* top padding 0 so the image can sit right under the header */
}

/* .hero-heroimage-wrapper {
  width: 100%;
  overflow: hidden;
  max-height: 520px; /* adjust if you want more/less height */
/* } */ */

/* .hero-heroimage {
  width: 100%;
  display: block;
  object-fit: cover;
} */
 /* .hero-heroimage {
  width: 100%;
  height: auto;
  display: block;
}
.hero-heroimage-wrapper {
  max-height: none;
} */

.hero-heroimage-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: #000;
}

.hero-heroimage {
  width: 100%;
  height: auto; 
  display: block;
  /* object-fit: cover;
  object-position: center center; */
}

.hero-content {
  text-align: center;
}

.hero-text {
  margin: 0 auto;
  max-width: 720px; /* optional - makes the text narrower and cleaner */
}

@media (max-width: 768px) {
  .hero-heroimage-wrapper {
    max-height: 380px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* .hero-text h1 { */
  /* font-size: 2.4rem; */
  /* margin: 1 0 1rem; */
  /* text-align: center; */
/* } */

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}

.hero-text h1::after {
  content: "";
  width: 200px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.hero-highlights li::before {
  content: "• ";
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    border-color 0.1s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-light);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.ghost {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-light)
}

.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Image cards */

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.image-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0.75rem 0.5rem;
}

.image-placeholder {
  border-radius: calc(var(--radius-xl) - 6px);
  background: linear-gradient(135deg, #dbeafe, #e5e7eb);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d7342;
  font-weight: 600;
  font-size: 0.95rem;
}

.image-placeholder.small {
  min-height: 130px;
}

.image-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-plan-overview-image,
.house-image-final-img {
  max-width: 800px;      /* or 800 / 700 — you choose */
  width: 100%;           /* responsive scaling */
  height: auto;
  display: block;
  margin: 0 auto;        /* centre the image */
  border-radius: 16px;   /* optional – looks nice */
}

.house-type-image,
.house-image-final-img {
  max-width: 800px;      /* or 800 / 700 — you choose */
  width: 100%;           /* responsive scaling */
  height: auto;
  display: block;
  margin: 0 auto;        /* centre the image */
  border-radius: 16px;   /* optional – looks nice */
}

/* Site plan / house details */

.site-plan-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.site-plan,
.house-details {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.site-plan h3,
.house-details h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-plan-overview {
  margin-top: 3rem;
}

.site-plan-overview-image {
  width: 100%;
  height: auto;
  display: block;
}


/* 1 row of 12 on larger screens */
.site-plan-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
}

.site-plan-house {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.35rem;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
}

.site-plan-house span.house-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hide the type text inside the tiny boxes */
.site-plan-house span.house-type {
  display: none;
}

.site-plan-house:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.site-plan-house.active {
  border-color: var(--primary);
  background: #e0f3e7;
}

/* Make it wrap nicely on smaller screens */
@media (max-width: 1024px) {
  .site-plan-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* House details panel */

.house-details {
  padding: 1.75rem;
}

.house-details-content {
  margin-top: 1.2rem;
}

.house-plan-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.house-details-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.house-details-header h4 {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-muted);
}

.badge.active {
  border-color: #16a34a3d;
  color: #211f60;
  background: #dcfce7;
}

.badge.notyet {
  border-color: #f973163d;
  color: #ea580c;
  background: #ffedd5;
}

.badge.sold {
  border-color: #ef44443d;
  color: #b91c1c;
  background: #fee2e2;
}

.house-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
}

.house-details-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.house-details-meta-item {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.house-details-meta-item span.label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: #9ca3af;
}

.house-details-meta-item span.value {
  font-weight: 600;
  color: var(--text);
}

.house-details-image {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-light);
}

.house-details-image .image-placeholder {
  min-height: 130px;
  font-size: 0.9rem;
}

/* New house details layout */
.house-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr); /* left bigger, right smaller */
  gap: 1.5rem;
  align-items: start;
}

.house-details-left h5,
.house-details-right h5 {
  margin: 1.2rem 0 0.6rem;
  font-size: 1.05rem;
}

/* Right column shouldn’t be huge */
.house-details-right {
  max-width: 420px;         /* keeps the elevation column from getting too wide */
  justify-self: end;        /* anchors it to the right on desktop */
}

/* Make the elevation image smaller and consistent */
.house-front-image {
  width: 100%;
  height: 320px;            /* fixed height so it doesn’t become massive */
  object-fit: cover;        /* keeps it looking good */
  display: block;
  border-radius: 12px;
}

/* On smaller screens, let it breathe */
@media (max-width: 900px) {
  .house-details-right {
    max-width: none;
    justify-self: stretch;
  }

  .house-front-image {
    height: 260px;
  }
}

/* Plan sits under text nicely */
.house-plan-block {
  margin-top: 1rem;
}

/* Mobile: stack elevation under content */
@media (max-width: 900px) {
  .house-details-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
.showhouse-gallery {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.showhouse-gallery h5 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

/* Full-width nice grid that fits the page */
.gallery-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)); /* desktop: 6 across */
  gap: 0.75rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.gallery-item img {
  width: 100%;
  height: 130px;         /* consistent thumbnails */
  object-fit: cover;
  display: block;
  transition: transform 0.15s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* tablet: 4 */
  }
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* small tablet: 3 */
  }
  .gallery-item img {
    height: 140px;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* phone: 2 */
  }
  .gallery-item img {
    height: 155px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  z-index: 9999;
  padding: 1.5rem;
}

.lightbox.show {
  display: grid;
  touch-action: pan-y;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  border: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

@media (max-width: 600px) {
  .lightbox-nav { width: 46px; height: 46px; font-size: 30px; }
}

/* General houses description */

.house-general {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.house-general-text p {
  color: var(--text-muted);
}

/* Houses table */

.houses-table-wrapper h3 {
  margin-bottom: 1rem;
}

.table-scroll {
  border-radius: var(--radius-xl);
  overflow: auto;
  box-shadow: var(--shadow-soft);
  background: var(--bg-alt);
}

.houses-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  text-align: center;
}


.houses-table th,
.houses-table td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.houses-table th {
  background: #f9fafb;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.houses-table tr:nth-child(even) td {
  background: #fbfcff;
}

.houses-table a {
  color: var(--primary);
  font-weight: 500;
}

.table-note {
  margin-top: 0.6rem;
  text-align: center;
}

/* House Specs */

.house-specs {
  margin-top: 3rem;
}

.house-specs h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.spec-card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.spec-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.spec-card li + li {
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Proximities Table */
.proximities {
  margin-top: 3rem;
}

.proximities h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.proximities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.proximities-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.proximities-card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.proximities-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.proximities-table th,
.proximities-table td {
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid var(--border);
}

.proximities-table th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .proximities-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.maps-block {
  margin-top: 2.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  max-width: 1280px;     /* wider than before */
  margin-left: auto;
  margin-right: auto;
}

.maps-block h4 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

/* Bigger, more prominent map */
.map-embed {
  position: relative;
  width: 100%;
  height: 520px;         /* <-- key change */
  border-radius: 18px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Slightly smaller on mobile so it doesn’t dominate */
@media (max-width: 768px) {
  .map-embed {
    height: 380px;
  }
}

.map-note {
  margin-top: 0.75rem;
  text-align: center;
}

.map-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.map-note a:hover {
  text-decoration: underline;
}

/* Final House Image */
.house-image-final {
  margin-top: 3rem;
}

.house-image-final-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Register form */

.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.required {
  color: #dc2626;
  margin-left: 0.1rem;
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: #f9fafb;
}

textarea {
  border-radius: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-soft);
  background: #ffffff;
}

.form-footer {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.small {
  font-size: 0.78rem;
}

.form-message {
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

/* Footer */

.site-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .site-plan-wrapper,
  .house-general {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-section {
    padding-top: 0rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .site-plan-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
