/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: #fff; color: #1e1e1e; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   VARIABLES  (Design baseline: 1920px wide)
   ============================================================ */
:root {
  --cream:        #fef5ec;
  --green:        #5a9e50;
  --green-dark:   #2a5422;
  --green-mid:    #3d7a35;
  --accent:       #085132;
  --text:         #1e1e1e;
  --text-mid:     #4a4a4a;
  --text-muted:   #787878;
  --border:       #e8e0d4;
  --tag-bg:       rgba(234,224,213,0.5);
  --footer-bg:    #dcc8b9;
  --radius-card:  16px;
  --px:           clamp(20px, 4.0625vw, 78px);
  --font-georgia: Georgia, "EB Garamond", serif;
  --why-collage-outer:       #fcf6de;
  --why-collage-inner-ring:  #f9e3cc;
  --why-stage-bg-a:          #f5efe6;
  --why-stage-bg-b:          #f0e6dc;
  --why-stage-border:        #c9a882;
  --why-badge-num:           #d4b08c;
  --why-photo-frame:         clamp(8px, 1vw, 14px) solid #fff;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.wrap {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ============================================================
   SHARED TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-size: clamp(10px, 0.573vw, 11px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: clamp(12px, 1vw, 20px);
}

.section-heading-centered {
  font-family: var(--font-georgia);
  font-size: clamp(22px, 1.771vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(12px, 0.833vw, 16px);
}

.section-sub-centered {
  font-size: clamp(13px, 0.885vw, 17px);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: min(800px, 90%);
  margin-inline: auto;
  margin-bottom: clamp(24px, 2.604vw, 50px);
}

.col-heading {
  font-family: var(--font-georgia);
  font-size: clamp(18px, 1.458vw, 28px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(20px, 1.563vw, 30px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(44px, 3.021vw, 58px);
  padding: 0 clamp(16px, 1.25vw, 24px);
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.042vw, 20px);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn-white { background: #fff; color: var(--green-dark); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }

.btn-submit {
  display: block;
  width: 100%;
  height: clamp(44px, 2.5vw, 48px);
  background: #eae0d5;
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 0.833vw, 16px);
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  height: clamp(80px, 5.208vw, 100px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
}

.brand { display: flex; align-items: center; gap: clamp(8px, 0.625vw, 12px); }
.brand-logo { height: clamp(40px, 4.688vw, 90px); width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(16px, 1.979vw, 38px);
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.brand-tagline {
  font-style: italic;
  font-size: clamp(11px, 0.729vw, 14px);
  color: #434141;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.385vw, 65px);
}
.nav a {
  font-weight: 700;
  font-size: clamp(13px, 0.938vw, 18px);
  letter-spacing: 0.015em;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav a:hover { color: var(--green); }
.nav-schedule {
  background: #fff;
  padding: clamp(6px, 0.417vw, 8px) clamp(12px, 0.938vw, 18px);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(250,237,227,0.8);
  color: #525252 !important;
}

.header-phone {
  font-weight: 700;
  font-size: clamp(13px, 1.042vw, 20px);
  color: var(--text);
  white-space: nowrap;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: clamp(360px, 39.063vw, 750px);
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 62.5% 1fr;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.hero-overlay-left {
  left: 0;
  width: 62.5%;
  background: linear-gradient(260deg, rgba(16,16,16,0) 9%, rgba(16,16,16,0.2) 63%, rgba(11,10,10,0.4) 73%, rgba(11,10,10,0.6) 87%);
}
.hero-overlay-right {
  right: 0;
  width: 37.5%;
  background: linear-gradient(258deg, rgba(16,16,16,0) 9%, rgba(16,16,16,0.2) 63%, rgba(11,10,10,0.4) 73%, rgba(11,10,10,0.6) 87%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: clamp(20px, 2vw, 40px);
}

.hero-badge {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: clamp(10px, 0.833vw, 16px);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: clamp(6px, 0.417vw, 8px) clamp(16px, 1.25vw, 24px);
  border-radius: 50px;
  margin-bottom: clamp(16px, 1.25vw, 24px);
}

.hero-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.125vw, 60px);
  color: #fff;
  line-height: 1.17;
  letter-spacing: 0.06em;
  text-shadow: 4px 4px 10px rgba(0,0,0,0.7);
  margin-bottom: clamp(12px, 0.833vw, 16px);
}

.hero-sub {
  font-weight: 700;
  font-size: clamp(14px, 1.563vw, 30px);
  color: #fff;
  text-shadow: 4px 4px 10px rgba(0,0,0,0.7);
  letter-spacing: 0.02em;
  margin-bottom: clamp(20px, 1.563vw, 30px);
}

.hero-ctas {
  display: flex;
  gap: clamp(12px, 1.042vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}

/* Anchor offset for sticky header */
#services, #about, #homes, #contact,
#home-paradise, #home-pastel, #home-alice, #home-springer {
  scroll-margin-top: clamp(80px, 5.208vw, 100px);
}

/* ============================================================
   TRUST + SERVICES
   ============================================================ */
.trust-services {
  background: var(--cream);
  padding-block: clamp(40px, 3.646vw, 70px);
}

.trust-services-inner {
  display: grid;
  grid-template-columns: clamp(280px, 26.042vw, 500px) 1fr;
  gap: 0;
  border-right: 1px solid rgba(190,190,190,0.5);
}

.trust-col {
  padding-right: clamp(24px, 2vw, 40px);
  border-right: 1px solid rgba(190,190,190,0.5);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.833vw, 16px);
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.833vw, 16px);
  padding: clamp(12px, 0.99vw, 19px) clamp(16px, 1.25vw, 24px);
  min-height: clamp(100px, 7.292vw, 140px);
}
.trust-card-flip { flex-direction: row-reverse; }
.trust-card-img {
  flex-shrink: 0;
  width: clamp(76px, 5.625vw, 112px);
  height: clamp(76px, 5.625vw, 112px);
  object-fit: contain;
  background: #f5f0e8;
  border-radius: 10px;
}
.trust-card-text {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(11px, 0.729vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
}

.services-col {
  padding-left: clamp(24px, 2vw, 40px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 0.833vw, 16px);
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fbf2e0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(6px, 0.833vw, 14px);
  overflow: hidden;
  min-height: 0;
}
.svc-card-img-wrap img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.svc-card-label {
  background: #fbf2e0;
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(12px, 0.938vw, 18px);
  color: var(--text);
  padding: clamp(8px, 0.521vw, 10px) clamp(12px, 0.833vw, 16px);
}

.svc-card-desc {
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  padding: clamp(8px, 0.521vw, 10px) clamp(12px, 0.833vw, 16px) clamp(12px, 0.833vw, 16px);
  flex: 1;
  text-align: center;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: #fff;
  padding-block: clamp(48px, 5vw, 96px);
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, clamp(280px, 29.375vw, 564px)) minmax(0, 1fr);
  gap: clamp(32px, 2.604vw, 50px);
  align-items: center;
}

.why-photos {
  position: relative;
  min-width: 0;
  padding-bottom: clamp(48px, 4.167vw, 72px);
}

.why-collage-frame--outer {
  position: relative;
  background: var(--why-collage-outer);
  padding: clamp(12px, 1.042vw, 15px);
  border-radius: clamp(16px, 1.5vw, 22px);
}

.why-collage-frame--inner {
  border: clamp(12px, 0.781vw, 15px) solid var(--why-collage-inner-ring);
  border-radius: clamp(12px, 1vw, 16px);
}

.why-collage-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #2a5422 0%, #5a9e50 100%);
  box-shadow: 0px 16px 48px 0px rgba(0,0,0,0.15);
  aspect-ratio: 564 / 423;
}

.why-collage-surface::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
  z-index: 2;
}

.why-photo-grid {
  position: absolute;
  inset: 0;
}

.why-photo-cell {
  position: absolute;
  overflow: hidden;
}

.why-photo-cell--tl {
  left: 0;
  top: 0;
  width: 50.18%;
  height: 50.12%;
  border: clamp(8px, 0.781vw, 15px) solid #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 3;
}

.why-photo-cell--tr {
  left: 46.99%;
  top: 0;
  width: 53.01%;
  height: 53.43%;
  z-index: 1;
}

.why-photo-cell--bl {
  left: 0;
  top: 43.73%;
  width: 60.82%;
  height: 56.27%;
  z-index: 1;
}

.why-photo-cell--br {
  left: 51.42%;
  top: 53.43%;
  width: 48.58%;
  height: 46.57%;
  border: clamp(8px, 0.781vw, 15px) solid #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 3;
}

.why-photo {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: clamp(4px, 0.5vw, 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: clamp(154px, 11.458vw, 220px);
  height: clamp(91px, 6.748vw, 129.56px);
  background: #fff;
  border-radius: clamp(10px, 0.833vw, 16px);
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.12);
}

.why-badge-num {
  position: absolute;
  left: 0;
  right: 0;
  top: 35.74%;
  transform: translateY(-50%);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 2.292vw, 44px);
  color: #e5c09b;
  line-height: 1.6;
  text-align: center;
}

.why-badge-sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 69.3%;
  transform: translateY(-50%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(8px, 0.625vw, 12px);
  color: #787878;
  line-height: 1.6;
  text-align: center;
}

.why-badge-rose {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: auto;
  top: auto;
  width: clamp(28px, 4.5vw, 44px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.why-copy {
  padding-left: clamp(16px, 1.25vw, 24px);
  padding-bottom: clamp(20px, 1.563vw, 30px);
  min-width: 0;
}

.why-title {
  font-family: var(--font-georgia);
  font-size: clamp(22px, 1.771vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: clamp(16px, 0.833vw, 16px);
}

.why-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 0.833vw, 16px);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: clamp(12px, 0.833vw, 16px);
}

.why-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(24px, 1.563vw, 30px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(20px, 1.25vw, 24px);
}

.why-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-right: clamp(16px, 1.042vw, 20px);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.why-stat:last-child { border-right: none; padding-right: 0; }

.why-stat--heart {
  align-items: center;
  gap: clamp(6px, 0.521vw, 10px);
}

.why-stat--heart .why-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-stat-icon svg {
  display: block;
  width: 33px;
  height: 33px;
}

.why-stat-big {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(22px, 1.563vw, 30px);
  color: var(--accent);
  line-height: 1;
}

.why-stat-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
  padding-block: clamp(40px, 3.646vw, 70px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.25vw, 24px);
}

.testimonial-card {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: clamp(20px, 1.563vw, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.625vw, 12px);
}

.testimonial-stars {
  font-size: clamp(14px, 0.833vw, 16px);
  color: #c8963e;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: clamp(13px, 0.781vw, 15px);
  color: var(--text-mid);
  line-height: 1.8;
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  font-size: clamp(11px, 0.677vw, 13px);
  color: var(--text);
}

.testimonial-role {
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-muted);
}

/* ============================================================
   OUR HOMES
   ============================================================ */
.homes {
  background: #fff;
  padding-block: clamp(40px, 4.167vw, 80px);
}

.homes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 0.833vw, 16px);
}

.home-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.home-card-img-wrap {
  position: relative;
  height: clamp(100px, 7.292vw, 140px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
}
.home-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-card-badge {
  position: absolute;
  top: clamp(8px, 0.417vw, 8px);
  right: clamp(8px, 0.417vw, 8px);
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: clamp(9px, 0.573vw, 11px);
  color: var(--text);
}

.home-card-body {
  padding: clamp(14px, 0.938vw, 18px);
}

.home-card-name {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(14px, 0.938vw, 18px);
  color: var(--text);
  margin-bottom: clamp(6px, 0.417vw, 8px);
}

.home-card-addr {
  font-size: clamp(10px, 0.677vw, 13px);
  color: var(--text-muted);
  margin-bottom: clamp(10px, 0.521vw, 10px);
  line-height: 1.4;
}

.home-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(4px, 0.313vw, 6px);
}

.home-card-tags li {
  background: var(--tag-bg);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: clamp(9px, 0.573vw, 11px);
  color: var(--text-mid);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding-block: clamp(40px, 4.167vw, 80px);
}

.contact-inner {
  display: grid;
  grid-template-columns: clamp(280px, 28.021vw, 538px) 1fr;
  gap: clamp(32px, 2.604vw, 50px);
  align-items: start;
}

.contact-heading {
  font-family: var(--font-georgia);
  font-size: clamp(20px, 1.771vw, 34px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: clamp(12px, 0.833vw, 16px);
}

.contact-body {
  font-size: clamp(13px, 0.833vw, 16px);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: clamp(24px, 1.563vw, 30px);
}

.contact-details { display: flex; flex-direction: column; gap: clamp(16px, 0.833vw, 16px); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 0.625vw, 12px);
}

.contact-icon {
  flex-shrink: 0;
  width: clamp(40px, 2.5vw, 48px);
  height: clamp(40px, 2.5vw, 48px);
  background: #eae0d5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.042vw, 20px);
}

.contact-detail-label {
  display: block;
  font-size: clamp(9px, 0.573vw, 11px);
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-weight: 700;
  font-size: clamp(14px, 0.885vw, 17px);
  color: var(--text);
  display: block;
}
a.contact-detail-value:hover { color: var(--green); }

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  padding: clamp(24px, 1.875vw, 36px) clamp(24px, 1.875vw, 36px);
}

.form-heading {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(16px, 1.146vw, 22px);
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: clamp(12px, 0.729vw, 14px);
  color: var(--text-muted);
  margin-bottom: clamp(16px, 0.833vw, 16px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 0.625vw, 12px);
  margin-bottom: clamp(12px, 0.625vw, 12px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(12px, 0.625vw, 12px);
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-weight: 700;
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-mid);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  padding: 0 clamp(12px, 0.833vw, 16px);
  height: clamp(38px, 2.188vw, 42px);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 0.729vw, 14px);
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #757575; }
.form-field textarea {
  height: auto;
  padding-top: clamp(10px, 0.625vw, 12px);
  padding-bottom: clamp(10px, 0.625vw, 12px);
  resize: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
}

.footer-inner {
  padding-top: clamp(32px, 2.604vw, 50px);
  padding-bottom: clamp(20px, 1.563vw, 30px);
  display: grid;
  grid-template-columns: 1fr clamp(160px, 12.5vw, 240px) clamp(160px, 12.5vw, 240px);
  gap: clamp(24px, 2.083vw, 40px);
  align-items: start;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.625vw, 12px);
  margin-bottom: clamp(12px, 0.833vw, 16px);
}
.footer-logo {
  height: clamp(30px, 1.979vw, 38px);
  width: auto;
}
.footer-brand-name {
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(13px, 0.781vw, 15px);
  color: var(--text);
}

.footer-desc {
  font-size: clamp(11px, 0.677vw, 13px);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: clamp(280px, 27.604vw, 530px);
}

.footer-col-heading {
  font-weight: 700;
  font-size: clamp(11px, 0.677vw, 13px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: clamp(12px, 0.625vw, 12px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.417vw, 8px);
}
.footer-links li,
.footer-links a {
  font-size: clamp(11px, 0.677vw, 13px);
  color: var(--text-mid);
  line-height: 1.6;
}
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: clamp(12px, 0.833vw, 16px);
}

.footer-bottom-inner p {
  font-size: clamp(10px, 0.625vw, 12px);
  color: rgba(74,74,74,0.55);
}

/* ============================================================
   MISSING CLASS SUPPLEMENTS (reviewer fix)
   ============================================================ */

/* contact-info: left column wrapper in contact section */
.contact-info {
  padding-top: clamp(40px, 2.604vw, 50px);
}

/* form-field-full: full-width form field */
.form-field-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(12px, 0.625vw, 12px);
}
.form-field-full label {
  font-weight: 700;
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-mid);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.form-field-full input,
.form-field-full select,
.form-field-full textarea {
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  padding: 0 clamp(12px, 0.833vw, 16px);
  height: clamp(38px, 2.292vw, 44px);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 0.729vw, 14px);
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-field-full textarea {
  height: auto;
  padding-top: clamp(10px, 0.625vw, 12px);
  padding-bottom: clamp(10px, 0.625vw, 12px);
  resize: vertical;
}
.form-field-full select:focus,
.form-field-full input:focus,
.form-field-full textarea:focus { outline: none; border-color: var(--green); }

/* hero-img-left / hero-img-right: individual hero image positioning */
.hero-img-left  { object-position: center center; }
.hero-img-right { object-position: center center; }

/* ============================================================
   MOBILE BREAKPOINT  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --px: 20px; }

  .site-header { height: 64px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .brand-tagline { display: none; }

  .hero { height: auto; min-height: 420px; }
  .hero-bg { grid-template-columns: 1fr; }
  .hero-img-right { display: none; }
  .hero-overlay-left { width: 100%; }
  .hero-overlay-right { display: none; }
  .hero-title { font-size: clamp(26px, 7vw, 40px); }
  .hero-ctas { flex-direction: column; align-items: center; }

  .trust-services-inner { grid-template-columns: 1fr; }
  .trust-col { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(190,190,190,0.5); padding-bottom: 32px; margin-bottom: 32px; }

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

  .why-inner { grid-template-columns: minmax(0, 1fr); }
  .why-photos {
    padding-bottom: clamp(56px, 14vw, 72px);
  }
  .why-collage-frame--outer {
    padding: clamp(10px, 2.5vw, 15px);
    border-radius: clamp(24px, 6vw, 40px);
    overflow: visible;
  }
  .why-collage-surface {
    aspect-ratio: 1 / 1;
  }
  .why-badge {
    max-width: min(100%, calc(100% - 32px));
  }
  .why-copy { padding-left: 0; padding-top: clamp(32px, 8vw, 48px); }
  .why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .why-stat {
    flex: unset;
    min-width: unset;
    align-items: center;
    text-align: center;
    padding: clamp(12px, 3vw, 16px) clamp(10px, 2.5vw, 14px);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .why-stat:nth-child(2n) { border-right: none; }
  .why-stat:nth-child(n + 3) { border-bottom: none; }

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

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

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TABLET BREAKPOINT  769px – 1100px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1100px) {
  .trust-services-inner { grid-template-columns: 1fr 1.4fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .homes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(24px, 2.5vw, 44px);
  }
}

/* ============================================================
   GALLERY CARD TRIGGER
   ============================================================ */
.gallery-trigger {
  cursor: pointer;
  position: relative;
}
.gallery-trigger:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}
.gallery-hint {
  position: absolute;
  bottom: clamp(6px, 0.417vw, 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: clamp(10px, 0.625vw, 12px);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.gallery-trigger:hover .gallery-hint,
.gallery-trigger:focus-visible .gallery-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.lightbox-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: min(900px, 94vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(0,0,0,0.7); }

.lightbox-title {
  padding: clamp(12px, 0.833vw, 16px) clamp(16px, 1.25vw, 24px) 0;
  font-family: var(--font-georgia);
  font-weight: 700;
  font-size: clamp(14px, 0.938vw, 18px);
  color: var(--text);
}

.lightbox-stage {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 0.625vw, 12px);
  flex: 1;
  min-height: 0;
}

.lightbox-img-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f0ede8;
  min-height: clamp(140px, 28vh, 260px);
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.25s;
}

/* Lightbox: loading overlay + spinner */
.lightbox-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox-img-wrap.is-loading .lightbox-loading {
  opacity: 1;
  visibility: visible;
}

.lightbox-loading::after {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(90, 158, 80, 0.22);
  border-top-color: var(--green);
  animation: lightbox-spin 0.75s linear infinite;
}

.lightbox-img-wrap.is-loading .lightbox-img {
  opacity: 0.35;
}

@keyframes lightbox-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-loading::after {
    animation: none;
    border-color: rgba(90, 158, 80, 0.35);
    border-top-color: var(--green-mid);
  }
}

.lightbox-nav {
  flex-shrink: 0;
  width: clamp(36px, 2.5vw, 48px);
  height: clamp(36px, 2.5vw, 48px);
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--text);
  font-size: clamp(20px, 1.563vw, 30px);
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.lightbox-nav:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.08);
}

.lightbox-prev,
.lightbox-next {
  flex-shrink: 0;
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: clamp(8px, 0.417vw, 8px) 0 0;
}

.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0c8bc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.15s;
}
.lb-dot-active,
.lb-dot:hover {
  background: var(--green);
  transform: scale(1.3);
}

.lightbox-counter {
  text-align: center;
  font-size: clamp(10px, 0.625vw, 12px);
  color: var(--text-muted);
  padding: clamp(6px, 0.313vw, 6px) 0 clamp(12px, 0.625vw, 12px);
}

@media (max-width: 768px) {
  .lightbox-box { width: 96vw; border-radius: 12px; }
  .lightbox-stage { gap: 4px; }
  .lightbox-nav { width: 32px; height: 32px; font-size: 18px; }
}

/* ============================================================
   FORM SUBMIT STATE
   ============================================================ */

.form-status {
  border-radius: 8px;
  padding: clamp(10px, 0.625vw, 12px) clamp(14px, 0.833vw, 16px);
  font-size: clamp(12px, 0.729vw, 14px);
  margin-bottom: 12px;
  line-height: 1.5;
}

.form-status--success {
  background: #edf7ed;
  color: #1e6b1e;
  border: 1px solid #b2dfb2;
}

.form-status--error {
  background: #fdf3f3;
  color: #8b2222;
  border: 1px solid #f0c0c0;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   HOME CARD COVER CROP POSITION (Figma aligned)
   ============================================================ */

#home-paradise .home-card-img-wrap img { object-position: center 43%; }
#home-pastel   .home-card-img-wrap img { object-position: center 25%; }
#home-alice    .home-card-img-wrap img { object-position: center 35%; }
#home-springer .home-card-img-wrap img { object-position: center 50%; }
