/*
Theme Name: Inspired Spaces
Author: Natnael Abebe (nathanielabebe32@gmail.com)
Version: 2.0
*/

:root {
  --ink: #1c1c1c;
  --ink-soft: #4d4d4d;
  --sand: #f5f1ec;
  --bone: #fbf9f6;
  --stone: #e3dbd2;
  --ocean: #2f5b63;
  --olive: #5b6a5e;
  --gold: #c2a57b;
  --shadow: 0 18px 60px rgba(22, 22, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf9f6 0%, #ffffff 40%, #f1ece6 100%);
  min-height: 100vh;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.section--tight {
  padding: clamp(32px, 5vw, 64px) 0;
}

.section--muted {
  background: var(--sand);
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--olive);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--ocean);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(47, 91, 99, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 91, 99, 0.25);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--ocean);
  color: var(--ocean);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  animation: headerReveal 0.65s ease both;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--gold));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.2rem;
}

.site-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  color: var(--ink);
}

.site-nav a:hover {
  color: var(--ocean);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(251, 249, 246, 0.95), rgba(251, 249, 246, 0.65) 55%, rgba(251, 249, 246, 0.2));
  z-index: 0;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  padding: clamp(70px, 10vw, 140px) 0;
  z-index: 1;
}

.hero__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media img,
.home-card img,
.gallery img {
  transition: transform 0.45s ease;
}

.hero__media:hover img,
.home-card:hover img,
.gallery img:hover {
  transform: scale(1.035);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lede {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.home-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.home-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-card__body {
  flex: 1;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 91, 99, 0.1);
  color: var(--ocean);
  font-size: 0.8rem;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.spec-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.enquiry-card {
  max-width: 760px;
  margin: 0 auto;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.spec-list span {
  color: var(--ink);
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery img {
  border-radius: 18px;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.cta-band {
  background: var(--ocean);
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 42px);
  display: grid;
  gap: 14px;
}

.cta-band p {
  color: #f5f3ef;
}

.site-footer {
  padding: 48px 0 24px;
  background: #141818;
  color: #f4f1ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer-grid p,
.footer-grid a {
  color: #d9d3cc;
}

.footer-bottom {
  margin-top: 28px;
  font-size: 0.85rem;
  color: #b7b0a8;
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 860px) {
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .hero__grid {
    padding-top: 80px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav ul {
    justify-content: flex-start;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Property detail pages */
.house-detail-page {
  background: #fff;
  color: #111;
  padding: clamp(44px, 6vw, 76px) 0 clamp(72px, 9vw, 120px);
}

.house-detail-page .container {
  width: min(1160px, 92vw);
}

.house-detail-page p,
.house-detail-page li {
  color: inherit;
}

.house-detail-page img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.house-detail-page h1,
.house-detail-page h2,
.house-detail-page h3 {
  color: inherit;
}

.highlife-page,
.homestead-page {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

.highlife-page h1,
.highlife-page h2,
.homestead-page h1,
.homestead-page h2 {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
}

.highlife-container,
.homestead-container {
  max-width: 1080px;
}

.highlife-section,
.homestead-section {
  max-width: 1020px;
  margin: 0 auto;
}

.highlife-hero,
.homestead-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 70px;
}

.highlife-hero h1,
.homestead-hero h1 {
  font-size: clamp(46px, 6vw, 62px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0 0 6px;
}

.highlife-subtitle,
.homestead-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
}

.highlife-intro,
.homestead-intro {
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.highlife-features,
.homestead-features {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 70px;
}

.highlife-features-images,
.homestead-features-images {
  display: grid;
  gap: 22px;
}

.highlife-features-text h2,
.homestead-features-text h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 18px;
}

.highlife-features-text ul,
.homestead-features-text ul {
  font-size: 18px;
  margin: 0;
  padding-left: 22px;
}

.highlife-features-text li,
.homestead-features-text li {
  margin-bottom: 12px;
}

.highlife-quick,
.homestead-quick {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 80px;
}

.highlife-quick h2,
.homestead-quick h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
}

.highlife-specs p,
.homestead-specs p {
  font-size: 18px;
  margin: 0 0 12px;
}

.highlife-specs strong,
.homestead-specs strong {
  display: block;
  font-weight: 700;
}

.highlife-specs span,
.homestead-specs span {
  display: block;
  font-weight: 400;
}

.highlife-quick-images,
.homestead-quick-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.highlife-quick-images img:first-child,
.homestead-quick-images img:first-child {
  width: 70%;
}

.highlife-quick-images img:last-child,
.homestead-quick-images img:last-child {
  width: 88%;
  align-self: center;
}

.highlife-seamless,
.homestead-seamless,
.highlife-service,
.homestead-service {
  text-align: center;
  margin-bottom: 80px;
}

.highlife-seamless h2,
.homestead-seamless h2,
.highlife-service h2,
.homestead-service-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 12px;
}

.highlife-seamless p,
.homestead-seamless p,
.highlife-service p,
.homestead-service-text p {
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto 18px;
}

.highlife-note,
.homestead-note {
  font-size: 18px;
  margin-bottom: 28px;
}

.highlife-seamless-images,
.homestead-seamless-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.highlife-service ul,
.homestead-service-text ul {
  display: inline-block;
  list-style: disc;
  margin: 0 auto;
  max-width: 720px;
  padding-left: 22px;
  text-align: left;
  font-size: 18px;
}

.highlife-service li,
.homestead-service-text li {
  margin-bottom: 12px;
}

.highlife-gallery,
.homestead-gallery {
  text-align: center;
  margin-bottom: 80px;
}

.highlife-gallery h2,
.homestead-gallery h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px;
}

.highlife-gallery-grid,
.homestead-gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.highlife-stack,
.homestead-stack {
  display: grid;
  gap: 22px;
}

.highlife-kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.highlife-kitchen-center img {
  width: 46%;
  margin: 0 auto;
}

.highlife-living-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.homestead-kitchen-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.homestead-kitchen-grid .kitchen-center {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.homestead-kitchen-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.homestead-living-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 18px;
  align-items: start;
}

.homestead-living-grid .living-center {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.oasis-page,
.parkside-page {
  color: #111;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.oasis-section,
.parkside-section {
  max-width: 1100px;
  margin: 0 auto;
}

.oasis-section img,
.parkside-section img {
  height: auto;
}

.oasis-hero,
.parkside-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 380px);
  gap: 72px;
  align-items: start;
  margin-bottom: 96px;
}

.oasis-hero h1,
.parkside-hero h1 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 6.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 400;
  margin: 0 0 18px;
}

.oasis-kicker,
.parkside-kicker {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
}

.oasis-intro,
.parkside-intro {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.16;
  margin: 0;
}

.oasis-intro strong {
  font-weight: 700;
}

.oasis-hero-media,
.parkside-hero-media {
  justify-self: end;
}

.oasis-hero-media img,
.parkside-hero-media img {
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.oasis-features,
.parkside-features {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 92px;
}

.oasis-feature-images,
.parkside-feature-images {
  display: grid;
  gap: 54px;
}

.oasis-feature-images img,
.parkside-feature-images img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.oasis-feature-copy h2,
.parkside-feature-copy h2 {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 28px;
}

.oasis-feature-copy ul,
.parkside-feature-copy ul {
  margin: 0;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.55;
}

.oasis-feature-copy li,
.parkside-feature-copy li {
  margin-bottom: 26px;
}

.oasis-banner,
.parkside-banner {
  position: relative;
  margin: 96px calc(50% - 50vw) 100px;
}

.oasis-banner-media img,
.parkside-banner-media img {
  min-height: 590px;
  object-fit: cover;
}

.oasis-banner-copy,
.parkside-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 28px;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.48));
}

.oasis-banner-copy h2,
.parkside-banner-copy h2 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin: 0 0 28px;
}

.oasis-banner-copy p,
.parkside-banner-copy p {
  max-width: 1040px;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 22px;
}

.oasis-banner-copy ul,
.parkside-banner-copy ul {
  display: inline-block;
  list-style: disc;
  max-width: 1080px;
  margin: 0;
  padding-left: 32px;
  text-align: left;
}

.oasis-banner-copy li,
.parkside-banner-copy li {
  font-size: clamp(19px, 2.15vw, 28px);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.oasis-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 120px;
}

.parkside-specs {
  max-width: 560px;
  margin-bottom: 120px;
}

.oasis-specs-copy h2,
.parkside-specs-copy h2 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 28px;
}

.oasis-spec-list p,
.parkside-spec-list p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.35;
}

.oasis-spec-list strong,
.oasis-spec-list span,
.parkside-spec-list strong,
.parkside-spec-list span {
  display: block;
}

.oasis-spec-list strong,
.parkside-spec-list strong {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 2px;
}

.oasis-spec-list span,
.parkside-spec-list span {
  color: #2b2b2b;
}

.oasis-specs-media {
  justify-self: end;
}

.oasis-specs-media img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.oasis-turnkey,
.oasis-service,
.parkside-turnkey,
.parkside-service {
  margin-bottom: 120px;
}

.oasis-section-heading,
.parkside-section-heading {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.oasis-section-heading h2,
.parkside-section-heading h2 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0 0 24px;
}

.oasis-section-heading p,
.parkside-section-heading p {
  font-size: 18px;
  line-height: 1.55;
  color: #2b2b2b;
  margin: 0 auto 14px;
}

.oasis-section-heading ul,
.parkside-section-heading ul {
  display: inline-block;
  list-style: disc;
  margin: 28px auto 0;
  max-width: 880px;
  padding-left: 24px;
  text-align: left;
}

.oasis-section-heading li,
.parkside-section-heading li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #2b2b2b;
}

.oasis-two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.oasis-two-up img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.oasis-single-image,
.parkside-single-image {
  max-width: 600px;
  margin: 0 auto;
}

.oasis-single-image img,
.parkside-single-image img {
  aspect-ratio: 2.8 / 1;
  object-fit: cover;
}

.parkside-turnkey .parkside-single-image {
  max-width: 520px;
}

.parkside-turnkey .parkside-single-image img {
  aspect-ratio: 1.75 / 1;
}

.oasis-gallery,
.parkside-gallery {
  margin-bottom: 64px;
  text-align: center;
}

.oasis-gallery h2,
.parkside-gallery h2 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 0 0 12px;
}

.oasis-gallery-wide,
.parkside-gallery-wide {
  display: block;
  aspect-ratio: 2.85 / 1;
  object-fit: cover;
  margin-bottom: 10px;
}

.oasis-gallery-grid,
.parkside-gallery-grid {
  display: grid;
  gap: 12px;
}

.oasis-gallery-grid--three,
.parkside-gallery-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.oasis-gallery-grid--three img,
.parkside-gallery-grid--three img {
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.oasis-gallery-grid--two,
.parkside-gallery-grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.oasis-gallery-grid--two img,
.parkside-gallery-grid--two img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.oasis-gallery-centered {
  max-width: 520px;
  margin: 18px auto 0;
}

.oasis-gallery-centered img {
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.oasis-gallery--living .oasis-gallery-grid + .oasis-gallery-grid,
.parkside-gallery--living .parkside-gallery-grid + .parkside-gallery-grid {
  margin-top: 72px;
}

@media (max-width: 1024px) {
  .oasis-hero,
  .oasis-features,
  .oasis-specs,
  .oasis-two-up,
  .parkside-hero,
  .parkside-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oasis-hero-media,
  .oasis-specs-media,
  .parkside-hero-media {
    justify-self: start;
    max-width: 620px;
  }

  .oasis-banner,
  .parkside-banner {
    margin-top: 80px;
    margin-bottom: 88px;
  }

  .oasis-banner-media img,
  .parkside-banner-media img {
    min-height: 520px;
  }

  .oasis-gallery-grid--three,
  .parkside-gallery-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .highlife-hero,
  .highlife-features,
  .highlife-quick,
  .highlife-seamless-images,
  .highlife-gallery-grid,
  .highlife-kitchen-grid,
  .highlife-living-grid,
  .homestead-hero,
  .homestead-features,
  .homestead-quick,
  .homestead-seamless-images,
  .homestead-gallery-grid,
  .homestead-kitchen-grid,
  .homestead-kitchen-bottom,
  .homestead-living-grid {
    grid-template-columns: 1fr;
  }

  .homestead-kitchen-grid .kitchen-center,
  .homestead-living-grid .living-center {
    grid-column: auto;
    grid-row: auto;
  }

  .highlife-quick-images,
  .homestead-quick-images {
    align-items: stretch;
  }

  .highlife-quick-images img,
  .homestead-quick-images img {
    width: 100%;
    align-self: stretch;
  }

  .highlife-kitchen-center img {
    width: 70%;
  }
}

@media (max-width: 720px) {
  .house-detail-page {
    padding-top: 34px;
  }

  .highlife-hero,
  .homestead-hero,
  .oasis-hero,
  .parkside-hero {
    margin-bottom: 64px;
  }

  .highlife-features-text h2,
  .highlife-seamless h2,
  .highlife-service h2,
  .highlife-gallery h2,
  .homestead-features-text h2,
  .homestead-seamless h2,
  .homestead-service-text h2,
  .homestead-gallery h2 {
    font-size: 26px;
  }

  .highlife-kitchen-center img {
    width: 100%;
  }

  .oasis-kicker,
  .parkside-kicker,
  .oasis-feature-copy ul,
  .parkside-feature-copy ul,
  .oasis-spec-list p,
  .parkside-spec-list p,
  .oasis-section-heading p,
  .parkside-section-heading p,
  .oasis-section-heading li,
  .parkside-section-heading li {
    font-size: 16px;
  }

  .oasis-intro,
  .parkside-intro {
    font-size: 20px;
    line-height: 1.35;
  }

  .oasis-feature-images,
  .parkside-feature-images {
    gap: 24px;
  }

  .oasis-banner,
  .parkside-banner {
    margin: 72px 0;
  }

  .oasis-banner-copy,
  .parkside-banner-copy {
    position: static;
    background: #f5f1ea;
    padding: 28px 20px;
  }

  .oasis-banner-copy p,
  .parkside-banner-copy p,
  .oasis-banner-copy li,
  .parkside-banner-copy li {
    font-size: 18px;
    line-height: 1.45;
  }

  .oasis-banner-copy ul,
  .parkside-banner-copy ul {
    display: block;
    padding-left: 22px;
  }

  .oasis-specs,
  .oasis-turnkey,
  .oasis-service,
  .parkside-specs,
  .parkside-turnkey,
  .parkside-service {
    margin-bottom: 80px;
  }

  .oasis-section-heading,
  .parkside-section-heading {
    margin-bottom: 36px;
  }

  .oasis-two-up,
  .oasis-gallery-grid--three,
  .oasis-gallery-grid--two,
  .parkside-gallery-grid--three,
  .parkside-gallery-grid--two {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .oasis-gallery--living .oasis-gallery-grid + .oasis-gallery-grid,
  .parkside-gallery--living .parkside-gallery-grid + .parkside-gallery-grid {
    margin-top: 24px;
  }

  .oasis-gallery-centered {
    max-width: none;
  }
}

/* Unified page polish */
.btn {
  letter-spacing: 0;
  min-height: 48px;
  text-align: center;
}

.card-grid {
  align-items: stretch;
}

.card-grid > .home-card {
  height: 100%;
}

.home-card {
  border: 1px solid rgba(47, 91, 99, 0.08);
}

.home-card__body > p {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.home-card__body .btn {
  align-self: stretch;
  flex: 0 0 auto;
  font-size: 0.94rem;
  height: 56px;
  line-height: 1.15;
  padding: 12px 18px;
  white-space: nowrap;
  width: 100%;
}

.house-detail-page {
  background: linear-gradient(180deg, var(--bone) 0%, #fff 42%, var(--sand) 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding: clamp(40px, 6vw, 76px) 0 clamp(76px, 10vw, 126px);
}

.house-detail-page .container {
  width: min(1120px, 92vw);
}

.house-detail-page p,
.house-detail-page li {
  color: var(--ink-soft);
}

.house-detail-page strong {
  color: var(--ink);
}

.house-detail-page h1,
.house-detail-page h2,
.house-detail-page h3 {
  color: var(--ink);
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: 0;
}

.house-detail-page img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: auto;
  width: 100%;
}

.editable-property-content {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.editable-property-content > * {
  margin-bottom: 0;
}

.editable-property-content h1,
.editable-property-content h2,
.editable-property-content h3 {
  margin-bottom: 0;
}

.editable-property-content p {
  max-width: 820px;
}

.editable-property-content .wp-block-image,
.editable-property-content .wp-block-gallery,
.editable-property-content .wp-block-columns,
.editable-property-content .wp-block-group {
  margin: 0;
}

.editable-property-content .wp-block-columns {
  gap: clamp(24px, 4vw, 48px);
}

.editable-property-content .wp-block-image img,
.editable-property-content .wp-block-gallery img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.editable-property-content .wp-block-cover {
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.editable-property-content .wp-block-button__link {
  border-radius: 999px;
  background: var(--ocean);
  color: #fff;
  font-weight: 600;
  padding: 14px 26px;
}

.highlife-page,
.homestead-page,
.oasis-page,
.parkside-page {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

.highlife-container,
.homestead-container,
.oasis-container,
.parkside-container,
.highlife-section,
.homestead-section,
.oasis-section,
.parkside-section {
  max-width: 1120px;
}

.highlife-section,
.homestead-section,
.oasis-section,
.parkside-section {
  margin: 0 auto;
}

.highlife-hero,
.homestead-hero,
.oasis-hero,
.parkside-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: clamp(64px, 9vw, 104px);
}

.highlife-hero h1,
.homestead-hero h1,
.oasis-hero h1,
.parkside-hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 18px;
}

.highlife-subtitle,
.homestead-subtitle,
.oasis-kicker,
.parkside-kicker {
  color: var(--olive);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.highlife-intro,
.homestead-intro,
.oasis-intro,
.parkside-intro {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.72;
  margin: 0;
}

.highlife-hero-image,
.homestead-hero-image,
.oasis-hero-media,
.parkside-hero-media,
.oasis-specs-media {
  justify-self: stretch;
}

.highlife-hero-image img,
.homestead-hero-image img,
.oasis-hero-media img,
.parkside-hero-media img,
.oasis-specs-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlife-features,
.homestead-features,
.oasis-features,
.parkside-features,
.highlife-quick,
.homestead-quick,
.oasis-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: clamp(66px, 9vw, 108px);
}

.parkside-specs {
  max-width: none;
  margin-bottom: clamp(66px, 9vw, 108px);
}

.highlife-features-images,
.homestead-features-images,
.oasis-feature-images,
.parkside-feature-images,
.highlife-quick-images,
.homestead-quick-images {
  display: grid;
  gap: 18px;
}

.highlife-quick-images img,
.homestead-quick-images img,
.highlife-quick-images img:first-child,
.homestead-quick-images img:first-child,
.highlife-quick-images img:last-child,
.homestead-quick-images img:last-child {
  align-self: stretch;
  width: 100%;
}

.highlife-features-images img,
.homestead-features-images img,
.oasis-feature-images img,
.parkside-feature-images img,
.highlife-quick-images img,
.homestead-quick-images img,
.oasis-two-up img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.highlife-features-text h2,
.homestead-features-text h2,
.oasis-feature-copy h2,
.parkside-feature-copy h2,
.highlife-quick h2,
.homestead-quick h2,
.oasis-specs-copy h2,
.parkside-specs-copy h2,
.highlife-seamless h2,
.homestead-seamless h2,
.highlife-service h2,
.homestead-service-text h2,
.oasis-section-heading h2,
.parkside-section-heading h2,
.highlife-gallery h2,
.homestead-gallery h2,
.oasis-gallery h2,
.parkside-gallery h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 20px;
}

.highlife-features-text ul,
.homestead-features-text ul,
.oasis-feature-copy ul,
.parkside-feature-copy ul,
.highlife-service ul,
.homestead-service-text ul,
.oasis-section-heading ul,
.parkside-section-heading ul {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  padding-left: 22px;
}

.highlife-features-text li,
.homestead-features-text li,
.oasis-feature-copy li,
.parkside-feature-copy li,
.highlife-service li,
.homestead-service-text li,
.oasis-section-heading li,
.parkside-section-heading li {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.highlife-specs,
.homestead-specs,
.oasis-spec-list,
.parkside-spec-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.highlife-specs p,
.homestead-specs p,
.oasis-spec-list p,
.parkside-spec-list p {
  background: #fff;
  border: 1px solid rgba(47, 91, 99, 0.1);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(22, 22, 22, 0.08);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  padding: 16px;
}

.highlife-specs strong,
.homestead-specs strong,
.oasis-spec-list strong,
.parkside-spec-list strong {
  color: var(--ink);
  display: block;
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.highlife-specs span,
.homestead-specs span,
.oasis-spec-list span,
.parkside-spec-list span {
  color: var(--ink-soft);
  display: block;
}

.highlife-seamless,
.homestead-seamless,
.highlife-service,
.homestead-service,
.oasis-turnkey,
.oasis-service,
.parkside-turnkey,
.parkside-service {
  margin-bottom: clamp(66px, 9vw, 108px);
  text-align: center;
}

.highlife-seamless p,
.homestead-seamless p,
.highlife-service p,
.homestead-service-text p,
.oasis-section-heading p,
.parkside-section-heading p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 0 auto 16px;
  max-width: 820px;
}

.oasis-section-heading,
.parkside-section-heading {
  margin: 0 auto 42px;
  max-width: 860px;
}

.oasis-two-up,
.highlife-seamless-images,
.homestead-seamless-images,
.highlife-kitchen-grid,
.highlife-living-grid,
.homestead-kitchen-bottom {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.homestead-kitchen-grid,
.homestead-living-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr) minmax(0, 0.9fr);
}

.highlife-kitchen-center img {
  margin: 0 auto;
  width: min(520px, 100%);
}

.oasis-banner,
.parkside-banner {
  background: #132022;
  margin: clamp(66px, 9vw, 104px) calc(50% - 50vw);
  min-height: clamp(430px, 52vw, 620px);
  overflow: hidden;
  position: relative;
}

.oasis-banner-media,
.parkside-banner-media {
  inset: 0;
  position: absolute;
}

.oasis-banner-media img,
.parkside-banner-media img {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.oasis-banner-copy,
.parkside-banner-copy {
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(16, 27, 28, 0.86), rgba(16, 27, 28, 0.56) 58%, rgba(16, 27, 28, 0.18));
  color: #fff;
  inset: 0;
  justify-content: center;
  padding: clamp(34px, 7vw, 88px);
  position: absolute;
  text-align: left;
}

.oasis-banner-copy h2,
.parkside-banner-copy h2 {
  color: #fff;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 18px;
  max-width: 740px;
}

.oasis-banner-copy p,
.parkside-banner-copy p,
.oasis-banner-copy li,
.parkside-banner-copy li {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.62;
}

.oasis-banner-copy li,
.parkside-banner-copy li {
  margin-bottom: 0;
}

.oasis-banner-copy p,
.parkside-banner-copy p {
  margin: 0 0 18px;
  max-width: 760px;
}

.oasis-banner-copy ul,
.parkside-banner-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  max-width: 760px;
  padding-left: 22px;
  text-align: left;
}

.oasis-gallery,
.parkside-gallery,
.highlife-gallery,
.homestead-gallery {
  margin-bottom: clamp(56px, 8vw, 84px);
  text-align: center;
}

.oasis-gallery-wide,
.parkside-gallery-wide {
  aspect-ratio: 2.65 / 1;
  margin-bottom: 14px;
  object-fit: cover;
}

.oasis-gallery-grid,
.parkside-gallery-grid,
.highlife-gallery-grid,
.homestead-gallery-grid {
  display: grid;
  gap: 16px;
}

.oasis-gallery-grid--three,
.parkside-gallery-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oasis-gallery-grid--two,
.parkside-gallery-grid--two,
.highlife-gallery-grid,
.homestead-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.oasis-gallery-grid img,
.parkside-gallery-grid img,
.highlife-gallery-grid img,
.homestead-gallery-grid img,
.homestead-kitchen-grid img,
.homestead-kitchen-bottom img,
.homestead-living-grid img,
.highlife-kitchen-grid img,
.highlife-living-grid img,
.highlife-stack img,
.homestead-stack img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.js-reveal {
  transform: translate3d(0, 26px, 0) scale(0.985);
}

.js-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 900px) {
  .highlife-hero,
  .homestead-hero,
  .oasis-hero,
  .parkside-hero,
  .highlife-features,
  .homestead-features,
  .oasis-features,
  .parkside-features,
  .highlife-quick,
  .homestead-quick,
  .oasis-specs,
  .oasis-two-up,
  .highlife-seamless-images,
  .homestead-seamless-images,
  .highlife-kitchen-grid,
  .highlife-living-grid,
  .homestead-kitchen-grid,
  .homestead-kitchen-bottom,
  .homestead-living-grid {
    grid-template-columns: 1fr;
  }

  .homestead-kitchen-grid .kitchen-center,
  .homestead-living-grid .living-center {
    grid-column: auto;
    grid-row: auto;
  }

  .oasis-gallery-grid--three,
  .parkside-gallery-grid--three,
  .oasis-gallery-grid--two,
  .parkside-gallery-grid--two,
  .highlife-gallery-grid,
  .homestead-gallery-grid {
    grid-template-columns: 1fr;
  }

  .oasis-banner,
  .parkside-banner {
    background: transparent;
    margin: clamp(54px, 10vw, 76px) 0;
    min-height: 0;
  }

  .oasis-banner-media,
  .parkside-banner-media,
  .oasis-banner-copy,
  .parkside-banner-copy {
    position: static;
  }

  .oasis-banner-media img,
  .parkside-banner-media img {
    border-radius: 18px 18px 0 0;
    height: auto;
  }

  .oasis-banner-copy,
  .parkside-banner-copy {
    background: #fff;
    border: 1px solid rgba(47, 91, 99, 0.1);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
    color: var(--ink);
    padding: 28px 22px;
  }

  .oasis-banner-copy h2,
  .parkside-banner-copy h2 {
    color: var(--ink);
  }

  .oasis-banner-copy p,
  .parkside-banner-copy p,
  .oasis-banner-copy li,
  .parkside-banner-copy li {
    color: var(--ink-soft);
  }
}

@media (max-width: 620px) {
  .house-detail-page {
    padding-top: 28px;
  }

  .highlife-hero h1,
  .homestead-hero h1,
  .oasis-hero h1,
  .parkside-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .home-card__body .btn {
    height: auto;
    min-height: 52px;
    white-space: normal;
  }
}
