html {
  scroll-behavior: smooth;
}


:root {
  --brand-primary: #152D49;   
  --brand-secondary: #8F9FAC; 
  --brand-light: #ffffff;
  --accent-orange: #f5a623;    
  --accent-orange-soft: #ffd08a;
  --accent-teal: #00b3b8;      

  --text-main: #0e2742;
  --bg-light: #f5f7fb;
  --bg-alt: #eef2f7;
  --bg-land: #c0cad8;
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.06);
  --radius: 16px;
  --divider: #1f3b63;         
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 96px; 
  font-family: "Signika", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--brand-light);
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}


.section {
  padding: 60px 20px;
  scroll-margin-top: 96px; 
}

.section:first-of-type {
  
}


.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}




.section-homes .kicker,
.section-energy .kicker,
.section-land .kicker,
.section-developments .kicker {
  display: block;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand-primary);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1;
}

.section-homes .kicker span,
.section-land  .kicker span,
.section-cta   .kicker span {
  display: inline-block;
}




.section-homes .kicker span::after,
.section-land  .kicker span::after,
.section-cta   .kicker span::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0;
  background: currentColor;
}


.section-homes h2,
.section-energy h2,
.section-spec h2,
.section-land h2,
.section-developments h2 {
  text-align: center;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text-main);
}


.section-homes-intro,
.section-energy .energy-tagline,
.section-developments .text-muted {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



.desktop-break {
  display: none;
}

@media (min-width: 769px) {
  .desktop-break {
    display: inline;
  }
}


header {
  background: var(--brand-primary);
  color: var(--brand-light);
  padding: 12px 20px;
   
  box-shadow: 0 3px 8px rgba(0,0,0,0.18); 
  position: fixed;   
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 4px solid #fff;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}


.logo {
  height: 70px;
  width: auto;
}


nav {
  white-space: nowrap;
}


@media (min-width: 769px) {
  nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: static;
    background: transparent;
    padding: 0;
    border-bottom: none;
  }
}


nav a {
  color: var(--brand-light);
  margin: 0 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--brand-secondary);
}


header nav a .nav-label {
  position: relative;
  display: inline-block;
}

header nav a .nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: currentColor;
  transition: width 0.25s ease;
}

header nav a.active .nav-label::after {
  width: 100%;
}


.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.nav-toggle-bars {
  width: 18px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}


@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex; 
  }

  nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--brand-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px 12px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    display: none; 
  }

  header.nav-open nav {
    display: flex;
    border-bottom: 4px solid #fff;
  }

  nav a {
    margin: 0;
    padding: 6px 0;
    width: 100%;
  }
}


.top-slider {
  position: relative;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 96px;
  min-height: calc(100vh - 96px); 
  display: flex;
  align-items: stretch;
  width: 100%;
}


.top-slide-overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}


.hero-content-box {
  position: relative;
  z-index: 2;
  max-width: 620px;
  width: 100%;
  padding: 22px 24px 24px;
  border-radius: 18px;
  background: rgba(0,0,0,0.55); 
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: none;
}

.top-slider-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.top-slider-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 96px);
  height: 100%;
  overflow: hidden;
  border-radius: 0;  
  box-shadow: none; 
}


.top-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: calc(100vh - 96px);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.top-slide.active {
  opacity: 1;
}


.top-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: none;
  transform-origin: center;
  z-index: 1;
}


.top-slide::before {
  content: none !important;
}



@keyframes kenburns {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}


@keyframes kenburns-desktop {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.3);
  }
}




.top-slide-overlay {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 40px 32px;
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;    
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}


@supports (height: 100dvh) {
  .top-slider,
  .top-slider-container,
  .top-slide,
  .top-slide-overlay {
    min-height: calc(100dvh - 96px);
  }
}


.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 12px;}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
}


.hero-actions .btn {
  flex: 1 1 230px;
  max-width: 286px;
  text-align: center;
}


.top-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  z-index: 4;
  transition: background 0.2s ease;
}

.top-slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.top-slider-btn.prev {
  left: 14px;
}

.top-slider-btn.next {
  right: 14px;
}

.top-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.top-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.top-slider-dots .dot.active {
  background: #ffffff;
  width: 20px;
}


@media (max-width: 768px) {
  .top-slider {
    min-height: calc(100vh - 96px);
  }

  .top-slider-container {
    min-height: calc(100vh - 96px);
  }

  .top-slide,
  .top-slide-overlay {
    min-height: calc(100vh - 96px);
  }

  .top-slide-overlay {
    padding: 24px 18px 32px;
    max-width: 100%;
    justify-content: center;  
  }

  .hero-sub {
    margin-bottom: 18px;
  }

  .top-slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
}

 (ORIGINAL BOX STYLE)
   ========================= */
.hero {
  background: radial-gradient(circle at top left, #1c3a63, var(--brand-primary));
  color: var(--brand-light);
  padding-top: 60px;
  padding-bottom: 70px;
  text-align: center;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}




.hero-body {
  position: relative;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.16), rgba(10,20,40,0.92));
  padding: 20px 22px 24px;
  border-radius: 18px;
  font-size: 0.98rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.32);
  max-width: 760px;
  margin: 0 auto 16px auto;
  text-align: left;
}

.hero-body::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0.6;
  pointer-events: none;
}

.hero-body p {
  margin: 0 0 10px;
}

.hero-body p:last-child {
  margin-bottom: 0;
}


.hero-body-divider {
  height: 3px;
  width: 100%;
  margin: 14px auto 16px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.9),
    rgba(255,255,255,0)
  );
  opacity: 0.9;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
  color: #1f2933;
  border-color: rgba(0,0,0,0.04);
  box-shadow: 0 8px 16px rgba(245,166,35,0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(245,166,35,0.22);
  background: linear-gradient(135deg, #ffd9a3, #ff9c4d);
}

.btn-outline {
  background: transparent;
  color: var(--brand-light);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
}


.section-homes {
  background: var(--bg-light);
}

.section-homes-intro {
  margin-bottom: 26px;
}

@media (min-width: 1024px) {
  .section-homes-intro {
    white-space: nowrap;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


.homes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 800px) {
  .homes-grid {
    grid-template-columns: 1fr;
  }
}


.homes-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.homes-card li {
  margin-bottom: 4px;
}

.homes-card {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(21,45,73,0.06);
}

.homes-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.15rem;
  text-align: center;
  position: relative;
  display: block;
}



.homes-card p {
  margin: 0 0 4px;
}


.spec-sheet-wrapper {
  
  margin-bottom: 0;

  margin-top: 20px;
}

.spec-sheet {
  background: var(--bg-alt);
  max-width: 100%;
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(21,45,73,0.08);
  position: relative;
}


.spec-sheet-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spec-sheet-logo img {
  height: 40px;
  width: auto;
}

.spec-sheet-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  text-align: right;
}


.spec-scroll-hint {
  font-size: 0.8rem;
  color: #64748b;
  margin: 2px 0 8px;
  text-align: right;
  display: none;
}

@media (max-width: 768px) {
  .spec-scroll-hint {
    display: block; 
  }
}


.spec-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


.spec-scroll-content {
  width: 100%;
  min-width: 100%;
}

@media (min-width: 900px) {
  .spec-scroll-content {
  width: 100%;
  min-width: 100%;
}
}


.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: #111827;
}

.spec-table th,
.spec-table td {
  border: 1px solid #cbd5e1;
  padding: 6px 8px;
  vertical-align: top;
  word-wrap: break-word;
}


.spec-table thead th {
  background: var(--brand-primary);
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}


.spec-table th:first-child,
.spec-table td:first-child {
  width: 70%;
}

.spec-table th:nth-child(2),
.spec-table th:nth-child(3),
.spec-table td:nth-child(2),
.spec-table td:nth-child(3) {
  white-space: nowrap; 
}


.spec-table tbody tr td {
  background: #ffffff;
}

.spec-table td:last-child,
.spec-table th:last-child {
  text-align: right;
}

.spec-table .spec-label {
  font-weight: 600;
}


.spec-summary-row td {
  background: #DBDBDB !important;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}


.spec-tick {
  font-weight: 700;
  font-size: 1rem;
}


.spec-energy-heading {
  margin-top: 8px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

.spec-energy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-bottom: 12px;
  color: #111827;
}

.spec-energy-table th,
.spec-energy-table td {
  border: 1px solid #cbd5e1;
  padding: 4px 6px;
  word-wrap: break-word;
}


.spec-energy-table thead th {
  background: var(--brand-primary);
  color: #ffffff;
  text-align: center;
}

.spec-energy-table tbody th {
  background: #f8fafc;
  text-align: left;
  font-weight: 600;
}


.spec-energy-table .row-before-solar td {
  color: #b91c1c;
  font-weight: 600;
}


.spec-energy-table .row-total-saving td {
  color: #166534;
  font-weight: 600;
}

.spec-footnotes {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 6px;
}

.spec-footnotes p {
  margin: 2px 0;
}


@media (max-width: 768px) {
  .spec-sheet {
  background: var(--bg-alt);
  max-width: 100%;
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(21,45,73,0.08);
  position: relative;
}
  .spec-table th,
  .spec-table td,
  .spec-energy-table th,
  .spec-energy-table td {
    padding: 4px 4px;
    font-size: 0.8rem;
  }
}


.section-energy {
  background: var(--brand-light);
}

.energy-header {
  margin-bottom: 26px;
}

.section-energy-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .section-energy-cols {
    grid-template-columns: 1fr;
  }
}

.energy-tagline {
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 0;
}




.energy-pack-title {
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0 4px 0;
  padding-left: 26px;
}



.energy-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 10px;
}

.energy-list li {
  margin-bottom: 6px;
  padding-left: 26px;
  position: relative;
}

.energy-list li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--brand-primary);
}






.energy-box {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(21,45,73,0.08);
  height: 100%;
}



.energy-box p,
.energy-box li {
  color: #1f2933;
}

.energy-box .energy-list {
  margin-top: 6px;
}

.epc-table-wrapper {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(21,45,73,0.08);
  height: 100%;
}





.epc-table tbody tr:nth-child(odd) td {
  background: rgba(255,255,255,0.3);
}

.epc-table tbody tr:nth-child(even) td {
  background: rgba(224,231,255,0.3); 
}


.energy-box h3,
.epc-table-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
}



.epc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.epc-table th,
.epc-table td {
  padding: 8px 6px;
  text-align: left;
}

.epc-table th {
  font-weight: 600;
  border-bottom: 1px solid rgba(21,45,73,0.1);
}



.energy-spec-section {
  margin-top: 28px;
}


.energy-spec-feature-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 30px auto; 
}

.energy-spec-intro {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  background: radial-gradient(circle at top left, #233b66, #1f3b63);
  color: #ffffff;
  padding: 20px 22px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  border: 1px solid rgba(21,45,73,0.2);
  position: relative;
}

.energy-spec-intro::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

.energy-spec-intro p {
  margin: 14px 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.energy-spec-feature-box .energy-spec-intro p {
  margin: 14px 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


.energy-spec-divider {
  height: 3px;
  width: 100%;
  margin: 16px auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.9),
    rgba(255,255,255,0)
  );
  opacity: 0.9;
}


@media (max-width: 768px) {
  .energy-spec-feature-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 30px auto; 
}
  .energy-spec-intro {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  background: radial-gradient(circle at top left, #233b66, #1f3b63);
  color: #ffffff;
  padding: 20px 22px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  border: 1px solid rgba(21,45,73,0.2);
  position: relative;
}

.energy-spec-intro::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

.energy-spec-intro p {
  margin: 14px 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
}


.spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 18px;
}

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


.spec-card {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(21,45,73,0.08);
}

.spec-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}


.section-land {
  background: #DBDBDB;
}


.land-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}


.land-card {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,23,42,0.06);
}


.land-card-full {
  margin-top: 20px;
}

.land-cta-block {
  margin-top: 26px;
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,23,42,0.08);
  text-align: center;
}

.land-cta-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.land-cta-block p {
  margin: 0 0 12px;
}

.land-brochure-image {
  display:inline-block;
  max-width: 286px;
  width:100%;
  border-radius:12px;
  border:2px solid #000;
  overflow:hidden;
  margin:0 auto;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:0 0 0 2px #000, 0 0 22px rgba(255,255,255,0.92), 0 12px 24px rgba(0,0,0,0.20);
}



.land-cta-buttons {
  margin-top: 10px;
}


.section-developments {
  background: var(--brand-light);
}

.developments-placeholder {
  margin-top: 10px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(21,45,73,0.3);
  background: var(--bg-light);
}


.section-cta {
  background: var(--brand-primary);
  color: var(--brand-light);
  padding-top: 40px;
  padding-bottom: 120px; 
}

.section-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-cta .kicker {
  display: block;
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 2px;
}

.section-cta h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.section-cta p {
  margin-top: 0;
  margin-bottom: 18px;
}

.section-cta .hero-actions {
  justify-content: center;
}


.contact-form {
  max-width: 560px;
  margin: 24px auto 0 auto;
  text-align: left;
  background: rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
}

.contact-form-row {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.9);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.35);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
  width: 100%;
}


.contact-form-msg {
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 10px;
  display: none;
}

.contact-form-msg.error {
  display: block;
  background: #FEE2E2;
  color: #B91C1C;
}

.contact-form-msg.success {
  display: block;
  background: #DCFCE7;
  color: #166534;
}


footer {
  background: #0b1320;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 16px 10px;
  font-size: 0.9rem;
}


@media (hover: hover) and (pointer: fine) {
  .homes-card,
  .land-card,
  .spec-card,
  .developments-placeholder,
  .epc-table-wrapper,
  .energy-box {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .homes-card:hover,
  .land-card:hover,
  .spec-card:hover,
  .developments-placeholder:hover,
  .epc-table-wrapper:hover,
  .energy-box:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
  }
}



.land-cta-panel {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin: 24px 0 30px;
  padding: 22px 22px 26px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35); 
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,23,42,0.12);
  text-align: center;
}

.land-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/land-brochure-cover.webp') center/cover no-repeat;
  filter: none;
  opacity: 0.5; 
  z-index: 0;
}

.land-cta-panel > * {
  position: relative;
  z-index: 1;
}





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

.text-muted {
  color: #64748b;
  font-size: 0.95rem;
}
body, * {
  -webkit-touch-callout: none;
}

.land-cta-intro-block {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.land-cta-intro-block h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.land-cta-intro-block p {
  margin: 4px 0;
}

.land-cta-brochure-row {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.land-cta-intro-appraisal {
  text-align: center;
  margin: 6px 0 10px;
}

@media (min-width: 1024px) {
  .top-slide-bg {
  }
}






.land-cta-brochure-row {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.land-brochure-image {
  display:inline-block;
  max-width: 286px;
  width:100%;
  border-radius:12px;
  border:2px solid #000;
  overflow:hidden;
  margin:0 auto;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:0 0 0 2px #000, 0 0 22px rgba(255,255,255,0.92), 0 12px 24px rgba(0,0,0,0.20);
}



@media (hover: hover) and (pointer: fine) {
  .land-brochure-image:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 2px #000, 0 0 22px rgba(255,255,255,0.96);
}
}




.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(245,166,35,0.22);
  background: linear-gradient(135deg, #ffd9a3, #ff9c4d);
}




.land-cta-panel p,
.land-cta-panel h3 {
  text-shadow: 0 2px 4px rgba(0,0,0,0.55);
}


@media (max-width: 900px) {
  .land-grid { grid-template-columns: 1fr !important; }
}



.kicker {
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 14px;
}



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

.spec-energy-overall-table th,
.spec-energy-overall-table td {
  padding: 4px 8px;
  text-align: center;
}

.spec-energy-overall-table th {
  width: 25%;
}

.spec-energy-overall-table td {
  color: #166534;
  font-weight: 600;
}



.spec-overall-row th,
.spec-overall-row td {
  background: #f8fafc;
  color: #111827;
  font-weight: 600;
}

.spec-overall-row th {
  text-align: left;
}

.spec-overall-row .overall-sub {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: #4b5563;
}



.spec-sheet-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spec-sheet-title-left {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}


@media (max-width: 768px) {
  .spec-energy-table {
    table-layout: fixed;
    font-size: 0.78rem;
  }
  .spec-energy-table th,
  .spec-energy-table td {
    word-break: break-word;
  }
}


@media (max-width: 768px) {
  .spec-energy-table th,
  .spec-energy-table td {
    padding: 4px 3px;
  }
}


.spec-energy-table thead th:first-child {
  text-align: left;
}

@media (max-width:768px){
  .land-card-full img[src*="meeting.webp"]{
    width:100%!important;
    border-radius:0!important;
  }
}



.homes-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin: 8px 0 6px;
}

.homes-gallery-item {
  text-align: center;
}

.homes-gallery-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.homes-gallery-thumb {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

.homes-gallery-thumb img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {
  .homes-gallery-thumb img:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  }
}


.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-inner {
  position: relative;
  background: #0b1120;
  padding: 12px;
  border-radius: 16px;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 1;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 6px;
  right: 10px;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
  text-align: center;
}




.homes-intro, .homes-outro {
  text-align:center;
  font-size:1.05rem;
  color:#0f172a;
  margin:20px auto;
  max-width:800px;
}

.homes-highlight {
  margin: 32px auto 24px;
  padding: 18px 22px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21,45,73,0.05), rgba(21,45,73,0.12));
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}

.homes-intro, .homes-outro {
  text-align: center;
  font-size: 1.05rem;
  color: #0f172a;
  margin: 8px auto 18px;
  max-width: 860px;
}

.homes-intro {
  font-size: 1.1rem;
  font-weight: 500;
}

.homes-intro br + br {
  line-height: 2;
}

.homes-outro {
  font-size: 0.98rem;
  color: #1f2933;
}


@media (max-width: 768px) {
  .homes-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


@media (min-width: 769px) {
  .homes-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}


.homes-location {
  text-align: center;
  margin-top: 4px;
}


.spec-table th:nth-child(2),
.spec-table th:nth-child(3),
.spec-table td:nth-child(2),
.spec-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}


.spec-table td:last-child,
.spec-table th:last-child {
  text-align: center;
}


.mobile-stack{
    display:inline;
    white-space: normal;
}
@media(max-width:768px){
    .mobile-stack{
        display:block;
        text-align:center;
        white-space: normal;
    }
}




@media (min-width: 769px) {
  
}



.lightbox-trigger-plain {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: inline;
  width: auto;
}


button.lightbox-trigger-plain {
  margin-top: 0;
  width: auto;
}


b,
strong {
  font-weight: 400 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400 !important;
}


.top-slider {
  background: none !important;
}

.top-slide {
  background: none !important;
}

.top-slide-bg {
  opacity: 1 !important;
}

.top-slide-overlay {
  background: transparent !important;
}


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

  .hero-actions .btn {
    flex: 1 1 auto;
    max-width: none;
  }
}

@media (min-width: 701px) {
  .hero-actions {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 0 0 240px;
    max-width: 240px;
  }
}


.section-energy-cols > div {
  height: 100%;
}

.energy-box,
.epc-table-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.epc-table-wrapper table {
  flex: 1 1 auto;
}


@media (max-width: 700px) {
  .top-slide-overlay {
    align-items: flex-end;
    padding: 24px 16px 32px;
  }

  .hero-content-box {
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.15;
  }

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


.homes-cta-wrap {
  margin-top: 40px;
  text-align: center;
}

.homes-cta-actions {
  justify-content: center;
}

.btn-cta-register {
  background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
  color: #111827;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 20px rgba(245,166,35,0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-cta-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(245,166,35,0.3);
  background: linear-gradient(135deg, #ffd9a3, #ff9c4d);
}


.land-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}



.section-energy,
.section-energy .section-inner,
.section-energy .spec-sheet-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;

  margin-top: 20px;
}



.section-homes .section-energy {
  padding-top: 20px;
  padding-bottom: 0;
}


.section-energy-cols {
  margin-top: 18px;
}



.section-homes .section-energy {
  padding-top: 8px !important;
  margin-top: -10px;
}









.land-brochure-cta-v5a {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--brand-primary);
  color: #ffffff;
}

.land-brochure-banner.v5a {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
}

.banner-image.v5a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.banner-image.v5a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.banner-overlay.v5a {
  position: relative;
  padding: 26px 26px 26px 30px;
  background: linear-gradient(135deg, #0f172a, #152d49);
  display: flex;
  align-items: center;
}

.banner-logo-text.v5a {
  max-width: 380px;
}

.banner-brand.v5a {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.banner-logo-text.v5a h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  color: #f9fafb;
}

.banner-logo-text.v5a p {
  margin: 0 0 14px;
  color: #e5e7eb;
  line-height: 1.6;
}

.banner-cta-text.v5a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: #fbbf24;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.land-brochure-banner.v5a:hover .banner-image.v5a img {
  transform: scale(1.06);
}


.land-brochure-extra-cta.v5a {
  padding: 12px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: #020617;
}

.land-brochure-extra-cta.v5a span {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.land-brochure-btn.v5a {
  padding: 0.44rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.land-brochure-btn.v5a:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,23,42,0.35);
}


@media (max-width: 768px) {
  .land-brochure-banner.v5a {
    grid-template-columns: 1fr;
  }
  .banner-overlay.v5a {
    padding: 20px 18px;
  }
  .land-brochure-extra-cta.v5a {
    justify-content: center;
    text-align: center;
  }
}



.homes-gallery-group {
  margin: 28px 0 34px;
}

.homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}



.homes-gallery-group .homes-gallery-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


@media (max-width: 480px) {
  .homes-gallery-group .homes-gallery-thumb img {
    height: auto;
  }
}



.homes-gallery-group .homes-gallery-thumb img[src*="bungalows.webp"],
.homes-gallery-group .homes-gallery-thumb img[src*="3beds.webp"],
.homes-gallery-group .homes-gallery-thumb img[src*="4beds.webp"] {
  object-fit: contain;
  background: #ffffff;
}

.section-homes .homes-highlight {
  margin-top: 24px;
}









.split-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(15,23,42,0.14);
  margin-top: 14px;              
  background: #f7f9fc;           
}


.split-highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 56px;                  
  background: linear-gradient(135deg, #152D49, #1f3f6b);
  z-index: 0;
}


.split-highlight .homes-highlight-header {
  position: relative;
  z-index: 1;
  height: 56px;                  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;               
  text-align: center;
  background: transparent;
}


.split-highlight .homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}


.split-highlight .homes-gallery-group {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 10px 12px 14px;
}


.split-highlight .homes-gallery {
  margin-top: 0;
}


@media (max-width: 768px) {
  .split-highlight {
    box-shadow: 0 5px 14px rgba(15,23,42,0.13);
    margin-top: 10px;
  }

  .split-highlight::before {
    height: 50px;
  }

  .split-highlight .homes-highlight-header {
    height: 50px;
    padding: 0 10px;
  }

  .split-highlight .homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}

  .split-highlight .homes-gallery-group {
    padding: 8px 10px 12px;
  }
}
-highlight::before {
    height: 60px;
  }

  .split-highlight .homes-highlight-header {
    height: 60px;
    padding: 0 12px;
  }

  .split-highlight .homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}

  .split-highlight .homes-gallery-group {
    padding: 12px 12px 16px;
  }
}


.split-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(15,23,42,0.14);
  margin-top: 16px;
  background: #f7f9fc; 
}


.split-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, #152D49, #1f3f6b);
  z-index: 0;
}


.split-highlight .homes-highlight-header {
  position: relative;
  z-index: 1;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: transparent;
  text-align: center;
}


.split-highlight .homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}


.split-highlight .homes-gallery-group {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 14px 20px 18px;
}


.homes-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 4px;
}


.homes-gallery-group .homes-gallery-thumb img {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #000 !important;
  box-shadow: 0 10px 26px rgba(15,23,42,0.18);
}


@media (max-width: 768px) {
  .split-highlight::before {
    height: 62px;
  }

  .split-highlight .homes-highlight-header {
    height: 62px;
    padding: 0 14px;
  }

  .split-highlight .homes-gallery-group-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  top: -14px; 
  color: #ffffff; 
}

  .homes-gallery {
    gap: 10px;
  }

  .split-highlight .homes-gallery-group {
    padding: 12px 14px 16px;
  }
}





.top-slider {
  background: radial-gradient(circle at top left, rgba(245,166,35,0.09), transparent 55%),
              radial-gradient(circle at bottom right, rgba(21,45,73,0.55), #0b1220 75%);
}

.section-land,
.section-energy {
  background: linear-gradient(180deg, #f5f7fb 0%, #dde7f7 100%);
}


.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
  color: #1f2933;
  border-color: rgba(0,0,0,0.04);
  box-shadow: 0 8px 16px rgba(245,166,35,0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(245,166,35,0.22);
  background: linear-gradient(135deg, #ffd9a3, #ff9c4d);
}

.btn-outline {
  background: rgba(21,45,73,0.03);
  color: var(--brand-primary);
  border-color: rgba(21,45,73,0.45);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(21,45,73,0.92), #1f3f6b);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(15,23,42,0.35);
}


.btn-cta-register {
  background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
  color: #111827;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 20px rgba(245,166,35,0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-cta-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(245,166,35,0.3);
  background: linear-gradient(135deg, #ffd9a3, #ff9c4d);
}


.section-homes .kicker,
.section-energy .kicker,
.section-land .kicker,
.section-developments .kicker {
  color: var(--accent-orange);
}

.section-homes h2,
.section-energy h2,
.section-land h2,
.section-developments h2 {
  color: var(--brand-primary);
}


.section-homes .section-intro-bar,
.section-energy .section-intro-bar,
.section-land .section-intro-bar {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
}


.homes-card,
.energy-card,
.land-feature-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  border: 1px solid rgba(21,45,73,0.08);
  background-image:
    radial-gradient(circle at top left, rgba(21,45,73,0.06), transparent 55%);
}


.homes-gallery-group .homes-gallery-thumb img {
  box-shadow: 0 18px 40px rgba(15,23,42,0.25);
  border-color: rgba(15,23,42,0.12);
}


.site-footer {
  background: radial-gradient(circle at top left, rgba(245,166,35,0.09), transparent 50%),
              linear-gradient(135deg, #0b1220, #111827);
}

.site-footer a:hover {
  color: var(--accent-orange-soft);
}


.badge,
.tag-pill {
  background: linear-gradient(135deg, var(--accent-teal), #3bd5da);
  color: #062025;
}



.section-homes,
.section-land,
.section-energy,
.section-developments,
.section-cta {
  position: relative;
  z-index: 0;
}

.section-homes::after,
.section-land::after,
.section-energy::after,
.section-developments::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 80px;
  background:
    radial-gradient(circle at 0% 0%, rgba(245,166,35,0.18), transparent 60%),
    linear-gradient(135deg, rgba(15,23,42,0.98), rgba(21,45,73,0.92));
  transform-origin: center;
  transform: skewY(-3deg);
  opacity: 0.92;
  z-index: -1;
  pointer-events: none;
  animation: sectionWave 18s ease-in-out infinite alternate;
}


@media (max-width: 768px) {
  .section-homes::after,
  .section-land::after,
  .section-energy::after,
  .section-developments::after {
    bottom: -28px;
    height: 56px;
    transform: skewY(-4deg);
  }
}

@keyframes sectionWave {
  0% {
    transform: skewY(-3deg) translateY(0);
  }
  100% {
    transform: skewY(-4deg) translateY(4px);
  }
}



.section-homes,
.section-land,
.section-energy,
.section-developments {
  position: relative;
  padding-bottom: 96px; 
}


.section-homes::after,
.section-land::after,
.section-energy::after,
.section-developments::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100px;
  background: linear-gradient(180deg, #0b1220 0%, #111827 45%, transparent 100%);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}


@media (max-width: 768px) {
  .section-homes,
  .section-land,
  .section-energy,
  .section-developments {
    padding-bottom: 72px;
  }

  .section-homes::after,
  .section-land::after,
  .section-energy::after,
  .section-developments::after {
    height: 80px;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  }
}



.energy-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 0; 
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  border: 1px solid rgba(21,45,73,0.1);
}


.energy-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 72px;
  background: linear-gradient(135deg, #152D49, #1f3f6b);
  z-index: 0;
}


.energy-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 20px 20px 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}


.energy-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 4px 20px 18px;
  color: #1f2933;
  font-size: 0.98rem;
  line-height: 1.55;
}


@media (max-width: 768px) {
  .energy-card::before {
    height: 66px;
  }

  .energy-card h3 {
    padding: 18px 16px 12px;
    font-size: 1.15rem;
  }

  .energy-card p {
    padding: 4px 16px 16px;
  }
}



.section-homes,
.section-land,
.section-energy,
.section-developments {
  padding-bottom: 48px; 
}

.section-homes::after,
.section-land::after,
.section-energy::after,
.section-developments::after {
  content: none !important;
}



.section-homes,
.section-land,
.section-energy,
.section-developments {
  position: relative;
  padding-top: 80px;
  margin-top: 40px;
}

.section-homes::before,
.section-land::before,
.section-energy::before,
.section-developments::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  background: radial-gradient(circle at 50% 0, rgba(15,23,42,0.35), transparent 65%);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  animation: sectionGlow 20s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
  0% {
    opacity: 0.75;
    transform: translateY(0);
  }
  100% {
    opacity: 0.95;
    transform: translateY(4px);
  }
}



.section-energy-cols {
  gap: 26px;
}

.section-energy-cols > div {
  display: block;
}

.energy-box,
.epc-table-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  border: 1px solid rgba(21,45,73,0.1);
}


.energy-box::before,
.epc-table-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 68px;
  background: linear-gradient(135deg, #152D49, #1f3f6b);
  z-index: 0;
}


.energy-box h3,
.epc-table-wrapper .epc-table-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 18px 20px 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}


.energy-box p,
.energy-box ul,
.epc-table {
  position: relative;
  z-index: 1;
}

.energy-box p {
  margin: 0;
  padding: 4px 20px 14px;
  color: #1f2933;
  font-size: 0.98rem;
  line-height: 1.55;
}

.energy-box ul.energy-list {
  margin: 0;
  padding: 0 20px 10px 34px;
}

.epc-table {
  width: 100%;
  border-collapse: collapse;
  padding: 0 20px 16px;
}

.epc-table td {
  padding: 6px 18px;
}


@media (max-width: 768px) {
  .section-energy-cols {
    gap: 18px;
  }

  .energy-box::before,
  .epc-table-wrapper::before {
    height: 64px;
  }

  .energy-box h3,
  .epc-table-wrapper .epc-table-title {
    padding: 16px 16px 10px;
    font-size: 1.1rem;
  }

  .energy-box p {
    padding: 4px 16px 12px;
  }

  .energy-box ul.energy-list {
    padding: 0 16px 10px 30px;
  }

  .epc-table td {
    padding: 6px 12px;
  }
}



.section-homes,
.section-land,
.section-energy,
.section-developments,
.section-cta {
  position: static !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  margin-top: 0 !important;
}


.section-homes::before,
.section-homes::after,
.section-land::before,
.section-land::after,
.section-energy::before,
.section-energy::after,
.section-developments::before,
.section-developments::after,
.section-cta::before,
.section-cta::after {
  content: none !important;
}







.section-homes {
  border-bottom: 3px solid var(--brand-primary);
}





.section-homes,
.section-land,
.section-cta {
  box-sizing: border-box;
}





.section-homes h2,
.section-land h2,
.section-energy h2,
.section-developments h2 {
  color: var(--brand-primary) !important;
}


.section-homes .kicker,
.section-land .kicker {
  color: var(--brand-primary) !important;
}





@media (min-width: 769px) {
  nav a + a {
    position: relative;
    padding-left: 14px;
    margin-left: 6px;
  }
  nav a + a::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-light);
    opacity: 0.7;
    font-weight: 400;
  }
}


.epc-table-wrapper .epc-table-title {
  font-weight: 600;
}


.epc-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.epc-table tbody tr:nth-child(odd) td,
.epc-table tbody tr:nth-child(even) td {
  background-clip: padding-box;
}


@media (min-width: 769px) {
  nav a + a {
    position: static;
    padding-left: 0;
    margin-left: 0;
  }
  nav a + a::before {
    content: "";
    display: none;
  }
}





.split-highlight,
.energy-box,
.epc-table-wrapper,
.spec-sheet {
  position: relative;
   
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
  position: relative;
   
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}








.epc-table-wrapper:hover,
.energy-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}


.split-highlight .homes-gallery-group-title,
.energy-box h3,
.epc-table-wrapper .epc-table-title {
  padding-top: 8px;
  padding-bottom: 24px;
}



@media (max-width: 768px) {
  .homes-gallery {
    grid-template-columns: 1fr !important;
  }
}



@media (max-width: 768px) {
  .split-highlight .homes-gallery-group {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 16px !important;
  }
}



@media (max-width: 768px) {
  
  .section-energy .spec-sheet-wrapper,
  .section-energy .energy-box,
  .section-energy .epc-table-wrapper {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  
  .section-energy .spec-sheet {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}






.homes-gallery-group {
  margin-top: 10px !important;
  margin-bottom: 12px !important;
}


.split-highlight .homes-gallery-group {
  padding-top: 4px !important;
  padding-bottom: 6px !important;
}



.homes-gallery-thumb img {
    border: 1px solid #000 !important;
}



.homes-gallery-thumb img {
    box-shadow: 0 0 6px rgba(0,0,0,0.35) !important;
}



.homes-gallery-thumb img {
    border: 1px solid #000 !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.55) !important;
}


.homes-cta-wrap {
    margin-top: 10px !important;
}






@media (min-width: 769px) {
  .desktop-only { display: inline; }
}



.homes-card {
    position: relative;
    background: #fefaf6; 
    border-radius: 16px;
    padding: 14px 18px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 7px 18px rgba(0,0,0,0.12);
    overflow: hidden;
}


.homes-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
    z-index: 0;
}


.homes-card h3 {
    position: relative;
    z-index: 2;
    color: #111;
    margin-top: 6px;
    margin-bottom: 10px;
    font-weight: 600;
}


.homes-card p, 
.homes-card li {
    position: relative;
    z-index: 2;
}








.homes-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homes-card::before {
  height: 68px; 
  background-size: 160% 160%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
}


.homes-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.homes-card:hover::before {
  transform: scale(1.02);
  background-position: 100% 0;
}


.homes-card h3 {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 12px;
}





.homes-card p,
.homes-card ul,
.homes-card li {
    margin-top: 12px !important;
}



.homes-card p,
.homes-card ul,
.homes-card li {
    margin-top: 24px !important; 
}



.homes-card h3 {
    color: #ffffff !important;
}



.homes-card h3 {
    text-shadow: 0 2px 6px rgba(0,0,0,0.45) !important;
}



.homes-cta-wrap {
    margin-top: 0px !important;
}



@media (max-width: 768px) {
  header.nav-open nav {
    
    align-items: center;
    text-align: center;
    border-bottom: 4px solid #fff;
  }

  header.nav-open nav a {
    text-align: center;
  }
}



@media (max-width: 768px) {
  header.nav-open nav {
    
     
  
    border-bottom: 4px solid #fff;
  }
}



.mobile-only {display:inline;}
@media (min-width:769px){
  .mobile-only {display:none;}
}


.spec-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 16px 0;
  color: var(--text-main);
  text-align: center;
}




/* FINAL LAND OVERRIDE — guaranteed to apply */
.section-land {
    background: #DBDBDB;
}


/* FINAL LAND OVERRIDE */
.section-land {
    background: #DBDBDB !important;
}



/* desktop-only <br> */
.desktop-only-break {
    display: none;
}

@media (min-width: 992px) {
    .desktop-only-break {
        display: inline;
    }
}


/* Tighten spacing between section title and the intro paragraph */
.section-homes h2 + p,
.section-energy h2 + p,
.section-spec h2 + p,
.section-land h2 + p,
.section-developments h2 + p,
.section-cta h2 + p {
  margin-top: 0;
}


/* Extra tightening: section intro text sits close under heading */
.section-land .land-intro,
.section-homes p,
.section-energy p,
.section-developments p,
.section-cta p {
  margin-top: 0;
}
.section-land .land-intro {
  margin-bottom: 10px;
}


/* Ensure CONTACT kicker underline matches other pages */
.section-cta .kicker span::after{
  height: 2px;
  margin-top: 0;
  background: currentColor;
  opacity: 1;
}


/* Match CTA section spacing to other sections */
.section-cta h2{ margin-bottom: 2px; }
.section-cta h2 + p{ margin-top: 0; }


/* Brochure blue box: prevent transparency/bleed-through */
.land-brochure-panel,
.land-brochure-content,
.brochure-panel,
.brochure-box,
.land-brochure-right,
.brochure-right{
  background: #1f3b63 !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* === Make section title-to-intro spacing consistent across Homes / Land / Contact === */
.section-homes h2,
.section-land h2,
.section-cta h2 {
  margin-bottom: 2px !important;
}
.section-homes h2 + p,
.section-land h2 + p,
.section-cta h2 + p {
  margin-top: 0 !important;
}
/* Some intros use classes instead of adjacency */
.section-homes .section-homes-intro,
.section-land .land-intro {
  margin-top: 0 !important;
}


.banner-overlay.v5a{
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* Contact kicker: match Land underline spacing exactly */
.section-cta .kicker,
.section-cta .kicker span {
  line-height: 1 !important;
}

.section-cta .kicker{ padding: 0 !important; }


/* Make title-to-intro spacing identical across Homes / Land / Contact */
.section-homes h2,
.section-land h2,
.section-cta h2 {
  margin-bottom: 0 !important;
}
.section-homes h2 + p,
.section-land h2 + p,
.section-cta h2 + p,
.section-land .land-intro {
  margin-top: 0 !important;
}


/* Page titles (Homes / Land / Contact) — add a small gap below */
.section-homes .kicker,
.section-land .kicker,
.section-cta .kicker{
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

.section-homes .kicker span,
.section-land .kicker span,
.section-cta .kicker span{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

.section-homes .kicker span::after,
.section-land .kicker span::after,
.section-cta .kicker span::after{
  margin-top: 0 !important;
}


/* === Match Homes/Land title spacing to Contact (keep colours) === */
.section-homes .kicker,
.section-land .kicker{
  display: block;
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand-primary);
  margin-bottom: 10px !important; /* match requested 10px gap */
  line-height: 1 !important;
  padding: 0 !important;
}
.section-homes .kicker span,
.section-land .kicker span{
  display: inline-block;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.section-homes .kicker span::after,
.section-land .kicker span::after{
  margin-top: 0 !important;
  height: 2px;
  background: currentColor;
}
.section-homes h2,
.section-land h2{
  margin-top: 0 !important; /* remove any default top gap */
}


/* === TWEAK: Reduce orange & blue headers to HALF of ORIGINAL height (all sections) === */

/* ORANGE CARD HEADERS */
.homes-card::before{
  height: 40px !important; /* original ~80px */
}
.homes-card h3{
  height: 40px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ENERGY-SAVING + HIGH SPEC STANDARD SECTIONS */
.feature-card::before{
  height: 40px !important;
}
.feature-card h3{
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* BLUE SECTION HEADERS (e.g. Bungalows) */
.split-highlight::before{
  height: 50px !important; /* original ~100px */
}
.split-highlight .homes-highlight-header{
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* v18: Move text INSIDE the 'Our Homes' cards up by 30px (Energy Efficiency / High Specification / Quality You Can Trust) */
#our-homes .homes-card h3,
#our-homes .homes-card ul {
  
}

/* Reduce the leftover bottom gap created by the upward shift */
#our-homes .homes-card {
  padding-bottom: 0px !important;
}

/* v20: Reduce space between card titles and text by 10px */
#our-homes .homes-card h3 {
  margin-bottom: 6px !important;
}

/* v25: Split Homes cards into header + body containers for easy spacing control */
#our-homes .homes-card {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}

/* Disable the old orange bar pseudo-element so it can't overlap content */
#our-homes .homes-card::before {
  display: none !important;
}

/* Header bar */
#our-homes .homes-card-header {
  height: 46px;
  background: linear-gradient(135deg, var(--accent-orange), #ff7b39);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

#our-homes .homes-card-header h3 {
  margin: 0 !important;
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1;
  position: static !important;
  z-index: auto !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

/* Body */


#our-homes .homes-card-body ul {
  margin: 0 !important;
  padding-left: 18px;
}

#our-homes .homes-card-body li {
  margin-top: 12px;
}

/* v27: Generic header/body containers for non-orange cards (keeps existing backgrounds) */
.box-header{
  display:flex;
  align-items:center;
  justify-content:center;
}
.box-body{}

/* Energy box + EPC table: make spacing easy to tweak */
.section-energy-cols .energy-box .box-header{
  min-height: 46px; /* match the visual rhythm, but uses existing box background */
}
.section-energy-cols .energy-box .box-header h3{
  margin: 0 0 8px 0;
  text-align: center;
}
.section-energy-cols .energy-box .box-body > :first-child{
  margin-top: 0;
}

.section-energy-cols .epc-table-wrapper .box-header{
  min-height: 46px;
}
.section-energy-cols .epc-table-wrapper .box-header .epc-table-title{
  margin: 0;
  text-align: center;
}
.section-energy-cols .epc-table-wrapper .box-body{
  padding-top: 6px;
}

/* Gallery highlight cards: add body/header helpers WITHOUT any orange background */
.split-card-header{
  /* already flex centered; this class exists to give you one hook to tweak */
}
.split-card-body{
  /* hook for spacing control */
}

/* v30: Remove nudge + FORCE header heights (no ambiguity) */

/* Orange headers (first 3 cards) */
#our-homes .homes-card-header{
  height: 37px !important;
  min-height: 37px !important;
  max-height: 37px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Bungalows / Three / Four (blue headers) */
#our-homes .homes-highlight-header{
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Energy + EPC headers (50% smaller) */
.section-energy-cols .energy-box .box-header,
.section-energy-cols .epc-table-wrapper .box-header{
  height: 23px !important;
  min-height: 23px !important;
  max-height: 23px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* v31: Reduce BLUE bar height on Bungalows/Three/Four (it's split-highlight::before) */
#our-homes .split-highlight::before{
  height: 45px !important;
}

/* Keep the header container aligned to the bar */


/* v32: Fix Energy/EPC cards — header bar is the ::before element; reduce by 50% and prevent overlap */
.section-energy-cols .energy-box,
.section-energy-cols .epc-table-wrapper{
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;          /* let header/body control spacing */
}

/* Actual dark-blue bar */
.section-energy-cols .energy-box::before,
.section-energy-cols .epc-table-wrapper::before{
  height: 34px !important;        /* 68px -> 34px (50% smaller) */
}

/* Header container sits on top of the bar */
.section-energy-cols .energy-box .box-header,
.section-energy-cols .epc-table-wrapper .box-header{
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 2 !important;
  padding: 0 14px !important;
}

/* Make header text visually centered and consistent */
.section-energy-cols .energy-box .box-header h3,
.section-energy-cols .epc-table-wrapper .box-header .epc-table-title{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-align: center !important;
}

/* Body content starts BELOW the header bar */
.section-energy-cols .energy-box .box-body,
.section-energy-cols .epc-table-wrapper .box-body{
  position: relative !important;
  z-index: 2 !important;
  padding: 18px 18px 18px !important;
  background: transparent !important;
}

.section-energy-cols .energy-box .box-body > :first-child{
  margin-top: 0 !important;
}

/* v33: Apply the same header/body separation logic to BLUE (Bungalows/Three/Four) and ORANGE (first 3 cards) */

/* ---------- ORANGE cards (Energy Efficiency / High Specification / Quality You Can Trust) ---------- */
#our-homes .homes-card{
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Header bar controls its own height; body starts below */
#our-homes .homes-card-header{
  height: 37px !important;
  min-height: 37px !important;
  max-height: 37px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  position: relative !important;
  z-index: 2 !important;
}



/* ---------- BLUE highlight cards (Bungalows / Three-Bedroom / Four-Bedroom) ---------- */
/* The blue bar is an absolute ::before, so we control THAT height and match the header container to it */
#our-homes .split-highlight{
  position: relative !important;
  overflow: hidden !important;
}

/* 56px -> 45px (20% smaller) */
#our-homes .split-highlight::before{
  height: 45px !important;
}

/* Make the header area exactly the same height as the blue bar, so text stays centered */


/* Ensure the gallery body sits below the header and never tucks under the bar */
#our-homes .split-highlight .homes-gallery-group{
  position: relative !important;
  z-index: 2 !important;
  padding-top: 14px !important;
}

/* v34: Make BLUE (Bungalows/Three/Four) + ORANGE (first 3 cards) match Energy/EPC header style (small bar + perfect centering) */
:root{
  --compact-bar-height: 34px; /* matches Energy/EPC (68px -> 34px) */
}

/* ---------- ORANGE cards (Energy Efficiency / High Specification / Quality You Can Trust) ---------- */
#our-homes .homes-card-header{
  height: var(--compact-bar-height) !important;
  min-height: var(--compact-bar-height) !important;
  max-height: var(--compact-bar-height) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding: 0 14px !important;
  position: relative !important;
  z-index: 2 !important;
}

#our-homes .homes-card-header h3{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

/* Body starts clearly below header */


/* ---------- BLUE highlight cards (Bungalows / Three-Bedroom / Four-Bedroom) ---------- */
/* The BLUE bar is the ::before element — shrink it and match the header area */
#our-homes .split-highlight::before{
  height: var(--compact-bar-height) !important;
}





/* Ensure gallery content never tucks under the bar */
#our-homes .split-highlight .homes-gallery-group{
  padding-top: 18px !important;
}

/* v35: Nudge Bungalows / Three / Four title text UP by 3px */

/* v38: Make minimal, accurate tweaks */

/* ENERGY (orange 3 cards): keep same look, just bring body content up 10px */


/* BUNGALOWS / THREE / FOUR: true vertical centering (no nudges) */
#our-homes .split-highlight .homes-highlight-header{
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  position: relative !important;
  z-index: 2 !important;
}



/* v39: Make Energy-Saving Technology + High specification headers IDENTICAL (same element + same styling) */
.section-energy-cols .energy-box .box-header h3,
.section-energy-cols .epc-table-wrapper .box-header h3.epc-table-title{
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  color: #ffffff !important;
  text-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  text-align: center !important;
}

/* Override legacy epc-table-title styles (pre-header system) */
.epc-table-title{
  color: inherit !important;
  background: none !important;
  text-shadow: none !important;
  filter: none !important;
}

/* Bungalows / Three / Four: true centering with tiny optical correction (-1px) */

/* v40: Final precise adjustments */

/* ORANGE cards: move body text UP by 10px (keep padding intact) */


/* BUNGALOWS / THREE / FOUR: move title text UP by 2px */
#our-homes .split-highlight .homes-gallery-group-title{
  transform: translateY(-2px) !important;
}

/* v41: Correct spacing + font tweak */

/* ORANGE cards: keep original padding, move content up 10px WITHOUT removing padding */


/* Energy-Saving Technology + EPC boxes: slightly larger text */
.section-energy-cols .energy-box .box-body,
.section-energy-cols .epc-table-wrapper .box-body{
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}

/* v42: Orange cards — keep padding, move body content up 10px (nothing else touched) */
#our-homes .homes-card-body{
  padding: 18px 18px 18px !important; /* explicit, preserves padding */
}

#our-homes .homes-card-body-inner{
  transform: translateY(-10px) !important;
}

/* v42: Energy + High specification — ensure IDENTICAL + slightly bigger */
.section-energy-cols .energy-box .box-body,
.section-energy-cols .epc-table-wrapper .box-body{
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
}

/* EPC list (table cells) — match Energy paragraph text size */
.section-energy-cols .epc-table th,
.section-energy-cols .epc-table td{
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Place Energy Ratings card under the right column on desktop */
.section-energy-cols .spec-sheet-wrapper{grid-column: 2;
  margin-top: 20px;
}
@media (max-width: 900px){
  .section-energy-cols .spec-sheet-wrapper{grid-column: auto;
  margin-top: 20px;
}
}

@media (max-width: 768px){ header nav{ border-bottom:4px solid #fff !important; } }


/* Desktop-only extra spacing above footer on Contact section (restore v16 look) */
@media (min-width: 992px) {
  #contact.section-cta {
    padding-bottom: 190px !important;
  }
}
