:root {
  --brand-green: #666b4a;
  --brand-blue: #0053a4;
  --brand-gold: #d69100;
  --slate-grey: #4a4a4a;
  --eco-ivory: #f5f3ef;
  --white: #ffffff;
  --ink: #273126;
  --line: rgba(102, 107, 74, 0.16);
  --font-heading: "Manrope", Arial, sans-serif;
  --font-body: "Karla", Arial, sans-serif;
  --radius-large: 25px;
  --radius-small: 8px;
  --radius-pill: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* legacy Edge/IE */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  background: #eaf0e2;
  color: var(--slate-grey);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* legacy Edge/IE */
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--brand-green);
  font-family: var(--font-heading);
  line-height: 1.15;
}

header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 1.5rem 5%;
  position: fixed;
  top: 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  width: 100%;
  z-index: 1000;
}

header.scrolled {
  background: rgba(102, 107, 74, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 1rem 5%;
}

.logo {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  position: relative;
  z-index: 1001;
}

.logo img {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
}

.logo-location {
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-family: "Work Sans", var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  padding-left: 14px;
}

.nav-pill {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(245, 243, 239, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  display: flex;
  padding: 6px;
}

.nav-pill ul {
  display: flex;
  gap: 5px;
  list-style: none;
}

.nav-pill a {
  border-radius: var(--radius-pill);
  color: #fff;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 18px;
  transition: background 0.25s ease;
}

.nav-pill a:hover,
.nav-pill .active a {
  background: var(--brand-blue);
}

.header-right {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  position: relative;
  z-index: 1001;
}

.hamburger {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.hamburger span {
  background: var(--slate-grey);
  border-radius: 2px;
  height: 2px;
  width: 18px;
}

.sticky-enquire {
  display: none;
}

.mobile-menu {
  align-items: center;
  background: var(--brand-green);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 0 0 28px;
}

.mobile-menu a {
  color: var(--eco-ivory);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.btn-fill {
  align-items: center;
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  padding: 14px 28px;
  position: relative;
  transition: color 0.45s ease, box-shadow 0.25s ease;
}

.btn-fill:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.btn-text {
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.btn-dot {
  border-radius: 50%;
  height: 32px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  width: 32px;
  z-index: 1;
}

.btn-fill:hover .btn-dot {
  transform: translateY(-50%) scale(40);
}

.btn-ivory {
  background: #f06400;
  color: #fff;
}

.btn-ivory .btn-dot {
  background: #fff;
}

.btn-ivory:hover {
  color: var(--brand-green);
}

.btn-green {
  background: var(--brand-green);
  color: var(--eco-ivory);
}

.btn-green .btn-dot {
  background: var(--brand-gold);
}

.btn-green:hover {
  color: var(--brand-green);
}

.btn-orange {
  background: rgba(102, 107, 74, 0.88);
  color: #fff;
  cursor: default;
  border: 1px solid rgba(245, 243, 239, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.btn-orange .btn-dot {
  background: #fff;
}

.btn-orange:hover {
  color: #fff;
}

.coming-soon-pill {
  margin-top: 0;
  margin-bottom: 56px;
  pointer-events: none;
}

.btn-gold {
  background: var(--brand-gold);
  color: #fff;
}

.btn-gold .btn-dot {
  background: #fff;
}

.btn-gold:hover {
  color: var(--brand-green);
}

.hero {
  align-items: center;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.hero.rounded {
  border-radius: 0 0 var(--radius-large) var(--radius-large);
}

/* Homepage hero: anchor the coming-soon pill to the bottom so it doesn't cover the video */
.hero:not(.barefoot-hero) {
  align-items: flex-end;
}

.hero:before {
  background: linear-gradient(to top, rgba(8, 46, 41, 0.84), rgba(8, 46, 41, 0.34) 55%, rgba(0, 0, 0, 0.48));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-img {
  animation: slowZoom 20s ease-out forwards;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.05);
  width: 100%;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 920px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.intro-label {
  color: #0077BE;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.hero:not(.barefoot-hero) .intro-label {
  backdrop-filter: blur(14px);
  background: rgba(245, 243, 239, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 9px 18px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 300;
  max-width: 720px;
}

.hero-line {
  background: linear-gradient(to bottom, var(--brand-gold), transparent);
  bottom: 0;
  height: 14vh;
  left: 50%;
  opacity: 0.7;
  position: absolute;
  width: 1px;
  z-index: 2;
}

.barefoot-hero {
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5% 7vh;
  text-align: left;
}

.barefoot-hero:before {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 22%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(to top, rgba(8, 28, 25, 0.68) 0%, rgba(8, 28, 25, 0.26) 28%, rgba(8, 28, 25, 0) 56%);
}

.barefoot-hero-content {
  align-items: flex-start;
  max-width: 650px;
  padding: 0;
}

.barefoot-hero-content .intro-label {
  margin-bottom: 1rem;
}

.barefoot-hero-content h1 {
  margin-bottom: 0.9rem;
}

.barefoot-hero-content .hero-sub {
  color: rgba(255, 255, 255, 0.84);
  max-width: 520px;
}

.barefoot-hero-meta {
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 360px;
  position: relative;
  text-align: right;
  z-index: 2;
}

.barefoot-hero-meta p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
}

.site-container {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 5%;
}

.section-padding {
  padding-bottom: 56px;
  padding-top: 56px;
}

.section-title {
  color: var(--brand-green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 26px;
}

.subtext {
  color: var(--slate-grey);
  font-size: clamp(1.02rem, 2vw, 1.13rem);
  font-weight: 300;
  line-height: 1.8;
}

.vertical-line {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.about-grid,
.split-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.about-grid.align-start {
  align-items: start;
}

.approach-panel {
  align-items: stretch;
  background: #f0c8a8;
  border-radius: var(--radius-large);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 58px 0 58px 0;
}

.approach-copy {
  padding: 58px 8%;
}

.approach-copy .subtext + .subtext {
  margin-top: 18px;
}

.approach-right {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
}

.approach-image {
  border-radius: var(--radius-large);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.approach-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}

.approach-points {
  border-top: 1px solid var(--line);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.approach-points article {
  border-right: 1px solid var(--line);
  padding: 30px 32px 34px;
}

.approach-points article:last-child {
  border-right: 0;
}

.approach-points span {
  color: var(--brand-gold);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.approach-points h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.approach-points p {
  font-size: 0.96rem;
  line-height: 1.65;
}

.image-card {
  border-radius: var(--radius-large);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.image-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-band {
  background: var(--brand-green);
  border-radius: var(--radius-large);
  color: var(--eco-ivory);
  overflow: hidden;
}

.feature-band h2,
.feature-band h3 {
  color: var(--brand-gold);
}

.feature-band .subtext {
  color: rgba(245, 243, 239, 0.82);
}

.feature-header {
  padding: 56px 6% 36px;
}

.feature-images {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  padding: 0 6%;
}

.feature-images img {
  height: 330px;
}

.feature-footer {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: 40px 6% 58px;
}

.feature-footer .image-card img {
  min-height: 320px;
}

.stat-pills,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: var(--eco-ivory);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 8px 16px;
}

.tag {
  background: rgba(102, 107, 74, 0.08);
  border: 1px solid rgba(102, 107, 74, 0.16);
  border-radius: var(--radius-pill);
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 8px 16px;
}

#portfolio {
  padding-top: 0;
}

.portfolio-intro {
  margin-bottom: 40px;
  max-width: 760px;
}

#communities {
  padding-bottom: 40px;
}

#barefoot {
  padding-top: 112px;
}

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

.project-card {
  background: #f0c8a8;
  border-radius: var(--radius-small);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.07);
  color: inherit;
  display: block;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.project-card:hover {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

.project-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.project-card-body {
  padding: 20px;
}

.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.project-card p {
  font-size: 0.94rem;
}

.services-grid,
.amenity-grid,
.config-grid,
.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.service-block,
.amenity-item,
.config-card,
.stat-block {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 34px 30px;
}

.service-block:last-child,
.amenity-item:nth-child(3n),
.stat-block:last-child {
  border-right: 0;
}

.service-block h3,
.amenity-item h3,
.config-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-block ul,
.clean-list {
  list-style: none;
  margin-top: 18px;
}

.service-block li,
.clean-list li {
  border-top: 1px solid var(--line);
  padding: 11px 0;
}

.inventory-banner {
  background: var(--brand-green);
  color: var(--eco-ivory);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 18px 5%;
  text-align: center;
}

.inventory-banner strong {
  color: var(--brand-gold);
}

.stats-section {
  background: #fff;
}

.stats-intro {
  margin: 0 auto 54px;
  max-width: 840px;
  text-align: center;
}

.stats-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-block {
  border-bottom: 0;
  text-align: center;
}

.stat-num {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.spec-row {
  align-items: center;
  border-bottom: 1px solid rgba(102, 107, 74, 0.1);
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
  padding: 50px 0;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row.reverse .spec-image {
  order: 2;
}

.spec-row.reverse .spec-content {
  order: 1;
}

.spec-image {
  border-radius: var(--radius-large);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.spec-image img {
  height: 470px;
  object-fit: cover;
  width: 100%;
}

.spec-tag,
.material-tag {
  color: var(--brand-gold);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.spec-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.spec-checklist {
  list-style: none;
  margin-top: 22px;
}

.spec-checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.spec-checklist li:before {
  color: var(--brand-green);
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 800;
}

.materials-section {
  background: #fff;
  border-radius: var(--radius-large);
}

.materials-inset {
  padding-left: 6%;
  padding-right: 6%;
}

.materials-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.amenity-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.amenity-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 190px;
  text-align: center;
}

.amenity-item:nth-child(4n) {
  border-right: 0;
}

.amenity-icon {
  align-items: center;
  background: rgba(102, 107, 74, 0.08);
  border: 1px solid rgba(102, 107, 74, 0.14);
  border-radius: 50%;
  color: var(--brand-green);
  display: inline-flex;
  height: 68px;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 68px;
}

.amenity-icon svg {
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 32px;
}

.amenity-item:hover .amenity-icon {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-3px);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.gallery-offset {
  margin-top: 46px;
}

.spaceart-panel {
  align-items: stretch;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.spaceart-copy {
  align-self: center;
}

.spaceart-logo {
  background: var(--brand-green);
  border-radius: var(--radius-pill);
  height: auto;
  margin-bottom: 28px;
  padding: 14px 18px;
  width: min(230px, 100%);
}

.spaceart-copy .subtext + .subtext {
  margin-top: 16px;
}

.spaceart-copy .btn-fill {
  margin-top: 26px;
}

.quote-line {
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 20px;
}

.small-quote {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  margin-bottom: 0;
}

.gallery-grid img {
  border-radius: var(--radius-small);
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.gallery-grid .large {
  grid-row: span 2;
  height: 538px;
}

.contact-band {
  background: var(--brand-green);
  color: var(--eco-ivory);
}

.contact-band h2,
.contact-band h3 {
  color: #fff;
}

.contact-band .intro-label {
  color: #fff;
}

#ecosystem .intro-label {
  font-weight: 800;
}

.contact-band .subtext {
  color: rgba(245, 243, 239, 0.8);
}

.contact-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-small);
  color: var(--slate-grey);
  padding: 34px;
}

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

.form-grid input:not([type="radio"]),
.form-grid select,
.form-grid textarea {
  background: var(--eco-ivory);
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  color: var(--slate-grey);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #2f3426;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  padding: 26px 5%;
  text-align: center;
}

.project-header {
  display: flex;
  justify-content: space-between;
}

.back-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 8px;
}

.project-hero {
  align-items: flex-end;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  height: 82vh;
  justify-content: flex-start;
  min-height: 560px;
  overflow: hidden;
  padding: 120px 5% 72px;
  position: relative;
  text-align: left;
}

.project-hero:after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.14) 26%, rgba(0, 0, 0, 0) 50%),
    linear-gradient(to top, rgba(8, 28, 25, 0.72) 0%, rgba(8, 28, 25, 0.28) 32%, rgba(8, 28, 25, 0) 62%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.project-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.project-hero .hero-content {
  align-items: flex-start;
  max-width: 760px;
  padding: 0;
  text-align: left;
}

.project-hero .hero-content h1 {
  margin-bottom: 0.85rem;
}

.project-hero .hero-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 620px;
}

.project-status {
  background: var(--brand-gold);
  border-radius: var(--radius-pill);
  color: #fff;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 6px 15px;
  text-transform: uppercase;
}

.project-main {
  margin: 0 auto;
  max-width: 1100px;
  padding: 80px 5%;
}

.project-details-grid {
  display: grid;
  gap: 76px;
  grid-template-columns: 1.5fr 1fr;
}

.project-section-title {
  color: var(--brand-green);
  font-size: 2rem;
  margin-bottom: 24px;
  padding-bottom: 15px;
  position: relative;
}

.project-section-title:after {
  background: var(--brand-gold);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
}

.project-spacer-title {
  margin-top: 50px;
}

.features-list {
  list-style: none;
  margin-top: 28px;
}

.features-list li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.features-list li:before {
  color: var(--brand-gold);
  content: "+";
  font-family: var(--font-heading);
  font-weight: 800;
  left: 0;
  position: absolute;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.info-item {
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  color: var(--brand-gold);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.info-value {
  color: var(--brand-green);
  font-size: 1.08rem;
  font-weight: 600;
}

.project-gallery {
  margin-top: 80px;
}

.video-section {
  margin-top: 80px;
  text-align: center;
}

.video-shell {
  aspect-ratio: 16 / 9;
  background: var(--brand-green);
  border-radius: var(--radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.video-shell iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.slider-container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slide-item {
  flex: 0 0 100%;
  padding: 0 10px;
  scroll-snap-align: start;
}

.slide-content {
  aspect-ratio: 3 / 2;
  background: #e0e0e0;
  border-radius: var(--radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.slide-content img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.slider-controls {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}

.slider-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--brand-green);
  border-radius: 50%;
  color: var(--brand-green);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  height: 50px;
  justify-content: center;
  transition: all 0.25s ease;
  width: 50px;
}

.slider-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

/* ── Hero badge ─────────────────────────────────────────── */
.hero-badge {
  background: var(--brand-gold);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding: 6px 16px;
  text-transform: uppercase;
}

/* ── About section ───────────────────────────────────────── */
.about-section .approach-panel {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-section .approach-copy .subtext + .subtext {
  margin-top: 18px;
}

/* ── Barefoot panel ─────────────────────────────────────── */
.barefoot-panel {
  background: #f0c8a8;
  border-radius: var(--radius-large);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 54px 7%;
}

.barefoot-panel .intro-label {
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 8px 18px;
}

.barefoot-panel .section-title {
  margin-bottom: 18px;
}

.barefoot-lede {
  color: var(--slate-grey);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
}

/* Full-bleed editorial lead image (breaks out of the panel padding) */
.barefoot-lead {
  border-radius: var(--radius-large);
  margin: 44px -7% 0;
  overflow: hidden;
  position: relative;
}

.barefoot-lead img {
  display: block;
  height: clamp(320px, 56vh, 560px);
  object-fit: cover;
  transition: transform 0.9s ease;
  width: 100%;
}

.barefoot-lead:hover img {
  transform: scale(1.04);
}

.barefoot-lead::after {
  background: linear-gradient(to top, rgba(8, 28, 25, 0.58), rgba(8, 28, 25, 0.12) 26%, rgba(8, 28, 25, 0) 46%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* Figure strip overlaid on the lead image */
.barefoot-figures {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  left: 0;
  padding: 22px 7% 26px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4px 14px;
  position: relative;
  text-align: center;
}

/* Hairline divider that fades at both ends (less table-like, more editorial) */
.figure:not(:first-child)::before {
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26) 50%, rgba(255, 255, 255, 0));
  bottom: 2px;
  content: "";
  height: 52px;
  left: 0;
  position: absolute;
  width: 1px;
}

.figure-num {
  color: var(--eco-ivory);
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(20, 14, 6, 0.55);
}

/* Qualitative entry: compact two-line display, not a giant numeral */
.figure-text .figure-num {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

.figure-unit {
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-left: 5px;
  text-transform: uppercase;
  vertical-align: 0.42em;
}

.figure-label {
  color: rgba(255, 255, 255, 0.92);
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 8px;
  text-shadow: 0 1px 3px rgba(10, 8, 4, 0.9), 0 1px 14px rgba(10, 8, 4, 0.6);
  text-transform: uppercase;
}

/* Figures reveal in sequence when the panel scrolls into view */
@media (prefers-reduced-motion: no-preference) {
  .barefoot-panel.is-visible .figure {
    animation: figReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .barefoot-panel.is-visible .figure:nth-child(1) {
    animation-delay: 0.18s;
  }

  .barefoot-panel.is-visible .figure:nth-child(2) {
    animation-delay: 0.28s;
  }

  .barefoot-panel.is-visible .figure:nth-child(3) {
    animation-delay: 0.38s;
  }

  .barefoot-panel.is-visible .figure:nth-child(4) {
    animation-delay: 0.48s;
  }

  .barefoot-panel.is-visible .figure:nth-child(5) {
    animation-delay: 0.58s;
  }
}

@keyframes figReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Supporting image pair */
/* Copy (left) + image carousel (right) */
.barefoot-showcase {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: 44px;
}

.barefoot-copy .barefoot-note {
  margin: 0;
  max-width: none;
  text-align: left;
}

.barefoot-copy .barefoot-note + .barefoot-note {
  margin-top: 20px;
}

.barefoot-carousel {
  position: relative;
}

.carousel-viewport {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-large);
  box-shadow: 0 24px 50px rgba(35, 43, 26, 0.16);
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.9s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-arrow {
  align-items: center;
  background: rgba(20, 24, 16, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease;
  width: 38px;
  z-index: 2;
}

.carousel-arrow svg {
  height: 20px;
  width: 20px;
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-arrow:hover {
  background: rgba(20, 24, 16, 0.62);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.carousel-dot {
  background: rgba(102, 107, 74, 0.28);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 0.35s ease, width 0.35s ease;
  width: 8px;
}

.carousel-dot.is-active {
  background: var(--brand-green);
  border-radius: 4px;
  width: 24px;
}

/* Video carousel (Voices of GoodEarthians) */
.video-carousel {
  margin: 44px auto 0;
  max-width: 560px;
  position: relative;
}

.video-viewport {
  aspect-ratio: 16 / 9;
  background: #14140f;
  border-radius: var(--radius-large);
  box-shadow: 0 24px 50px rgba(35, 43, 26, 0.16);
  overflow: hidden;
  position: relative;
}

.video-slide {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.5s ease;
}

.video-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-slide iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.barefoot-note {
  color: var(--slate-grey);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
}

.barefoot-note + .barefoot-note {
  margin-top: 18px;
}

/* Value cards */
.barefoot-values {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.value-card {
  background: var(--eco-ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 18px 20px;
}

.value-head {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.value-ico {
  color: var(--brand-green);
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.value-card h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
}

.value-card p {
  color: var(--slate-grey);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.barefoot-panel .video-section {
  margin-top: 56px;
}

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

@media (prefers-reduced-motion: reduce) {
  .barefoot-lead img,
  .carousel-slide {
    transition: none;
  }

  .barefoot-lead:hover img {
    transform: none;
  }
}

@media (max-width: 720px) {
  .barefoot-lead {
    margin-left: -6%;
    margin-right: -6%;
  }

  .barefoot-figures {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 6% 18px;
    row-gap: 14px;
  }

  /* First item in each row (starts a new line) has no divider */
  .figure:nth-child(3)::before {
    display: none;
  }

  .figure:nth-child(5) {
    grid-column: 1 / -1;
  }

  .figure:nth-child(5)::before {
    display: none;
  }

  .barefoot-showcase {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .barefoot-values {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio 3-column grid ─────────────────────────────── */
.portfolio-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ecosystem-subcaption {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 500;
  margin-bottom: 10px;
}

/* ── Ecosystem ──────────────────────────────────────────── */
.ecosystem-layout {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 440px;
  overflow: hidden;
}

.ecosystem-nav {
  background: var(--eco-ivory);
  border-right: 1px solid var(--line);
}

.ecosystem-nav ul {
  list-style: none;
}

.ecosystem-nav-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  transition: background 0.22s ease, color 0.22s ease;
}

.ecosystem-nav-item:last-child {
  border-bottom: 0;
}

.ecosystem-nav-item:hover {
  background: rgba(102, 107, 74, 0.06);
}

.ecosystem-nav-item.active {
  background: var(--brand-green);
}

.ecosystem-nav-item.active .eco-num,
.ecosystem-nav-item.active .eco-name {
  color: #fff;
}

.primary-service .eco-name {
  font-weight: 700;
}

.eco-num {
  color: var(--brand-gold);
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 2px;
}

.eco-name {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.ecosystem-content {
  padding: 42px 44px;
  position: relative;
}

.eco-panel {
  display: none;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.eco-panel.active {
  display: grid;
}

.eco-panel:not(:has(.eco-panel-image)).active {
  display: block;
}

.eco-panel-body h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.eco-panel-body .subtext {
  line-height: 1.8;
}

.eco-panel-image {
  min-height: 220px;
}

.eco-panel-image img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin: 10px auto 0;
  max-width: 760px;
}

.testimonial-card {
  background: #f0c8a8;
  border-radius: var(--radius-small);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  padding: 22px 20px;
}

.testimonial-quote {
  color: var(--slate-grey);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-quote::before {
  color: var(--brand-gold);
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-style: normal;
  line-height: 0;
  vertical-align: -0.6rem;
}

.testimonial-name {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Contact updates ─────────────────────────────────────── */
.contact-info .subtext + .subtext {
  margin-top: 14px;
}

.contact-address {
  margin-bottom: 4px;
}

.contact-phones {
  line-height: 1.9;
}

.contact-email {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map-link {
  color: var(--brand-gold);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-map-link:hover {
  opacity: 0.78;
}

.span-full {
  grid-column: 1 / -1;
}

/* ── Phone field ────────────────────────────────────────── */
.phone-field-wrapper {
  display: flex;
  gap: 8px;
}

.country-code-select {
  color: var(--brand-green);
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding-left: 6px;
  padding-right: 4px;
  width: 110px !important;
}

.phone-field-wrapper input[name="PhoneNumber_countrycode"] {
  flex: 1;
  width: auto !important;
}

/* ── Consent checkbox ───────────────────────────────────── */
.form-consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
}

.form-consent input[type="checkbox"] {
  accent-color: var(--brand-green);
  flex-shrink: 0;
  height: 16px;
  margin-top: 3px;
  min-height: unset;
  padding: 0;
  width: 16px;
}

.form-consent label {
  color: var(--slate-grey);
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.55;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.form-consent a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Form radio buttons ─────────────────────────────────── */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-radio-label {
  color: var(--slate-grey);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-radio-label em {
  color: #c0392b;
  font-style: normal;
}

.form-radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-radio-pill {
  align-items: center;
  background: var(--eco-ivory);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  gap: 6px;
  padding: 8px 16px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.form-radio-pill input[type="radio"] {
  display: none;
}

.form-radio-pill:has(input:checked) {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.form-radio-pill:hover {
  border-color: var(--brand-green);
}

/* ── Enquire modal ──────────────────────────────────────── */
.modal-overlay {
  align-items: center;
  background: rgba(27, 38, 25, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  max-height: 90vh;
  max-width: 620px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 44px 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  background: var(--eco-ivory);
  border: 0;
  border-radius: 50%;
  color: var(--slate-grey);
  cursor: pointer;
  font-size: 1.4rem;
  height: 36px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 0.2s ease;
  width: 36px;
}

.modal-close:hover {
  background: var(--line);
}

.modal-title {
  color: var(--brand-green);
  font-size: 1.5rem;
  margin-bottom: 24px;
  margin-top: 8px;
}

.modal-card .form-grid {
  gap: 12px;
}

.modal-card .form-grid input:not([type="radio"]):not([type="checkbox"]),
.modal-card .form-grid select {
  background: var(--eco-ivory);
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  color: var(--slate-grey);
  font: inherit;
  min-height: 46px;
  padding: 11px 14px;
  width: 100%;
}

.modal-card .form-grid input:not([type="radio"]):not([type="checkbox"]):focus {
  border-color: var(--brand-green);
  outline: none;
}

.form-success-state {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  text-align: center;
}

.form-success-icon {
  align-items: center;
  background: var(--brand-green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.form-success-heading {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.form-success-text {
  color: var(--slate-grey);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

.form-success-container {
  align-items: center;
  display: flex !important;
  justify-content: center;
  min-height: 320px;
}

@media (max-width: 600px) {
  .modal-card {
    padding: 32px 22px;
  }
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .amenity-item:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .amenity-item:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 1024px) {
  header {
    grid-template-columns: 1fr auto;
  }

  .nav-pill {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 720px;
  }

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

  .ecosystem-nav {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .eco-panel {
    grid-template-columns: 1fr;
  }

  .eco-panel-image {
    min-height: 240px;
  }

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

  .barefoot-hero {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 720px;
    padding-bottom: 52px;
  }

  .barefoot-hero-meta {
    align-items: flex-start;
    margin-top: 22px;
    max-width: 520px;
    text-align: left;
  }

  .about-grid,
  .split-grid,
  .project-details-grid,
  .approach-panel,
  .about-section .approach-panel,
  .spaceart-panel,
  .feature-footer,
  .spec-row,
  .spec-row.reverse,
  .materials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .spec-row.reverse .spec-image,
  .spec-row.reverse .spec-content {
    order: initial;
  }

  .approach-copy {
    padding: 28px 7%;
  }

  .approach-right {
    padding: 0 7% 28px;
  }

  .approach-image {
    min-height: 280px;
  }

  .approach-points {
    grid-template-columns: 1fr;
  }

  .approach-points article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-points article:last-child {
    border-bottom: 0;
  }

  .feature-images,
  .stats-grid,
  .services-grid,
  .config-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-images img,
  .feature-footer .image-card img,
  .spec-image img {
    height: 280px;
    min-height: 0;
  }

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

  .gallery-grid .large {
    grid-column: 1 / -1;
    height: 340px;
  }
}

@media (max-width: 600px) {
  :root {
    --radius-large: 14px;
  }

  header {
    padding: 1rem 5%;
  }

  .logo img {
    height: 32px;
  }

  .logo-location {
    font-size: 0.82rem;
    padding-left: 12px;
  }

  #enquireBtn {
    display: none;
  }

  .sticky-enquire {
    background: var(--brand-green);
    border: 0;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    left: 0;
    letter-spacing: 2px;
    padding: 18px;
    position: fixed;
    right: 0;
    text-transform: uppercase;
    z-index: 998;
  }

  .hero {
    align-items: flex-end;
    height: auto;
    min-height: 85vh;
    padding-bottom: 80px;
  }

  .hero:not(.barefoot-hero) .intro-label {
    font-size: 0.7rem;
    padding: 7px 14px;
  }

  .hero h1 {
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-sub {
    line-height: 1.55;
  }

  .approach-copy {
    padding-top: 0;
  }

  .barefoot-hero {
    min-height: 680px;
    padding-bottom: 42px;
  }

  .section-padding {
    padding-bottom: 44px;
    padding-top: 44px;
  }

  #communities {
    padding-bottom: 30px;
  }

  .feature-header,
  .feature-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .feature-images,
  .portfolio-grid,
  .portfolio-grid-3,
  .stats-grid,
  .services-grid,
  .amenity-grid,
  .config-grid,
  .gallery-grid,
  .form-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .barefoot-panel {
    padding: 40px 6%;
  }

  .ecosystem-content {
    padding: 30px 24px;
  }

  .eco-panel.active {
    display: block;
  }

  .eco-panel-image {
    margin-top: 24px;
  }

  .feature-images .image-card:nth-child(2) {
    display: none;
  }

  .gallery-grid img,
  .gallery-grid .large {
    height: 280px;
  }

  .service-block,
  .amenity-item,
  .config-card,
  .stat-block {
    border-right: 0;
  }
}
