/* Page-specific additions for sections not in the original redesign.
   Move these into assets/style.css when convenient — they're cleanly
   grouped and labelled. */


/* — Midpage image strip between Why Invest and Offer */
.midstrip{
  background:var(--cream);
  padding:0 0 clamp(80px,12vw,140px);
}
.midstrip-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 clamp(20px,3vw,32px);
  border-radius:8px;
  overflow:hidden;
}
.midstrip-inner img{
  width:100%;
  display:block;
  aspect-ratio:21/9;
  object-fit:cover;
  border-radius:8px;
}
@media (max-width:560px){
  .midstrip-inner img{aspect-ratio:16/10}
}

/* ============================================================
   MOBILE AUDIT — comprehensive responsive fixes
   ============================================================ */
@media (max-width:900px){
  /* Hero — proper mobile sizing */
  .hero{min-height:90vh!important;padding:80px 0 40px}
  .hero .display{
    font-size:clamp(36px,9vw,52px)!important;
    line-height:1.05!important;
  }
  .hero .display br{display:none}
  .hero .display em{display:inline}
  .hero-sub{
    font-size:15px!important;
    line-height:1.55!important;
  }
  .hero-actions{
    width:100%;
    flex-direction:column;
    gap:10px;
  }
  .hero-actions .btn,
  .hero-actions .btn-ghost-light{
    width:100%;
    justify-content:center;
    height:52px;
  }
  .hero-badge{margin-bottom:24px}
  .hero-badge-text{font-size:10px;letter-spacing:0.16em}

  /* Landmark section — 2-col grid on mobile */
  .landmark-head h2,
  .landmark-title{font-size:clamp(32px,8vw,44px)!important}
  .landmark-stats{
    grid-template-columns:1fr 1fr!important;
    margin-bottom:0!important;
    /* Drop perimeter borders on mobile — internal dividers do the work */
    border-top:none!important;
    border-bottom:none!important;
  }
  .landmark-stat{
    padding:24px 20px!important;
    border-right:1px solid var(--line)!important;
    border-bottom:1px solid var(--line)!important;
  }
  .landmark-stat:nth-child(2n){border-right:none!important}
  .landmark-stat:nth-last-child(-n+2){border-bottom:none!important}
  .landmark-stat-value{font-size:clamp(36px,8vw,48px)!important}
  .landmark-stat-label{font-size:14px!important}

  /* Why section — single column proper alignment */
  .why-title{font-size:clamp(30px,7.5vw,42px)!important}
  .why-pillar{padding:24px 0!important}
  .why-pillar-num{font-size:32px!important}
  .why-pillar-content h3{font-size:20px!important}

  /* Offer section — 2x2 grid with proper borders */
  .offer .display{font-size:clamp(30px,7.5vw,44px)!important}
  .offer .stats{
    grid-template-columns:1fr 1fr!important;
    gap:0!important;
    /* Drop perimeter borders on mobile */
    border-top:none!important;
    border-bottom:none!important;
  }
  .offer .stats .stat{
    padding:24px 20px!important;
    border-right:1px solid rgba(244,236,221,0.18)!important;
    border-bottom:1px solid rgba(244,236,221,0.18)!important;
  }
  .offer .stats .stat:nth-child(2n){border-right:none!important}
  .offer .stats .stat:nth-last-child(-n+2){border-bottom:none!important}

  /* Team facts — 2x2 grid */
  .team-facts-grid{
    grid-template-columns:1fr 1fr!important;
    /* Drop perimeter borders on mobile */
    border-top:none!important;
    border-bottom:none!important;
  }
  .team-fact{
    padding:24px 20px!important;
    border-right:1px solid var(--line)!important;
    border-bottom:1px solid var(--line)!important;
  }
  .team-fact:nth-child(2n){border-right:none!important}
  .team-fact:nth-last-child(-n+2){border-bottom:none!important}
  .team-fact-num{font-size:48px!important}

  /* Learn cards — already done but add hover-disable on mobile */
  .learn-card:hover .learn-card-image img{transform:none}
  .learn-card:hover .learn-card-arrow{transform:none}

  /* Roadmap timeline — stack vertically */
  .timeline{flex-direction:column;gap:20px}
  .timeline .milestone{flex-direction:row;align-items:center;gap:16px;text-align:left}

  /* Brochure form — full width */
  .brochure-inner{padding:0!important}

  /* Touch targets — minimum 44px */
  .nav-link,.nav-link-drop{min-height:44px;display:flex;align-items:center}

  /* Container padding consistency */
  .container,.container-narrow{
    padding-left:24px;
    padding-right:24px;
  }
}

@media (max-width:560px){
  /* Tighter still on phones */
  .hero{padding:64px 0 32px}
  .hero-badge{padding:6px 12px 6px 10px}
  .hero-badge-text{font-size:9px}
  
  .landmark{padding:64px 0!important}
  .why{padding:64px 0!important}
  .offer{padding:64px 0!important}
  .learn{padding:64px 0!important}
  
  /* Stats stay 2-col with consistent padding across all stat grids */
  .landmark-stat{padding:24px 20px!important}
  .landmark-stat-value{font-size:36px!important}
  .landmark-stat-label{font-size:13px!important}
  
  .offer .stats .stat{padding:24px 20px!important}
  /* Shrink stat-num so the longest word ("Freehold") fits a half-width card */
  .offer .stats .stat-num{font-size:32px!important;letter-spacing:-0.02em!important}
  .team-fact{padding:24px 20px!important}
  
  /* Container padding */
  .container,.container-narrow{
    padding-left:20px;
    padding-right:20px;
  }
}

/* — Hero CTA group + ghost-light variant for dark backgrounds */
.hero-actions{
  display:flex;gap:12px;flex-wrap:wrap;
  margin-top:40px;
}

/* Override default hero text colors — restore cream/paper */
.hero .display{color:var(--paper)!important}
.hero .display em{
  color:var(--paper)!important;
  font-style:italic;
  opacity:1;
}
.hero .hero-sub{
  color:var(--paper)!important;
  font-family:'Fraunces',serif!important;
  font-weight:300!important;
  font-size:clamp(18px,1.8vw,22px)!important;
  line-height:1.5!important;
  letter-spacing:-0.005em!important;
  max-width:560px;
}

/* Modern CTA buttons — both consistent height, clear hierarchy */
.hero-actions .btn,
.hero-actions .btn-ghost-light{
  display:inline-flex;align-items:center;gap:14px;
  height:56px;
  padding:0 28px;
  border-radius:999px;
  font-family:inherit;
  font-size:14px;font-weight:500;
  letter-spacing:0.01em;
  text-decoration:none;
  transition:all 400ms cubic-bezier(0.32,0.72,0,1);
  border:1px solid transparent;
  white-space:nowrap;
}
/* Primary — solid cream */
.hero-actions .btn-primary{
  background:var(--paper);
  color:var(--teal-deep)!important;
  border-color:var(--paper);
}
.hero-actions .btn-primary:hover{
  background:#fff;border-color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(0,0,0,0.2);
}
.hero-actions .btn-primary .pill{
  width:24px;height:24px;
  background:var(--teal-deep);
  border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--paper);
  transition:transform 400ms cubic-bezier(0.32,0.72,0,1);
}
.hero-actions .btn-primary:hover .pill{
  transform:translate(2px,-2px);
}
/* Secondary — outlined */
.btn-ghost-light{
  background:rgba(244,236,221,0.05);
  color:var(--paper)!important;
  border-color:rgba(244,236,221,0.3)!important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.btn-ghost-light:hover{
  background:rgba(244,236,221,0.12)!important;
  border-color:rgba(244,236,221,0.5)!important;
  transform:translateY(-2px);
}

/* Stronger hero overlay for text readability */
.hero-overlay{
  background:linear-gradient(135deg,
    rgba(10,52,50,0.55) 0%,
    rgba(10,52,50,0.35) 40%,
    rgba(10,52,50,0.25) 70%,
    rgba(10,52,50,0.55) 100%)!important;
}
.hero .hero-head{
  position:relative;z-index:2;
}
.hero .display{
  text-shadow:0 2px 24px rgba(0,0,0,0.25);
}
.hero-sub{
  text-shadow:0 1px 12px rgba(0,0,0,0.3);
}

/* — Hero redesigned: single-column, no right meta */
.hero{
  min-height:100vh!important;
  display:flex!important;
  align-items:center;
}
.hero-inner-redesigned{
  display:block!important;
  max-width:1100px;
  width:100%;
}
.hero-inner-redesigned .hero-head{
  max-width:780px;
}

/* Status badge with pulsing dot */
.hero-badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px 8px 14px;
  background:rgba(10,52,50,0.4);
  border:1px solid rgba(244,236,221,0.25);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:999px;
  margin-bottom:32px;
}
.hero-badge-dot{
  width:8px;height:8px;border-radius:50%;
  background:#d4845a;
  position:relative;flex-shrink:0;
}
.hero-badge-dot::before{
  content:'';position:absolute;inset:-4px;
  border-radius:50%;
  background:#d4845a;
  opacity:0.4;
  animation:hero-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-pulse{
  0%,100%{transform:scale(1);opacity:0.4}
  50%{transform:scale(1.6);opacity:0}
}
.hero-badge-text{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(244,236,221,0.95);
  line-height:1;
}

/* — The Idea + Location merged section */
.manifesto{padding:clamp(48px,7vw,80px) 0!important;text-align:center}
.manifesto .manifesto-inner{
  max-width:880px;margin:0 auto;
  padding-bottom:clamp(40px,5vw,60px);
}
.manifesto .manifesto-text{
  font-size:clamp(22px,2.6vw,32px)!important;
  line-height:1.35!important;
  margin-top:16px!important;
  margin-bottom:0!important;
}
.manifesto .place-stats{margin-top:0}

/* — Place section override (tighter horizontal layout) */
.place .place-head{
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:end;
  margin-bottom:48px;
}
.place .place-head h2{font-size:clamp(40px,5vw,72px);line-height:1.05}
.place .place-head h2 em{color:var(--teal-deep);font-style:italic}
.place-lede{
  font-size:17px;line-height:1.7;color:var(--ink-soft);
  max-width:520px;
}
.place-image-wide{
  border-radius:6px;overflow:hidden;
  margin-bottom:48px;
  aspect-ratio:21/9;
}
.place-image-wide img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.place-stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
}
.place-stat{
  padding:32px 24px 32px 0;
  border-right:1px solid var(--line);
  display:flex;flex-direction:column;gap:8px;
}
.place-stat:last-child{border-right:none}
.place-stat:not(:first-child){padding-left:32px}
.place-stat-num{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(28px,3.2vw,40px);
  letter-spacing:-0.02em;line-height:1;
  color:var(--teal-deep);
}
.place-stat-num .unit{
  font-size:0.45em;color:var(--muted);
  margin-left:3px;letter-spacing:0;
}
.place-stat-label{
  font-size:12px;text-transform:uppercase;
  letter-spacing:0.18em;color:var(--muted);
  line-height:1.5;
}
@media (max-width:900px){
  .place .place-head{grid-template-columns:1fr;gap:24px}
  .place-stats{grid-template-columns:1fr 1fr}
  .place-stat:nth-child(2){border-right:none}
  .place-stat:nth-child(3),.place-stat:nth-child(4){border-top:1px solid var(--line)}
  .place-stat:nth-child(3){padding-left:0!important}
}
@media (max-width:560px){
  .place-stats{grid-template-columns:1fr}
  .place-stat{border-right:none;border-bottom:1px solid var(--line);padding:20px 0!important}
  .place-stat:last-child{border-bottom:none}
}

/* ============================================================
   FUTURE LANDMARK SECTION
   ============================================================ */

.landmark{
  padding:clamp(80px,12vw,140px) 0;
  background:var(--paper);
}

/* — Header: title left, lede right */
.landmark-head{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:clamp(40px,6vw,96px);
  align-items:end;
  margin-bottom:clamp(60px,8vw,96px);
  max-width:1280px;
}
.landmark-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(44px,5.5vw,80px);
  line-height:1.02;letter-spacing:-0.025em;
  color:var(--ink);margin:0;
}
.landmark-title em{
  color:var(--teal-deep);font-style:italic;
}
.landmark-lede{
  font-size:17px;line-height:1.7;
  color:var(--ink-soft);
  margin:0;max-width:520px;
}

/* — 6 hero stats in 3-col × 2-row grid */
.landmark-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
  margin-bottom:clamp(60px,8vw,96px);
}
.landmark-stat{
  padding:clamp(40px,4.5vw,56px) clamp(28px,3vw,40px);
  border-right:1px solid var(--line);
  display:flex;flex-direction:column;
}
/* Top row of 3 gets a bottom divider (separating row 1 from row 2) */
.landmark-stat:nth-child(1),
.landmark-stat:nth-child(2),
.landmark-stat:nth-child(3){
  border-bottom:1px solid var(--line);
}
/* Last column (3rd, 6th) drops right border */
.landmark-stat:nth-child(3),
.landmark-stat:nth-child(6){
  border-right:none;
}
.landmark-stat-value{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(48px,6vw,80px);
  line-height:0.95;letter-spacing:-0.035em;
  color:var(--teal-deep);
  margin-bottom:clamp(20px,2.5vw,28px);
  display:flex;align-items:baseline;
  flex-wrap:nowrap;white-space:nowrap;
}
.landmark-stat-num{
  display:inline-flex;align-items:baseline;
}
.landmark-stat-prefix{
  font-size:0.42em;font-weight:400;
  color:var(--muted);
  margin-right:0.2em;
  letter-spacing:-0.005em;
}
.landmark-stat-unit{
  font-size:0.4em;font-weight:300;
  color:var(--ink-soft);
  margin-left:0.06em;
  letter-spacing:-0.01em;
}
.landmark-stat-label{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:18px;line-height:1.4;
  color:var(--ink);letter-spacing:-0.005em;
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
}

/* Hide non-active currency value */
.landmark-stat-value [data-currency]{display:none}
.landmark-stat-value [data-currency].is-active{
  display:inline-flex;align-items:baseline;
}

/* Currency toggle */
.currency-toggle{
  display:inline-flex;align-items:center;
  background:rgba(26,31,30,0.06);
  border-radius:999px;padding:2px;
}
.currency-toggle button{
  appearance:none;-webkit-appearance:none;
  background:transparent;border:none;cursor:pointer;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--muted);
  padding:5px 11px;border-radius:999px;
  transition:all 300ms cubic-bezier(0.32,0.72,0,1);
  line-height:1;
}
.currency-toggle button.is-active{
  background:var(--teal-deep);color:var(--paper);
}
.currency-toggle button:hover:not(.is-active){color:var(--ink)}

/* — 6 feature cards */
.landmark-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(20px,2vw,28px);
}
.landmark-card{
  position:relative;
  background:var(--cream);
  padding:clamp(40px,4vw,52px) clamp(28px,3vw,36px) clamp(36px,3.5vw,44px);
  border:1px solid rgba(26,31,30,0.08);
  border-radius:8px;
  display:flex;flex-direction:column;
  overflow:hidden;
  transition:all 500ms cubic-bezier(0.32,0.72,0,1);
}
/* Top accent stripe (subtle, becomes more visible on hover) */
.landmark-card::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:2px;
  background:var(--teal-deep);
  opacity:0;
  transition:opacity 500ms cubic-bezier(0.32,0.72,0,1);
}
.landmark-card:hover{
  background:#fff;
  border-color:var(--teal-deep);
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(10,52,50,0.08);
}
.landmark-card:hover::before{opacity:1}
.landmark-card-icon{
  width:64px;height:64px;
  margin-bottom:clamp(28px,3vw,36px);
  color:var(--teal-deep);
}
.landmark-card-icon svg{width:100%;height:100%;display:block}
.landmark-card-title{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:24px;line-height:1.2;letter-spacing:-0.014em;
  color:var(--ink);margin-bottom:14px;
}
.landmark-card-desc{
  font-size:15px;line-height:1.65;
  color:var(--ink-soft);
}
.landmark-card-desc strong{
  color:var(--teal-deep);font-weight:500;
}

/* — Wide cinematic image strip between stats and cards */
.landmark-image{
  margin-bottom:clamp(60px,8vw,96px);
  border-radius:8px;
  overflow:hidden;
  aspect-ratio:21/8;
  background:var(--cream-deep);
}
.landmark-image img{
  width:100%;height:100%;object-fit:cover;
  display:block;
}

/* Responsive */
@media (max-width:1100px){
  .landmark-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  /* Note: .landmark-stats grid + cell borders + padding are handled in the
     MOBILE AUDIT block above (2-col with internal dividers). Don't re-set
     them here — it would fight the audit. */
  .landmark-head{grid-template-columns:1fr;gap:24px;align-items:start}
  .landmark-image{aspect-ratio:16/9}
}
@media (max-width:560px){
  .landmark-grid{grid-template-columns:1fr}
}

/* ============================================================
   WHY INVEST WITH KABISU
   ============================================================ */

.why{
  padding:clamp(80px,12vw,140px) 0;
  background:var(--cream);
}

/* Asymmetric grid: intro left (sticky-feeling), pillars right */
.why-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(48px,7vw,120px);
  align-items:start;
  max-width:1280px;
}

/* Left column — pinned intro */
.why-intro{
  position:sticky;top:120px;
  align-self:start;
}
.why-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(36px,4.4vw,60px);
  line-height:1.05;letter-spacing:-0.025em;
  color:var(--ink);
  margin:24px 0 32px;
}
.why-title em{
  color:var(--teal-deep);font-style:italic;
}
.why-accent{
  color:var(--teal-deep);
}
.why-lede{
  font-size:17px;line-height:1.7;
  color:var(--ink-soft);
  max-width:480px;
  margin:0 0 40px;
}
.why-lede strong{
  color:var(--ink);font-weight:500;
}
.why-link{
  display:inline-flex;align-items:center;gap:10px;
  color:var(--teal-deep);
  font-size:15px;font-weight:500;
  text-decoration:none;
  padding:14px 0;
  border-bottom:1px solid var(--teal-deep);
  transition:all 400ms cubic-bezier(0.32,0.72,0,1);
}
.why-link:hover{
  gap:14px;
  color:var(--ink);
  border-color:var(--ink);
}
.why-link svg{flex-shrink:0;transition:transform 400ms cubic-bezier(0.32,0.72,0,1)}
.why-link:hover svg{transform:translate(2px,-2px)}

/* Right column — stacked pillars */
.why-pillars{
  display:flex;flex-direction:column;
  gap:0;
}
.why-pillar{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:clamp(20px,2.5vw,32px);
  padding:clamp(32px,4vw,44px) 0;
  border-bottom:1px solid rgba(26,31,30,0.1);
  transition:padding-left 500ms cubic-bezier(0.32,0.72,0,1);
}
.why-pillar:first-child{border-top:1px solid rgba(26,31,30,0.1)}
.why-pillar:hover{padding-left:8px}

.why-pillar-num{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(36px,4vw,52px);
  line-height:0.9;letter-spacing:-0.03em;
  color:var(--teal-deep);
  opacity:0.5;
  transition:opacity 500ms cubic-bezier(0.32,0.72,0,1);
  min-width:1.2em;
}
.why-pillar:hover .why-pillar-num{opacity:1}

.why-pillar-content h3{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:clamp(22px,2.4vw,28px);
  line-height:1.15;letter-spacing:-0.012em;
  color:var(--ink);
  margin:0 0 12px;
}
.why-pillar-content h3 em{
  color:var(--teal-deep);font-style:italic;
}
.why-pillar-content p{
  font-size:15px;line-height:1.65;
  color:var(--ink-soft);
  margin:0;
}

/* Responsive */
@media (max-width:900px){
  .why-grid{grid-template-columns:1fr;gap:48px}
  .why-intro{position:static}
  .why-title br{display:none}
}
@media (max-width:560px){
  .why-pillar{grid-template-columns:auto 1fr;gap:20px}
  .why-pillar:hover{padding-left:0}
}

/* — Offer section stat-label alignment fix */
/* Was: align-items:start — REMOVED. It caused mobile cells to size to
   their content, so cells in the same row had different heights and the
   horizontal divider between row 1 and row 2 ended up staggered. Default
   align-items:stretch makes every cell fill the row height, so all cell
   border-bottoms land at the same y. The min-height:3em on stat-label
   below still gives labels a consistent visual rhythm at desktop. */
.offer .stats .stat{
  text-align:left;
  padding:32px;
  border-right:1px solid rgba(244,236,221,0.12);
}
.offer .stats .stat:last-child{border-right:none}
.offer .stats .stat-label{
  min-height:3em;
  display:block;
}

/* — Team facts — depersonalized, no names */
.team-facts-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line-strong);
  border-bottom:1px solid var(--line-strong);
  margin-top:48px;
}
.team-fact{
  padding:40px 32px;
  border-right:1px solid var(--line);
}
.team-fact:last-child{border-right:none}
.team-fact-num{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(56px,7vw,88px);
  letter-spacing:-0.035em;line-height:0.95;
  color:var(--teal-deep);margin-bottom:20px;
}
.team-fact-num .unit{font-size:0.38em;color:var(--muted);margin-left:4px;letter-spacing:0;font-weight:300}
.team-fact-label{
  font-size:11px;text-transform:uppercase;letter-spacing:0.2em;
  color:var(--muted);line-height:1.6;
}
.team-cta{margin-top:48px}
.team-cta a{
  display:inline-flex;align-items:center;gap:10px;
  padding-bottom:4px;border-bottom:1px solid var(--line);
  color:var(--teal-deep);text-decoration:none;
  font-size:14px;letter-spacing:0.02em;
  transition:all 400ms cubic-bezier(0.32,0.72,0,1);
}
.team-cta a:hover{border-bottom-color:var(--teal-deep);padding-left:4px}

/* ============================================================
   LEARN MORE — 4 IMAGE TILES
   ============================================================ */
.learn{
  padding:clamp(80px,12vw,140px) 0;
  background:var(--paper);
}
.learn-head{
  margin-bottom:clamp(48px,6vw,72px);
  max-width:780px;
}
.learn-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(40px,5vw,72px);
  line-height:1.02;letter-spacing:-0.025em;
  color:var(--ink);
  margin:24px 0 0;
}
.learn-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(12px,1.2vw,20px);
}
.learn-card{
  position:relative;
  display:block;
  aspect-ratio:3/4.4;
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
  color:var(--paper);
  background:var(--teal-deep);
  isolation:isolate;
}
.learn-card-image{
  position:absolute;inset:0;
  overflow:hidden;
}
.learn-card-image img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform 1.4s cubic-bezier(0.32,0.72,0,1);
}
.learn-card:hover .learn-card-image img{
  transform:scale(1.08);
}
.learn-card::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    rgba(10,52,50,0) 0%,
    rgba(10,52,50,0.1) 35%,
    rgba(10,52,50,0.55) 65%,
    rgba(10,52,50,0.92) 100%);
  z-index:1;
  transition:background 600ms cubic-bezier(0.32,0.72,0,1);
}
.learn-card:hover::after{
  background:linear-gradient(180deg,
    rgba(10,52,50,0.05) 0%,
    rgba(10,52,50,0.2) 35%,
    rgba(10,52,50,0.7) 65%,
    rgba(10,52,50,0.96) 100%);
}

/* Arrow now lives inside title row, no longer absolute */
.learn-card-arrow{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(244,236,221,0.35);
  background:rgba(244,236,221,0.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  color:var(--paper);
  transition:all 500ms cubic-bezier(0.32,0.72,0,1);
}
.learn-card:hover .learn-card-arrow{
  background:var(--paper);
  color:var(--teal-deep);
  border-color:var(--paper);
  transform:translate(4px,-4px);
}

/* Title row at bottom: title left, arrow right */
.learn-card-overlay{
  position:absolute;
  left:clamp(24px,2.5vw,32px);
  right:clamp(24px,2.5vw,32px);
  bottom:clamp(28px,3vw,40px);
  z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
}
.learn-card-title{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:clamp(26px,2.8vw,38px);
  line-height:1;letter-spacing:-0.02em;
  color:var(--paper);
}

@media (max-width:1100px){
  .learn-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .learn-card{aspect-ratio:4/5}
}
@media (max-width:560px){
  .learn-grid{grid-template-columns:1fr}
  .learn-card{aspect-ratio:16/11}
}

/* — Featured journal cards (Go Beyond Traditional Real Estate) */
.featured-journal{padding:clamp(80px,12vw,140px) 0;background:var(--paper)}
/* Override Roadmap to cream for visual rhythm */
.journey{background:var(--cream)!important}
.featured-journal-head{text-align:center;max-width:840px;margin:0 auto 64px}
.featured-journal-head h2{font-size:clamp(34px,4.4vw,56px);margin-top:20px}
.featured-journal-head h2 em{color:var(--teal-deep);font-style:italic}
.featured-journal-pre{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:clamp(18px,2vw,22px);line-height:1.45;
  color:var(--ink-soft);margin-top:28px;letter-spacing:-0.005em;
}
.journal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.journal-card{
  display:flex;flex-direction:column;
  text-decoration:none;color:inherit;
  transition:transform 500ms cubic-bezier(0.32,0.72,0,1);
}
.journal-card:hover{transform:translateY(-4px)}
.journal-card-img{
  aspect-ratio:16/10;overflow:hidden;border-radius:4px;
  margin-bottom:24px;background:var(--cream-deep);
}
.journal-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.4s cubic-bezier(0.32,0.72,0,1);
}
.journal-card:hover .journal-card-img img{transform:scale(1.04)}
.journal-card h3{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:24px;letter-spacing:-0.012em;line-height:1.25;
  color:var(--ink);
}
.journal-card-tag{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:0.2em;color:var(--teal);
  text-transform:uppercase;margin-bottom:12px;
}
.featured-journal-cta{margin-top:56px;text-align:center}
@media (max-width:900px){.journal-grid{grid-template-columns:1fr;gap:40px}}

/* — Brochure form section — split layout */
.brochure{padding:clamp(80px,12vw,140px) 0;background:var(--teal-deep);color:var(--paper);position:relative;overflow:hidden}
.brochure::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 80% 20%,rgba(184,92,60,0.1),transparent 60%);
}
.brochure-inner{position:relative;z-index:1;display:grid;grid-template-columns:5fr 7fr;gap:80px;align-items:start}
.brochure-copy h2{font-size:clamp(34px,4.4vw,56px);color:var(--paper);margin-top:20px}
.brochure-copy h2 em{color:rgba(184,92,60,0.9);font-style:italic}
.brochure-copy .eyebrow{color:rgba(244,236,221,0.55)}
.brochure-lede{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:22px;line-height:1.4;letter-spacing:-0.005em;
  color:var(--paper);margin:32px 0 24px;
}
.brochure-copy p{font-size:15px;line-height:1.7;color:rgba(244,236,221,0.78);margin-bottom:14px}
.brochure-copy h2 + p{margin-top:24px}
.brochure-copy strong{color:var(--paper);font-weight:500}
/* Form internals: see assets/style.css (.contact-form / .form-row /
   .form-field / .form-fieldset / .form-options / .form-option /
   .form-consent / .form-actions / .btn-pill / .form-message and the
   shared .is-invalid + .is-submitted rules). The brochure form on
   this page reuses the same classes so we have one source of truth. */
@media (max-width:900px){.brochure-inner{grid-template-columns:1fr;gap:48px}}
