/* ═══════════════════════════════════════════════
   PadelSuite Landing — UX-Audited Clean Design
   Navy #101585 + Green #4CAF50
   Fixed: photos, dominant CTA, mobile, contrast,
          serif usage, wave, card hierarchy
   ═══════════════════════════════════════════════ */

.landing-wrap {
  position: fixed; inset: 0; z-index: 1000;
  overflow-y: auto; overflow-x: hidden;
  display: block;
  background: #eef1f8;
  font-family: 'Outfit', sans-serif;
  color: #1a1a2e;
}

/* ── NAV ── */
.land-nav {
  background: #fff;
  border-bottom: 1px solid rgba(16,21,133,0.08);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem; height: 62px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(16,21,133,0.06);
}
.land-nav-logo { display: flex; align-items: center; gap: 10px; }
.land-nav-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: #101585;
  display: flex; align-items: center; justify-content: center;
}
.land-nav-name {
  font-size: 18px; font-weight: 600; color: #101585;
  letter-spacing: -0.01em;
}
.land-nav-sub {
  font-size: 10px; color: #9099b8;
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px;
}
.land-nav-badge {
  background: #f0faf0; border: 1px solid #b2dfb4;
  color: #1b5e20; font-size: 11.5px; font-weight: 600;
  padding: 5px 14px; border-radius: 99px;
}

/* ── HERO ── */
.land-hero {
  background: linear-gradient(150deg, #101585 0%, #1520a8 55%, #0c1168 100%);
  padding: 4.5rem 2.5rem 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
/* Subtle grid lines only — no wave */
.land-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(0deg,  transparent 0, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px);
  background-size: 60px 60px;
}
/* Green glow radial — not emoji, just mood */
.land-hero::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.land-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(76,175,80,0.22); border: 1px solid rgba(76,175,80,0.5);
  color: #fff; /* FIX: was #a5f3a7 — poor contrast */
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 99px;
  letter-spacing: 0.06em; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.land-hero-h1 {
  font-size: clamp(36px, 5vw, 64px); /* FIX: removed Cormorant here — Outfit only */
  font-weight: 600; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.land-hero-h1 em {
  font-style: italic; color: #6fcf73;
  font-family: 'Cormorant Garamond', serif; /* Serif only on em — scarcity = premium */
  font-size: 1.08em;
}
.land-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 520px;
  margin: 0 auto 2.75rem; position: relative; z-index: 1;
}

/* ── CHOICE CARDS: DOMINANT HIERARCHY ── */
/* FIX: Player = smaller/secondary, Entrepreneur = bigger/primary */
.land-choose {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Player card — secondary, smaller */
.land-choose-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px; padding: 1.75rem 2rem;
  cursor: pointer; transition: all .22s ease;
  width: 260px; text-align: center; flex-shrink: 0;
}
.land-choose-card:hover {
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/* Entrepreneur card — PRIMARY, larger, glowing */
.land-choose-card.primary {
  background: #4CAF50;
  border: 2px solid #6fcf73;
  border-radius: 20px; padding: 2.25rem 2.5rem;
  width: 300px;
  box-shadow: 0 12px 40px rgba(76,175,80,0.45);
}
.land-choose-card.primary:hover {
  background: #5cbf60;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(76,175,80,0.55);
}

.land-cc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; font-size: 24px;
}
.land-choose-card       .land-cc-icon { background: rgba(255,255,255,0.12); }
.land-choose-card.primary .land-cc-icon { background: rgba(255,255,255,0.25); }

.land-cc-label {
  font-size: 17px; font-weight: 600; color: #fff; margin-bottom: .4rem;
}
.land-choose-card.primary .land-cc-label { font-size: 20px; }

.land-cc-desc {
  font-size: 12.5px; color: rgba(255,255,255,0.65);
  line-height: 1.55; margin-bottom: 1.1rem;
}
.land-choose-card.primary .land-cc-desc { color: rgba(255,255,255,0.85); font-size: 13px; }

.land-cc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 9px 20px;
  border-radius: 99px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: all .18s;
}
.land-choose-card       .land-cc-btn { background: rgba(255,255,255,0.18); color: #fff; }
.land-choose-card:hover .land-cc-btn { background: rgba(255,255,255,0.3); }
.land-choose-card.primary .land-cc-btn { background: #fff; color: #2e7d32; font-weight: 700; }
.land-choose-card.primary:hover .land-cc-btn { background: #f0fff0; }

/* ── STATS BAR — FIXED MOBILE ── */
.land-stats {
  background: #fff;
  display: flex; flex-wrap: wrap; /* FIX: added flex-wrap */
  border-bottom: 1px solid rgba(16,21,133,0.07);
  box-shadow: 0 2px 8px rgba(16,21,133,0.04);
}
.land-stat {
  flex: 1 1 25%; /* FIX: explicit basis for 4-col, wraps to 2×2 on mobile */
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(16,21,133,0.07);
  min-width: 120px;
}
.land-stat:last-child { border-right: none; }
.land-stat-num {
  font-size: 30px; font-weight: 600; color: #101585; line-height: 1;
  /* FIX: removed Cormorant Garamond from stats — not needed here */
}
.land-stat-lbl {
  font-size: 11px; color: #9099b8;
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px;
}

/* ── SECTION WRAPPERS ── */
.land-section-full { padding: 4.5rem 2.5rem; background: #fff; }
.land-section-grey { padding: 4.5rem 2.5rem; background: #eef1f8; }
.land-inner { max-width: 1100px; margin: 0 auto; }

.land-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #4CAF50; margin-bottom: .75rem;
}
.land-eyebrow::before { content: ''; width: 18px; height: 2px; background: #4CAF50; border-radius: 99px; }

/* FIX: Section h2 uses Cormorant Garamond ONLY here — two places max on the page */
.land-section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400; color: #101585;
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: .75rem;
}
.land-section-h em { font-style: italic; color: #4CAF50; }
.land-section-p { font-size: 14.5px; color: #6670a0; line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem; }

/* ── SOLUTION SECTION ── */
.land-proposed {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.land-proposed-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.land-proposed-badge-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}
/* FIX: proposed heading uses Outfit, not another serif block */
.land-proposed-h {
  font-size: 26px; font-weight: 700; color: #101585; line-height: 1.1;
  letter-spacing: -0.01em;
}
.land-proposed-h span { color: #4CAF50; }
.land-proposed-sub    { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: .2rem; }
.land-proposed-subsub { font-size: 12.5px; color: #4CAF50; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.1rem; }
.land-proposed-desc   { font-size: 14px; color: #5a6090; line-height: 1.75; margin-bottom: .5rem; }
.land-proposed-desc strong { color: #101585; }

.land-elements-title {
  display: flex; align-items: center; gap: 10px; margin: 1.75rem 0 1.1rem;
}
.land-elements-title .icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.land-elements-title h3 { font-size: 17px; font-weight: 600; color: #101585; }

.land-element-item {
  display: flex; align-items: flex-start; gap: .875rem;
  background: #fff; border: 1px solid rgba(16,21,133,0.08);
  border-radius: 11px; padding: .875rem 1.1rem;
  margin-bottom: .5rem; transition: all .18s;
  box-shadow: 0 1px 4px rgba(16,21,133,0.04);
}
.land-element-item:hover {
  border-color: rgba(76,175,80,0.3);
  box-shadow: 0 4px 16px rgba(76,175,80,0.1);
  transform: translateX(3px);
}
.land-element-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(16,21,133,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.land-element-text strong { display: block; font-size: 13px; font-weight: 600; color: #101585; margin-bottom: 1px; }
.land-element-text span   { font-size: 12px; color: #8890b0; line-height: 1.5; }
.land-element-check {
  margin-left: auto; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: #4CAF50;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(76,175,80,0.35);
}

/* ── PHOTO CAPTION (kept for reference) ── */
.land-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: .625rem .875rem .75rem;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.92);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.land-court-hero-label {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(16,21,133,0.8); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 5px; letter-spacing: 0.06em;
}
.land-spec-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.land-spec-tag {
  background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.22);
  color: #2e7d32; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
}

/* ── VALUE IMPACT ── */
.land-value-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: .875rem;
}
.land-value-item {
  display: flex; align-items: flex-start; gap: .875rem;
  background: #fff; border: 1px solid rgba(76,175,80,0.12);
  border-radius: 13px; padding: 1.1rem 1.25rem; transition: all .18s;
  box-shadow: 0 1px 6px rgba(16,21,133,0.05);
}
.land-value-item:hover { border-color: rgba(76,175,80,0.3); box-shadow: 0 4px 16px rgba(76,175,80,0.1); }
.land-value-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: #4CAF50; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
  box-shadow: 0 3px 8px rgba(76,175,80,0.35); margin-top: 1px;
}
.land-value-text strong { font-size: 14px; font-weight: 700; color: #101585; display: block; margin-bottom: 2px; }
.land-value-text span   { font-size: 12.5px; color: #6670a0; }

/* ── LOCATIONS ── */
.land-locations {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: .875rem;
}
.land-loc-card {
  background: #fff; border: 1px solid rgba(16,21,133,0.08);
  border-radius: 13px; padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: .875rem;
  cursor: pointer; transition: all .18s;
  box-shadow: 0 1px 6px rgba(16,21,133,0.04);
}
.land-loc-card:hover {
  border-color: rgba(76,175,80,0.3);
  box-shadow: 0 6px 20px rgba(76,175,80,0.12);
  transform: translateY(-2px);
}
.land-loc-flag { font-size: 24px; }
.land-loc-city { font-size: 14px; font-weight: 600; color: #101585; margin-bottom: 2px; }
.land-loc-info { font-size: 12px; color: #9099b8; }
.land-loc-badge {
  margin-left: auto; background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.2);
  color: #2e7d32; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 99px; white-space: nowrap;
}

/* ── SOCIAL PROOF ── */
.land-social-proof {
  background: rgba(76,175,80,0.06); border: 1px solid rgba(76,175,80,0.18);
  border-radius: 12px; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.land-sp-num {
  font-size: 28px; font-weight: 700; color: #4CAF50; flex-shrink: 0; line-height: 1;
}
.land-sp-text { font-size: 13.5px; color: #3a4a60; line-height: 1.5; }
.land-sp-text strong { color: #101585; }
.land-sp-avatars { display: flex; margin-left: auto; }
.land-sp-av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff;
  background: #101585; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; margin-left: -8px;
}
.land-sp-av:first-child { margin-left: 0; }

/* ── FINAL CTA ── */
.land-final {
  background: linear-gradient(135deg, #101585 0%, #1520a8 50%, #0c1168 100%);
  padding: 4.5rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.land-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(76,175,80,0.14), transparent 70%);
}
.land-final-h {
  font-family: 'Cormorant Garamond', serif; /* 2nd and LAST use of Cormorant on page */
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 1rem; position: relative; z-index: 1;
}
.land-final-h em { font-style: italic; color: #6fcf73; }
.land-final-p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; position: relative; z-index: 1; }
.land-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.land-btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #4CAF50; color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(76,175,80,0.4); transition: all .2s;
}
.land-btn-green:hover { background: #5cbf60; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(76,175,80,0.5); }
.land-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22); cursor: pointer; transition: all .2s;
}
.land-btn-white:hover { background: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
.land-footer {
  background: #0a0f4a; padding: 1.5rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.land-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.land-footer-links { display: flex; gap: 1.5rem; }
.land-footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; cursor: pointer; transition: color .15s; }
.land-footer-links a:hover { color: #4CAF50; }

/* ── PLAYER / ENTREPRENEUR APP SHARED ── */
.courts-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.25rem; }
.court-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s, transform .2s; cursor: pointer; }
.court-card:hover { border-color: rgba(76,175,80,0.35); transform: translateY(-2px); }
.court-card-img { height: 160px; position: relative; overflow: hidden; }
.court-card-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#0d2918,#091e10); display: flex; align-items: center; justify-content: center; }
.court-card-city { position: absolute; bottom: 10px; left: 12px; background: rgba(0,0,0,0.65); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; }
.court-card-body { padding: 1.25rem; }
.court-card-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.court-card-location { font-size: 12.5px; color: var(--white3); margin-bottom: .75rem; }
.court-card-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.court-card-price { font-size: 15px; font-weight: 700; color: var(--gold2); }
.court-card-btn { display: block; width: 100%; background: var(--gold-dim); color: var(--gold2); border: 1px solid rgba(76,175,80,0.25); padding: 9px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; cursor: pointer; text-align: center; font-family: 'Outfit',sans-serif; transition: background .15s; }
.court-card-btn:hover { background: rgba(76,175,80,0.2); }
.booking-success { background: var(--green-dim); border: 1px solid rgba(76,175,80,0.25); border-radius: var(--r); padding: 1.75rem; }
.booking-success h3 { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: var(--green); margin-bottom: .75rem; }
.booking-success p { font-size: 13.5px; color: var(--white2); line-height: 1.7; margin-bottom: .5rem; }
.back-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--white3); font-size: 12.5px; font-family: 'Outfit',sans-serif; transition: color .15s; }
.back-btn:hover { color: var(--white2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .land-nav { padding: 0 1.25rem; }
  .land-hero { padding: 3.5rem 1.25rem 4rem; }
  .land-section-full, .land-section-grey { padding: 3rem 1.25rem; }
  .land-proposed { grid-template-columns: 1fr; gap: 2rem; }
  .land-value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .land-hero-h1 { font-size: 32px; }
  .land-choose { flex-direction: column; align-items: center; }
  .land-choose-card, .land-choose-card.primary { width: 100%; max-width: 340px; }
  .land-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(16,21,133,0.07); }
  .land-photo-grid { grid-template-columns: 1fr 1fr; }
  .land-photo-cell.tall { grid-row: span 1; }
  .land-final { padding: 3rem 1.25rem; }
  .land-footer { flex-direction: column; padding: 1.25rem; }
}

/* ── DARK GREEN CAPTION OVERLAY (matching attachment) ── */
.land-photo-caption-dark {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13, 42, 20, 0.88);
  padding: .625rem .875rem .75rem;
  font-size: 12px; font-weight: 600; color: #fff;
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
}
.land-photo-caption-dark svg { flex-shrink: 0; margin-top: 1px; color: #4CAF50; }

/* ── FULL-WIDTH WELLNESS CELL ── */
.land-wellness-cell {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 200px; margin-top: .625rem; background: #0f2d1a;
}
.land-wellness-cell .land-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.land-wellness-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13, 42, 20, 0.88);
  padding: .75rem 1rem;
  font-size: 13px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.land-wellness-caption svg { color: #4CAF50; flex-shrink: 0; }

/* ── VALUE 4-POINTS SECTION ── */
.land-value-section {
  background: #f8faf8;
  border-top: 1px solid rgba(76,175,80,0.15);
  border-bottom: 1px solid rgba(76,175,80,0.15);
  padding: 2rem 2.5rem;
}
.land-value-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 100%;
}
.land-v4-item {
  display: flex; align-items: flex-start; gap: 10px;
}
.land-v4-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: #4CAF50;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-top: 1px;
  box-shadow: 0 2px 8px rgba(76,175,80,0.35);
}
.land-v4-text {
  font-size: 14.5px; color: #2a3050; line-height: 1.55; padding-top: 3px;
}
.land-v4-text strong { color: #101585; font-weight: 700; }

@media (max-width: 600px) {
  .land-value-4 { grid-template-columns: 1fr; }
  .land-value-section { padding: 2rem 1.25rem; }
}

/* ── CHECKLIST 2-COL GRID (full width) ── */
.land-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin-bottom: 2.5rem;
}

/* ── IMAGE STACK ── */
.land-images-stack {
  display: flex; flex-direction: column; gap: .75rem;
}

/* ── NATURAL PHOTO GRID — no cropping, images show at full height ── */
.land-photo-grid-natural {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.land-photo-natural {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(16,21,133,0.10);
}
.land-photo-natural img {
  width: 100%; height: auto; display: block;
  transition: transform .35s ease;
}
.land-photo-natural:hover img { transform: scale(1.02); }

/* ── WELLNESS CELL ── */
.land-wellness-cell {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(16,21,133,0.10);
  position: relative;
}

@media (max-width: 700px) {
  .land-checklist-grid { grid-template-columns: 1fr; }
  .land-photo-grid-natural { grid-template-columns: 1fr 1fr; }
}

/* ── IMAGE RIGHT COLUMN — heights calibrated to match 7-item checklist ── */
/* Left col ≈ 520px total. Right col: hero(140) + grid(3×90+2×6=282) + wellness(90) + gaps(4×6=24) = ~536px ✓ */
.land-img-col {
  display: flex; flex-direction: column; gap: 6px;
}
.land-court-hero {
  border-radius: 10px; overflow: hidden; position: relative; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(16,21,133,0.12);
}
.land-img-col .land-court-hero img {
  width: 100%; height: 140px;
  object-fit: cover; object-position: center top; display: block;
}
.land-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.land-photo-cell {
  border-radius: 8px; overflow: hidden; background: #1a3a28;
}
.land-photo-img {
  width: 100%; height: 90px;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.land-photo-cell:hover .land-photo-img { transform: scale(1.03); }
.land-wellness-img {
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.land-wellness-img img {
  width: 100%; height: 90px;
  object-fit: cover; object-position: center 30%; display: block;
}

/* ── VALUE 4-POINTS: 4 equal columns left-to-right ── */
.land-value-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 100%;
}
.land-v4-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff;
  border: 1px solid rgba(76,175,80,0.15);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 6px rgba(16,21,133,0.05);
}
.land-v4-text { font-size: 13.5px; color: #2a3050; line-height: 1.5; padding-top: 2px; }
.land-v4-text strong { color: #101585; font-weight: 700; display: block; margin-bottom: 2px; }

@media (max-width: 900px) {
  .land-value-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .land-value-4 { grid-template-columns: 1fr 1fr; }
  .land-img-col .land-court-hero img { height: 160px; }
}
