/* ============================================================
   LUNA CUSTOM HOMES — Interior Pages
   About, Services, Gallery, The Grove, Contact — shared templates
   (responsive rules included at the end)
   ============================================================ */

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0c0c;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 10s var(--ease);
}
/* Per-page banner: dark gradient overlay + page-specific image */
.page-hero-bg.banner-about {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("../images/banners/about.webp");
}
.page-hero-bg.banner-services {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("../images/banners/services.webp");
}
.page-hero-bg.banner-gallery {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("../images/banners/gallery.webp");
}
.page-hero-bg.banner-grove {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("../images/banners/grove.webp");
}
.page-hero-bg.banner-contact {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("../images/banners/contact.png");
}
.page-hero-bg.ready {
  transform: scale(1);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 550px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-end;
  padding-bottom: 90px;
  gap: 3rem;
}
.page-hero-title {
  font-family: var(--header);
  font-size: clamp(3.5rem, 7vw, 80px);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1.3s var(--ease) 0.25s forwards;
}
.page-hero-subtitle {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  align-self: flex-end;
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1.3s var(--ease) 0.55s forwards;
}

/* ── Page Intro ───────────────────────────────────────────── */
.page-intro {
  background: var(--dark);
  padding: 70px 0;
}
.page-intro > .luna-container {
  max-width: 1165px;
}
.page-intro-lead {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-intro-body {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}
.page-intro-body:last-child {
  margin-bottom: 0;
}

/* ── About Page ───────────────────────────────────────────── */
.about-content {
  background: var(--dark);
  padding: 90px 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split-title {
  font-family: var(--serif);
  font-size: 76px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.about-split-text {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  max-width: 556px;
}
.about-split-right {
  position: relative;
  min-height: 600px;
}
.about-split-right .bg-img {
  position: absolute;
  right: 0;
  top: -10%;
  width: 90%;
  height: 120%;
  max-height: 740px;
  object-fit: cover;
  opacity: 0.05;
  overflow: hidden;
  z-index: -1;
}
.ab-img-main {
  width: 100%;
  height: 600px;
  overflow: hidden;
  padding-right: 150px;
}
.ab-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Next-Gen CTA Section ─────────────────────────────────── */
.next-gen-section {
  position: relative;
  overflow: hidden;
  min-height: 586px;
  display: flex;
  align-items: center;
}
.next-gen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.next-gen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.next-gen-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.next-gen-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.next-gen-title {
  font-family: var(--serif);
  font-size: 76px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  max-width: 700px;
}
.next-gen-body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 672px;
  margin-bottom: 20px;
}

/* ── Services Page ────────────────────────────────────────── */
.services-blocks {
  background: var(--dark);
  padding: 70px 0;
}
.services-blocks > .luna-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.service-block {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-block .sb-img {
  width: 75%;
  height: 600px;
  object-fit: cover;
  overflow: hidden;
}
.service-block .sb-content {
  background-color: #181b1ccf;
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 65%;
  max-width: 900px;
  align-self: flex-end;
  margin-top: -400px;
  z-index: 9;
}
.service-block .sb-content .sb-title {
  font-family: var(--serif);
  font-size: 76px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.service-block .sb-content .sb-body {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}
.service-block .sb-content .sb-body p + p {
  margin-top: 1rem;
}
/* sb-right variant: mirror the layout — image on the right,
   content overlapping on the left.                          */
.service-block.sb-right .sb-img {
  align-self: flex-end;
}
.service-block.sb-right .sb-content {
  align-self: flex-start;
}

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-content {
  background: var(--dark);
  padding: 6rem 0;
}
.gallery-property {
  margin-bottom: 6rem;
}
.gallery-property:last-child {
  margin-bottom: 0;
}
.gallery-property-name {
  font-family: var(--sans);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}
/* Gallery slider — one per property, equal-height slides, no stagger */
.gallery-slider {
  position: relative;
}
.gallery-viewport {
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.85s var(--ease);
  will-change: transform;
}
/* Default desktop: 3 slides visible */
.gs {
  flex: 0 0 calc((100% - 40px) / 3);
  overflow: hidden;
  display: block;
}
.gs img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease);
}
.gs:hover img {
  transform: scale(1.05);
}

.gallery-arrows {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 24px;
}
.g-arrow {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 200px;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    opacity 0.25s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.g-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 200px;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.g-arrow:hover {
  color: var(--dark);
  border-color: var(--white);
}
.g-arrow:hover::before {
  transform: translateX(0);
}
.g-arrow span {
  position: relative;
  z-index: 1;
}
.g-arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.g-arrow[disabled]:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.g-arrow[disabled]:hover::before {
  transform: translateX(-101%);
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(0, 0, 0, 0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
body.lightbox-open {
  overflow: hidden;
  cursor: auto;
}
body.lightbox-open .cursor,
body.lightbox-open .cursor-ring {
  display: none;
}

.lightbox-stage {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.3s var(--ease);
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}
.lightbox-img.zoomed {
  cursor: grab;
}
.lightbox-img.dragging {
  cursor: grabbing;
  transition: none;
}

/* Close (top-right) */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--white);
  color: var(--dark);
  transform: rotate(90deg);
}

/* Counter (top-left) */
.lightbox-count {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  margin: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    opacity 0.25s;
  z-index: 2;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--white);
  color: var(--dark);
}
.lightbox-prev[disabled],
.lightbox-next[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.lightbox-prev[disabled]:hover,
.lightbox-next[disabled]:hover {
  background: transparent;
  color: var(--white);
}

/* Caption (above controls) */
.lightbox-caption {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  text-align: center;
  z-index: 2;
  max-width: 80%;
  pointer-events: none;
}

/* Zoom controls (bottom-center pill) */
.lightbox-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 200px;
  z-index: 2;
}
.lb-ctrl {
  min-width: 44px;
  height: 36px;
  padding: 0 10px;
  border: none;
  border-radius: 200px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    opacity 0.2s;
}
.lb-ctrl:hover {
  background: var(--white);
  color: var(--dark);
}
.lb-ctrl[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.lb-ctrl[disabled]:hover {
  background: transparent;
  color: var(--white);
}

/* Mobile lightbox tweaks */
@media (max-width: 600px) {
  .lightbox-stage {
    padding: 70px 8px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    margin: 0 4px;
    font-size: 18px;
  }
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    top: 16px;
    right: 16px;
  }
  .lightbox-count {
    top: 22px;
    left: 16px;
    font-size: 11px;
  }
  .lightbox-caption {
    font-size: 14px;
    bottom: 78px;
  }
  .lightbox-controls {
    bottom: 16px;
  }
}

/* ── The Grove Page ───────────────────────────────────────── */
.grove-content {
  background: var(--dark);
  padding: 8rem 0;
  text-align: center;
}
.grove-coming-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 76px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4rem;
}
.grove-lots {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.grove-lot {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s var(--ease);
}
.grove-lot:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.grove-lot:hover {
  color: var(--gold);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-content {
  background: var(--dark);
  padding: 8rem 0;
}
.contact-content > .luna-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-eyebrow {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.contact-company-name {
  font-family: var(--sans);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.contact-address-block {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.contact-block {
  margin-top: 1.75rem;
}
.contact-phone-number {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  transition: opacity 0.25s;
}
a.contact-phone-number:hover {
  opacity: 0.7;
}

/* Social icons inside contact info column */
.contact-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2.5rem;
}
.contact-social-row .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.3s var(--ease);
}
.contact-social-row .social-icon:hover {
  opacity: 0.55;
}
.contact-social-row .social-icon svg {
  fill: currentColor;
}
.contact-form-card {
  background: #191c1d;
  border-radius: 6px;
  padding: 4rem;
}
.contact-form-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 32px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.contact-form-card .form-submit {
  width: 100%;
  align-self: stretch;
  margin-top: 4px;
  padding: 15px 28px;
  border-radius: 4px;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Name field with First / Last sub-inputs */
.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-subfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-sublabel {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
  text-transform: none;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  background: #121617;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #121617;
}
.form-field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--sans);
}
.form-submit {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    opacity 0.25s,
    color 0.4s var(--ease);
}
.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.form-submit:hover {
  color: var(--white);
}
.form-submit:hover::before {
  transform: translateX(0);
}
.form-submit span {
  position: relative;
  z-index: 1;
}
.form-submit:disabled {
  cursor: not-allowed;
}

/* Inline form status / error message (populated by contact-form.js) */
.form-status {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 4px;
  margin: 0;
}
.form-error {
  background: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.25);
  color: #f5b8b8;
}

/* ============================================================
  RESPONSIVE
  ============================================================ */

@media (max-width: 1100px) {
  /* About: stack the split, but keep the image visible */
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
  }

  /* Gallery / Contact */
  .gs {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .gs img {
    height: 380px;
  }
  .contact-content > .luna-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  /* ── Page Hero ── */
  .page-hero {
    min-height: 400px;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: 400px;
    padding-bottom: 50px;
    gap: 12px;
    align-content: flex-end;
  }
  .page-hero-title {
    font-size: clamp(48px, 10vw, 64px);
  }

  /* ── Page Intro ── */
  .page-intro {
    padding: 50px 0;
  }
  .page-intro-lead,
  .page-intro-body {
    font-size: 18px;
    line-height: 1.55;
  }

  /* ── About: Family-Owned ── */
  .about-content {
    padding: 50px 0;
  }
  .about-split {
    gap: 24px;
  }
  .about-split-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .about-split-body {
    font-size: 16px;
  }
  .about-split-right {
    min-height: auto;
  }
  .about-split-right .bg-img {
    display: none;
  }
  .ab-img-main {
    padding-right: 0;
    height: 350px;
  }

  /* ── Next-Gen CTA ── */
  .next-gen-section {
    min-height: auto;
  }
  .next-gen-inner {
    padding: 50px 20px;
    gap: 16px;
  }
  .next-gen-title {
    font-size: 42px;
    max-width: 100%;
    padding-left: 0;
  }
  .next-gen-body {
    font-size: 16px;
    padding-left: 0;
    max-width: 100%;
  }

  /* ── Services / Gallery / Grove / Contact (kept) ── */
  .gallery-content {
    padding: 4rem 2rem;
  }
  /* ── The Grove ── */
  .grove-content {
    padding: 50px 0;
  }
  .grove-coming-title {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .grove-lot {
    font-size: 18px;
    padding: 14px 0;
    line-height: 1.4;
  }

  /* ── Contact ── */
  .contact-content {
    padding: 50px 0;
  }
  .contact-content > .luna-container {
    gap: 30px;
  }
  .contact-eyebrow {
    font-size: 24px;
    margin-bottom: 1.25rem;
  }
  .contact-form-title {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  .form-name-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  /* ── Page Hero ── */
  .page-hero-title {
    font-size: 48px;
  }

  /* ── About: Family-Owned ── */
  .about-split-title,
  .next-gen-title {
    font-size: 42px;
  }
  .ab-img-main {
    height: 280px;
  }

  /* ── Gallery / Contact / Grove (kept) ── */
  .gs {
    flex: 0 0 100%;
  }
  .gs img {
    height: 280px;
  }
  .gallery-track {
    gap: 12px;
  }

  /* ── Contact: small phones ── */
  .contact-eyebrow {
    font-size: 20px;
  }
  .contact-form-title {
    font-size: 28px;
  }
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
  /* ── The Grove: small phones ── */
  .grove-content {
    text-align: left;
  }
  .grove-coming-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .grove-lot {
    font-size: 16px;
    padding: 12px 0;
  }

  /* ── Services Page ─── */
  .services-blocks {
    padding: 50px 0;
  }
  .services-blocks > .luna-container {
    gap: 50px;
  }
  .service-block .sb-img {
    width: 100%;
    height: 250px;
    margin-bottom: 0;
  }
  .service-block .sb-content {
    padding: 10px 15px;
    gap: 10px;
    width: 95%;
    margin-top: -50px;
    align-self: center;
  }
  .service-block.sb-right .sb-content {
    align-self: center;
  }
  .service-block .sb-content .sb-title {
    font-size: 32px;
  }
  .service-block .sb-content .sb-body {
    font-size: 16px;
    line-height: 1.4;
  }
  .service-block .sb-content .sb-body p + p {
    margin-top: 12px;
  }
}
