/* ═══════════════════════════════════════
   BASE & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
img, picture, video { max-width: 100%; height: auto; }
img { display: block; }

:root {
  --bg:        #F4EFE6;
  --bg-card:   #EDEAE3;
  --bg-warm:   #EDE8DD;
  --white:     #FDFCF9;
  --black:     #1A1916;
  --ink:       #2E2B26;
  --mid:       #7A7368;
  --light:     #B0A99E;
  --rule:      #DDD8CE;
  --brown:     #7C5C3E;
  --brown-l:   #A8845F;
  --brown-p:   #E8DCCE;
  --brown-d:   #5A3E28;
  --green:     #3D5247;
  --green-l:   #5C7A68;
  --green-p:   #C8D8CC;
  --green-d:   #2A3A32;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-2xl:  40px;
  --r-pill: 999px;
  --sans: 'Instrument Sans', -apple-system, 'Helvetica Neue', sans-serif;
  --shadow-card: 0 2px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-nav:  0 2px 28px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lift: 0 16px 52px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(61, 82, 71, 0.12);
}
@supports (overflow: clip) {
  html { overflow-x: clip; }
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  transform: none;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding-left: max(12px, env(safe-area-inset-left, 0px));
  padding-right: max(12px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  pointer-events: none;
}
.nav-wrap > nav {
  width: 100%;
  max-width: 1480px;
}
nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 90px;
  background: rgba(253,252,249,0.93);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-nav);
  padding: 14px 16px 14px 24px;
  gap: 0;
  transition: padding .3s, box-shadow .3s;
}

/* Logo — SVG version */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: 0.75; }
/* Logos: !important beats global `img { height: auto; max-width:100% }` (line 5) */
nav .nav-logo > img {
  flex-shrink: 0;
  display: block;
  box-sizing: border-box;
  width: auto !important;
  height: 67.5px !important;
  max-width: min(450px, 90vw) !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: contain;
  object-position: left center;
}
/* Fallback text logo if SVG fails */
.nav-logo-text {
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.nav-logo-top, .nav-logo-bot { display: block; }
.nav-logo-line {
  display: block; width: 100%; height: 0;
  border-top: 1px solid var(--brown);
  margin: 1px 0;
}

.nav-links {
  display: flex; gap: 2px; list-style: none; flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 14px; font-weight: 500; letter-spacing: .035em;
  color: var(--mid); text-decoration: none;
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: background .18s, color .18s;
  white-space: nowrap; display: block;
}
.nav-links > li > a:hover { background: rgba(0,0,0,.05); color: var(--black); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 210px; padding: 8px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 600;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown li a {
  display: block;
  font-size: 14px; font-weight: 500; letter-spacing: .03em;
  color: var(--mid); text-decoration: none;
  padding: 10px 16px; border-radius: var(--r-md);
  transition: background .15s, color .15s;
}
.nav-dropdown li a:hover { background: var(--bg); color: var(--ink); }

.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }
.nav-btn {
  font-size: 13.5px; font-weight: 600; letter-spacing: .035em;
  text-decoration: none; padding: 9px 20px;
  border-radius: var(--r-pill);
  transition: all .2s; white-space: nowrap;
}
.nav-btn-ghost { color: var(--ink); border: 1px solid var(--rule); background: transparent; }
.nav-btn-ghost:hover { border-color: var(--green); color: var(--green); }
.nav-btn-fill { color: var(--white); background: var(--green); border: 1px solid transparent; }
.nav-btn-fill:hover { background: var(--green-l); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1), opacity .28s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 490;
  padding:
    max(118px, calc(env(safe-area-inset-top, 0px) + 72px))
    max(32px, env(safe-area-inset-right, 0px))
    max(48px, env(safe-area-inset-bottom, 0px))
    max(32px, env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .32s cubic-bezier(0.22, 1, 0.36, 1), transform .32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
.nav-mobile-links { list-style: none; }
.nav-mobile-links > li { border-bottom: 1px solid var(--rule); }
.nav-mobile-links > li > a {
  display: flex;
  align-items: center;
  font-size: 22px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
  padding: 16px 0;
  min-height: 48px;
  touch-action: manipulation;
}
.nav-mobile-sub { list-style: none; padding: 0 0 16px 16px; }
.nav-mobile-sub li a {
  display: flex;
  align-items: center;
  font-size: 15px; color: var(--mid); text-decoration: none;
  padding: 12px 0;
  min-height: 44px;
  touch-action: manipulation;
}
.nav-mobile-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.nav-mobile-actions .nav-btn { text-align: center; padding: 14px 24px; font-size: 14px; min-height: 48px; touch-action: manipulation; }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: block;
    padding-bottom: max(100px, calc(env(safe-area-inset-bottom, 0px) + 88px));
  }
}

/* ═══════════════════════════════════════
   MOBILE HERO BRAND STRIP (homepage only — index.html)
═══════════════════════════════════════ */
.hero-mobile-brand {
  display: none;
}
@media (max-width: 768px) {
  .hero-mobile-brand {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 92px 0 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 16 / 9;
    max-height: min(38vh, 280px);
    min-height: 140px;
  }
  .hero-mobile-brand-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
  }
  .hero-mobile-brand-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(88vw, 300px);
    height: auto;
    max-height: min(78%, 200px);
    opacity: 1;
    object-fit: contain;
    pointer-events: none;
    filter: none;
  }
}
@media (max-width: 390px) {
  .hero-mobile-brand {
    margin-top: 84px;
    max-height: min(36vh, 240px);
    min-height: 120px;
  }
}

/* ═══════════════════════════════════════
   HERO — Home page
═══════════════════════════════════════ */
.hero {
  position: relative;
  width: min(1480px, 94vw);
  aspect-ratio: 16/10;
  max-height: calc(100vh - 136px - 40px);
  min-height: 340px;
  margin: 0 auto 40px;
  margin-top: 136px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .hero {
    aspect-ratio: 4/3;
    max-height: calc(100vh - 108px - 32px);
    max-height: calc(100svh - 108px - 32px);
    min-height: 300px;
    margin-top: 108px;
  }
}
@media (max-width: 600px) {
  .hero {
    width: min(1480px, 100%);
    margin-top: 92px;
    border-radius: var(--r-xl);
    min-height: 260px;
  }
}
@media (max-width: 390px) {
  .hero {
    margin-top: 84px;
    min-height: 240px;
  }
}

.hero-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,25,22,.1) 0%, rgba(26,25,22,.0) 40%, rgba(26,25,22,.58) 100%),
    url('../images/hero-main.webp') center/cover no-repeat;
  background-color: #3a2e20;
}
.hero--bespoke .hero-img {
  background:
    linear-gradient(to bottom, rgba(26,25,22,.1) 0%, rgba(26,25,22,.0) 40%, rgba(26,25,22,.58) 100%),
    url('../images/hero-bespoke.webp') center/cover no-repeat;
  background-color: #3a2e20;
}
.hero--extensions .hero-img {
  background:
    linear-gradient(to bottom, rgba(26,25,22,.1) 0%, rgba(26,25,22,.0) 40%, rgba(26,25,22,.58) 100%),
    url('../images/hero-extensions.webp') center/cover no-repeat;
  background-color: #2a3020;
}
.hero--commercial .hero-img {
  background:
    linear-gradient(to bottom, rgba(26,25,22,.1) 0%, rgba(26,25,22,.0) 40%, rgba(26,25,22,.58) 100%),
    url('../images/hero-commercial.webp') center/cover no-repeat;
  background-color: #282828;
}

.hero-content {
  position: absolute; inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 44px) clamp(18px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px);
  z-index: 2;
}

.hero-left {
  position: relative;
  align-self: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px) clamp(18px, 3.5vw, 44px) clamp(20px, 2.5vw, 28px);
  border-radius: var(--r-lg);
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: inherit;
  z-index: 0;
  mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, black 40%, transparent 100%);
}

.hero-h1 {
  position: relative; z-index: 1;
  font-size: clamp(26px, 4.5vw, 68px);
  font-weight: 400; line-height: 1.25; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto auto;
  gap: 0 20px;
  align-items: center;
}
.hero-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: opacity .3s ease;
}
.hero-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Garden Rooms first row — make it pop */
.hero-row:first-child .hero-line-text {
  font-size: 1.1em;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .hero-grid:hover .hero-row { opacity: 0.22; }
  .hero-grid .hero-row:hover { opacity: 1; }
}

@keyframes hero-drop {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-line-text {
  grid-column: 1; white-space: nowrap;
  text-decoration: none; color: inherit;
  opacity: 0;
  animation: hero-drop .85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-line-items {
  grid-column: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 18px; text-align: left;
  opacity: 0;
  animation: hero-drop .85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-row:nth-child(1) .hero-line-text,
.hero-row:nth-child(1) .hero-line-items { animation-delay: 0.15s; }
.hero-row:nth-child(2) .hero-line-text,
.hero-row:nth-child(2) .hero-line-items { animation-delay: 0.4s; }
.hero-row:nth-child(3) .hero-line-text,
.hero-row:nth-child(3) .hero-line-items { animation-delay: 0.65s; }

.hero-line-item {
  display: block; font-size: 15px; letter-spacing: normal; line-height: 1.5;
  color: rgba(255,255,255,.80); text-decoration: none;
  transition: color .2s;
}
.hero-line-item:hover { color: var(--white); }

.btn-hero-cta {
  position: relative; z-index: 1;
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--white); background: var(--brown);
  padding: 12px 26px; border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-hero-cta:hover { background: var(--brown-l); transform: translateY(-1px); }

/* News card */
@keyframes glimmer {
  0%   { left: -60%; opacity: .5; }
  50%  { opacity: 1; }
  100% { left: 120%; opacity: .5; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 24px rgba(0,0,0,.12), 0 0 0 rgba(124,92,62,.1); }
  50%      { box-shadow: 0 4px 24px rgba(0,0,0,.12), 0 0 22px rgba(124,92,62,.22); }
}
.hero-news-card {
  position: absolute; top: clamp(14px, 2.5vw, 36px); right: clamp(18px, 3.5vw, 44px);
  display: flex; gap: clamp(10px, 1.5vw, 14px); align-items: center;
  background: rgba(253,252,249,.96); backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: clamp(12px, 1.5vw, 15px) clamp(14px, 1.5vw, 18px);
  width: min(320px, calc(100vw - 2 * clamp(18px, 3.5vw, 44px) - 40px));
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  overflow: hidden;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-news-card::before {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.7) 50%, transparent 100%);
  pointer-events: none; z-index: 0;
  animation: glimmer 3s ease-in-out infinite;
}
.hero-news-thumb {
  position: relative; z-index: 1;
  width: clamp(48px, 7vw, 64px); height: clamp(48px, 7vw, 64px);
  border-radius: var(--r-sm); flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brown-p) 0%, var(--green-p) 100%);
}
.hero-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-news-body { position: relative; z-index: 1; min-width: 0; }
.hero-news-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid);
  display: block; margin-bottom: 5px;
}
.hero-news-title { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.35; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }
  .hero-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .hero-line-text,
  .hero-line-items {
    grid-column: unset;
    width: 100%;
    min-width: 0;
  }
  .hero-line-text {
    white-space: normal;
    font-size: clamp(14px, 3.6vw, 18px);
    line-height: 1.35;
  }
  .hero-line-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    text-align: left;
  }
  .hero-line-item {
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 768px) {
  /* Let hero grow with stacked content — avoids clipping over fixed short aspect box */
  .hero {
    aspect-ratio: unset;
    height: auto;
    min-height: min(42vh, 360px);
    max-height: none;
    overflow: visible;
    margin-top: 14px;
    margin-bottom: 28px;
  }
  .hero-img {
    min-height: 100%;
  }
  .hero-content {
    position: relative;
    inset: unset;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
  }
  .hero-left {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px 18px;
    align-self: stretch;
  }
  .hero-h1 {
    margin-bottom: 14px;
  }
  .hero-news-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow: visible;
    padding: 14px 16px;
    gap: 14px;
    box-sizing: border-box;
    min-width: 0;
    word-break: break-word;
  }
  .hero-news-body {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .hero-news-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.45;
    margin-bottom: 6px;
    white-space: normal;
  }
  .hero-news-title {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-news-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }
}
@media (max-width: 640px) {
  .hero-left::before {
    mask-image: none;
    -webkit-mask-image: none;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hero-row {
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }
  .hero-line-text {
    font-size: clamp(17px, 4.5vw, 20px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.22;
    display: block;
  }
  .hero-line-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }
  .hero-line-item {
    flex: 0 1 auto;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.3;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.92);
    overflow-wrap: anywhere;
  }
  .hero-line-item:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
  }
  .btn-hero-cta {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════
   GARDEN ROOMS FEATURE STRIP (homepage)
═══════════════════════════════════════ */
.gr-strip {
  width: min(1480px, 94vw);
  margin: 0 auto 14px;
  padding: 0 6px;
}
.gr-strip-inner {
  background: var(--brown);
  border-radius: var(--r-xl);
  padding: 36px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.gr-strip-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent 0, transparent 8px,
    rgba(255,255,255,.025) 8px, rgba(255,255,255,.025) 9px
  );
  pointer-events: none;
}
.gr-strip-text { position: relative; z-index: 1; }
.gr-strip-kicker {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.gr-strip-h {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.1;
  color: var(--white);
}
.gr-strip-h em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.55); }
.gr-strip-actions { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-strip-w {
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 22px; border-radius: var(--r-pill);
  background: var(--white); color: var(--brown);
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-strip-w:hover { background: var(--bg); transform: translateY(-1px); }
.btn-strip-ghost {
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 22px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  text-decoration: none; transition: all .2s;
}
.btn-strip-ghost:hover { border-color: rgba(255,255,255,.7); color: var(--white); background: rgba(255,255,255,.14); }
@media (max-width: 768px) {
  .gr-strip-inner { flex-direction: column; align-items: flex-start; padding: 28px 28px; }
}
@media (max-width: 600px) {
  .gr-strip-inner { padding: 22px 18px; gap: 16px; }
  .gr-strip-actions {
    flex-direction: column;
    width: 100%;
    align-self: stretch;
    gap: 10px;
  }
  .btn-strip-w,
  .btn-strip-ghost {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ═══════════════════════════════════════
   INTRO BLOCK
═══════════════════════════════════════ */
.intro-block {
  max-width: 820px; margin: 0 auto 48px;
  padding: 0 32px; text-align: center;
}
.intro-headline {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.1;
  color: var(--ink); margin-bottom: 18px;
}
.intro-sub {
  font-size: 16.5px; line-height: 1.7; color: var(--mid);
  margin-bottom: 10px;
}
.intro-sub:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   SECTION RHYTHM
═══════════════════════════════════════ */
.section { padding: 80px 32px; max-width: 1360px; margin: 0 auto; }
.section-sm { padding: 48px 32px; max-width: 1360px; margin: 0 auto; }
.section-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
  margin-bottom: 16px;
}
.section-h2 .light { font-weight: 400; color: var(--mid); }
.section-h2 em { font-style: italic; font-weight: 400; color: var(--brown-l); }
.section-h2 .green-em { font-style: italic; font-weight: 400; color: var(--green-l); }
.section-body { font-size: 15px; line-height: 1.85; color: var(--mid); }

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.cards-section {
  width: min(1480px, 94vw);
  margin: 0 auto;
  padding: 0 6px 14px;
}
.cards-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px; padding: 0 4px;
}
.cards-header h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1;
}
.cards-header h2 .light { font-weight: 400; color: var(--mid); }
.cards-meta { font-size: 13px; color: var(--mid); }

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
/* Garden Rooms card special — spans left */
.cards-grid .scard--garden-feature {
  grid-column: span 2;
}

.scard {
  background: var(--white);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .32s cubic-bezier(.25,.46,.45,.94), box-shadow .32s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .scard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
  }
}
.scard-img {
  width: 100%; overflow: hidden; position: relative;
  flex-shrink: 0;
}
.scard--garden-feature .scard-img { aspect-ratio: 16/8; }
.scard:not(.scard--garden-feature) .scard-img { aspect-ratio: 16/10; }

.scard-img-inner {
  width: 100%; height: 100%;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
@media (hover: hover) and (pointer: fine) {
  .scard:hover .scard-img-inner { transform: scale(1.055); }
}

/* Placeholder gradients — replace with real images */
.scard--garden-feature .scard-img-inner { background: linear-gradient(145deg, #5a3c22 0%, #8c6440 30%, #4a5a40 65%, #2d3828 100%); }
.scard--bespoke       .scard-img-inner { background: linear-gradient(145deg, #3a2a18 0%, #6b4828 45%, #2a2a20 100%); }
.scard--convert       .scard-img-inner { background: linear-gradient(145deg, #1e2e26 0%, #3d5247 45%, #1e2820 100%); }
.scard--commercial    .scard-img-inner { background: linear-gradient(145deg, #1e2020 0%, #2e3828 50%, #3a2818 100%); }

.scard-img-inner::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(168deg, transparent 0, transparent 10px, rgba(255,255,255,.016) 10px, rgba(255,255,255,.016) 11px);
}

/* Placeholder image element */
.scard-img-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.15);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}

.scard-img-label {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.28); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 11px; border-radius: var(--r-pill);
}

.scard-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 9px; }

.scard--garden-feature .scard-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 26px 28px 28px;
}
.scard--garden-feature .scard-body-left { grid-column: 1; padding-right: 32px; border-right: 1px solid var(--rule); }
.scard--garden-feature .scard-body-right { grid-column: 2; padding-left: 32px; }

.scard-num {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--light);
}
.scard-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.05;
}
.scard-title em { font-style: italic; font-weight: 400; color: var(--mid); }
.scard-desc { font-size: 13px; line-height: 1.75; color: var(--mid); flex: 1; }

.scard-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.chip {
  font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid); background: var(--bg);
  border-radius: var(--r-pill); padding: 5px 11px;
  transition: background .18s, color .18s;
}
.scard--garden-feature:hover .chip,
.scard--bespoke:hover    .chip { background: var(--brown-p); color: var(--brown); }
.scard--convert:hover    .chip { background: var(--green-p); color: var(--green); }
.scard--commercial:hover .chip { background: var(--bg-card); color: var(--mid); }

.scard-footer {
  margin-top: 12px; padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.scard-cta-btn {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-decoration: none; padding: 8px 16px;
  border-radius: var(--r-pill); border: 1px solid transparent;
  transition: all .2s;
}
.scard--garden-feature .scard-cta-btn,
.scard--bespoke    .scard-cta-btn { color: var(--brown);   border-color: var(--brown-p); background: var(--brown-p); }
.scard--convert    .scard-cta-btn { color: var(--green);   border-color: var(--green-p); background: var(--green-p); }
.scard--commercial .scard-cta-btn { color: var(--mid);     border-color: var(--rule);    background: var(--bg);      }

.scard--garden-feature:hover .scard-cta-btn,
.scard--bespoke:hover    .scard-cta-btn { background: var(--brown);   color: var(--white); border-color: var(--brown); }
.scard--convert:hover    .scard-cta-btn { background: var(--green);   color: var(--white); border-color: var(--green); }
.scard--commercial:hover .scard-cta-btn { background: var(--ink);     color: var(--white); border-color: var(--ink); }

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .scard--garden-feature { grid-column: 1 / -1; }
  .scard--garden-feature .scard-body { grid-template-columns: 1fr; }
  /* Reset column placement — otherwise grid-column: 2 creates an implicit narrow track */
  .scard--garden-feature .scard-body-left,
  .scard--garden-feature .scard-body-right {
    grid-column: 1;
  }
  .scard--garden-feature .scard-body-left { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 20px; margin-bottom: 20px; }
  .scard--garden-feature .scard-body-right { padding-left: 0; }
  .scard--garden-feature .scard-chips {
    gap: 8px;
    justify-content: flex-start;
  }
  .scard--garden-feature .scard-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .scard--garden-feature { grid-column: 1; }
}

/* ═══════════════════════════════════════
   USE CASE GRID (Okopod-style)
═══════════════════════════════════════ */
.usecases-section {
  width: min(1480px, 94vw);
  margin: 0 auto;
  padding: 0 6px 14px;
}
.usecases-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px; padding: 0 4px;
}
.usecases-header h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700; letter-spacing: -.025em;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.uc-card {
  background: var(--white);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .28s, box-shadow .28s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.uc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.uc-img {
  aspect-ratio: 3/4;
  background: var(--bg-card) center/cover;
  position: relative; overflow: hidden;
}
/* Placeholder gradients */
.uc-card:nth-child(1) .uc-img { background: linear-gradient(160deg, #3d5247 0%, #2d4438 100%); }
.uc-card:nth-child(2) .uc-img { background: linear-gradient(160deg, #5a3c22 0%, #7c5c3e 100%); }
.uc-card:nth-child(3) .uc-img { background: linear-gradient(160deg, #2a3020 0%, #3d5247 100%); }
.uc-card:nth-child(4) .uc-img { background: linear-gradient(160deg, #3a2818 0%, #6b4828 100%); }
.uc-card:nth-child(5) .uc-img { background: linear-gradient(160deg, #1e2820 0%, #3d5247 100%); }
.uc-body { padding: 14px 16px 16px; }
.uc-label {
  font-size: 12px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px;
}
.uc-desc { font-size: 11.5px; color: var(--mid); line-height: 1.55; }
@media (max-width: 900px) {
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-img { aspect-ratio: 4 / 3; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .uc-img { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 520px;
    margin-inline: auto;
  }
  .uc-img { aspect-ratio: 16 / 10; }
  .uc-body { padding: 16px 18px 18px; }
  .uc-desc { font-size: 13px; line-height: 1.6; }
}

/* ═══════════════════════════════════════
   SPLIT SECTIONS
═══════════════════════════════════════ */
.split-wrap {
  width: min(1480px, 94vw);
  margin: 0 auto 14px;
  padding: 0 6px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; align-items: stretch;
}
.split-wrap.reverse .split-img-block { order: 2; }
.split-wrap.reverse .split-text-block { order: 1; }

.split-img-block {
  border-radius: var(--r-xl); overflow: hidden;
  min-height: 460px; position: relative;
  box-shadow: var(--shadow-card);
}
.split-img-fill {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94);
}
.split-wrap:hover .split-img-fill { transform: scale(1.03); }

.split-img--bespoke   .split-img-fill { background: linear-gradient(150deg,#4a3020 0%,#7c5c3e 45%,#2d3830 75%,#1e2820 100%); }
.split-img--convert   .split-img-fill { background: linear-gradient(150deg,#1e2e26 0%,#3d5247 50%,#4a3820 80%,#1a2018 100%); }
.split-img--commercial .split-img-fill { background: linear-gradient(150deg,#2d2820 0%,#3d3828 45%,#2a3020 75%,#1e2018 100%); }
.split-img--garden    .split-img-fill { background: linear-gradient(150deg,#4a3020 0%,#8c6440 40%,#3d5247 70%,#1e2820 100%); }

.split-text-block {
  background: var(--white); border-radius: var(--r-xl);
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-card);
}
.split-text-block.sand { background: var(--bg); }

.split-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 18px;
}
.split-kicker.brown { color: var(--brown); }
.split-kicker.green { color: var(--green); }

.split-h2 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
  margin-bottom: 18px;
}
.split-h2 em { font-style: italic; font-weight: 400; color: var(--mid); }

.split-body { font-size: 14px; line-height: 1.85; color: var(--mid); margin-bottom: 24px; }

.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  font-size: 13px; font-weight: 500; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 12px;
}
.feature-list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.feature-list.brown li::before { background: var(--brown); }
.feature-list.green li::before { background: var(--green); }

.btn-pill {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; padding: 12px 24px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .22s; width: fit-content;
}
.btn-pill.brown { color: var(--white); background: var(--brown); }
.btn-pill.brown:hover { background: var(--brown-l); transform: translateY(-1px); }
.btn-pill.green { color: var(--white); background: var(--green); }
.btn-pill.green:hover { background: var(--green-l); transform: translateY(-1px); }
.btn-pill svg { transition: transform .2s; }
.btn-pill:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .split-wrap { grid-template-columns: 1fr; }
  .split-wrap.reverse .split-img-block { order: 1; }
  .split-wrap.reverse .split-text-block { order: 2; }
  .split-img-block { min-height: unset; aspect-ratio: 16 / 9; max-height: 320px; }
  .split-text-block { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .split-img-block { aspect-ratio: 4 / 3; max-height: 280px; }
  .split-text-block { padding: 28px 20px; }
}

/* ═══════════════════════════════════════
   PD / PERMITTED DEVELOPMENT SECTION
═══════════════════════════════════════ */
.pd-section {
  width: min(1480px, 94vw);
  margin: 0 auto 14px;
  padding: 0 6px;
}
.pd-card {
  background: var(--green-d);
  border-radius: var(--r-xl);
  padding: 56px 56px 48px;
  position: relative; overflow: hidden;
}
.pd-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.pd-inner { position: relative; z-index: 1; }
.pd-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; margin-bottom: 44px;
}
.pd-top-text { flex: 1; }
.pd-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.pd-h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.pd-h2 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.4); }
.pd-intro { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 540px; }
.pd-cta-side { flex-shrink: 0; }

.pd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 36px;
}
.pd-point {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px 22px;
}
.pd-point-n {
  font-size: 30px; font-weight: 700; letter-spacing: -.04em;
  color: rgba(255,255,255,.2); margin-bottom: 10px;
}
.pd-point-h {
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.pd-point-b { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,.5); }

.pd-rules {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pd-rule {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 12px;
}
.pd-rule-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-l); flex-shrink: 0; margin-top: 5px;
}
.pd-rule-text { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.5); }
.pd-rule-text strong { color: rgba(255,255,255,.8); font-weight: 600; }

@media (max-width: 900px) {
  .pd-card { padding: 40px 32px 32px; }
  .pd-grid { grid-template-columns: 1fr 1fr; }
  .pd-top { flex-direction: column; gap: 20px; }
  .pd-rules { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pd-card { padding: 32px 20px 24px; }
  .pd-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOUNDERS
═══════════════════════════════════════ */
.founders-grid {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.founder-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  display: flex; gap: 22px; align-items: flex-start;
  transition: transform .28s, box-shadow .28s;
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.f-av {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.founder-card:nth-child(1) .f-av { background: var(--brown-p); color: var(--brown); }
.founder-card:nth-child(2) .f-av { background: var(--green-p); color: var(--green); }
.f-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.f-role { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
.f-quote { font-size: 14px; line-height: 1.75; color: var(--mid); font-style: italic; }
@media (max-width: 720px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-wrap {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.stat-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px 32px; box-shadow: var(--shadow-card);
  transition: transform .28s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-n {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px;
}
.stat-card:nth-child(1) .stat-n { color: var(--brown); }
.stat-card:nth-child(2) .stat-n { color: var(--green); }
.stat-card:nth-child(3) .stat-n { color: var(--brown-l); }
.stat-n sup { font-size: .44em; vertical-align: top; padding-top: .12em; font-weight: 400; color: var(--light); }
.stat-l { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); line-height: 1.6; }
@media (max-width: 720px) {
  .stats-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-section { overflow: hidden; padding: 56px 0; }
.m-track { display: inline-flex; animation: marquee 24s linear infinite; }
.m-item {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 700; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px var(--rule);
  padding: 0 36px; white-space: nowrap;
  transition: -webkit-text-stroke-color .22s;
  cursor: default;
}
.m-item:nth-child(odd):hover  { -webkit-text-stroke-color: var(--brown); }
.m-item:nth-child(even):hover { -webkit-text-stroke-color: var(--green); }

@media (max-width: 480px) {
  .m-item {
    font-size: clamp(20px, 6.5vw, 36px);
    padding: 0 16px;
    -webkit-text-stroke-width: 1px;
  }
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-wrap {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
}
.process-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px; padding: 0 4px;
}
.process-header h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 700; letter-spacing: -.025em; line-height: 1; }
.process-header h2 .green-em { font-style: italic; font-weight: 400; color: var(--green-l); }
.process-sub { font-size: 13.5px; color: var(--mid); max-width: 360px; text-align: right; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 32px 26px; box-shadow: var(--shadow-card);
  transition: transform .28s, box-shadow .28s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step-n {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700; letter-spacing: -.04em; line-height: 1;
  color: var(--rule); margin-bottom: 18px;
  transition: color .28s;
}
.step-card:hover .step-n { color: var(--green); }
.step-t { font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.step-b { font-size: 13px; line-height: 1.7; color: var(--mid); }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .process-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .process-sub { text-align: left; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════ */
.gallery-section {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
}
.gallery-header { margin-bottom: 18px; padding: 0 4px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.g-item {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-card) center/cover;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.g-item:hover { transform: scale(1.01); box-shadow: var(--shadow-lift); }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.g-item:nth-child(n+2):nth-child(-n+5) { aspect-ratio: 4/3; }

/* Placeholder gradients */
.g-item:nth-child(1)  { background: linear-gradient(145deg, #4a3020 0%, #8c6440 35%, #3d5247 70%, #1e2820 100%); }
.g-item:nth-child(2)  { background: linear-gradient(145deg, #3d5247 0%, #5c7a68 100%); }
.g-item:nth-child(3)  { background: linear-gradient(145deg, #5a3c22 0%, #7c5c3e 100%); }
.g-item:nth-child(4)  { background: linear-gradient(145deg, #2d3020 0%, #3d5247 100%); }
.g-item:nth-child(5)  { background: linear-gradient(145deg, #3a2818 0%, #6b4828 100%); }

.g-item-label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); background: rgba(0,0,0,.28); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 10px; border-radius: var(--r-pill);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(1) { grid-column: 1 / -1; grid-row: span 1; aspect-ratio: 16/9; max-height: 300px; }
}
@media (max-width: 560px) {
  .g-item:nth-child(1) { aspect-ratio: 4/3; max-height: 260px; }
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
}
.cta-card {
  background: var(--green);
  border-radius: var(--r-xl);
  padding: 90px 72px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 4px 36px rgba(61,82,71,.25);
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.cta-in { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 24px;
}
.cta-h2 {
  font-size: clamp(38px, 7.5vw, 96px);
  font-weight: 700; letter-spacing: -.04em; line-height: .92;
  color: var(--white); margin-bottom: 32px;
}
.cta-h2 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.28); }
.cta-email {
  font-size: clamp(14px, 1.6vw, 20px); font-weight: 400;
  color: rgba(255,255,255,.42); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 2px;
  transition: color .28s, border-color .28s;
}
.cta-email:hover { color: var(--white); border-color: rgba(255,255,255,.6); }
.cta-btns { margin-top: 40px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-cta-w {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--green); background: var(--white); padding: 13px 30px;
  border-radius: var(--r-pill); text-decoration: none;
  transition: background .2s, transform .2s; box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.btn-cta-w:hover { background: var(--bg); transform: translateY(-1px); }
.btn-cta-g {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.22);
  padding: 13px 30px; border-radius: var(--r-pill); text-decoration: none;
  background: rgba(255,255,255,.06); transition: all .2s;
}
.btn-cta-g:hover { color: var(--white); border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.12); }
@media (max-width: 600px) {
  .cta-card { padding: 60px 28px; }
}

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-section {
  width: min(1480px, 94vw); margin: 0 auto;
  padding: 0 6px 14px;
}
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; align-items: start;
}
.contact-info {
  background: var(--white); border-radius: var(--r-xl);
  padding: 48px 44px; box-shadow: var(--shadow-card);
}
.contact-info-h {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 14px;
}
.contact-info-h em { font-style: italic; font-weight: 400; color: var(--brown-l); }
.contact-info-sub { font-size: 14px; line-height: 1.7; color: var(--mid); margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 3px; }
.contact-detail-label {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--light);
}
.contact-detail-val { font-size: 14px; font-weight: 500; color: var(--ink); }
.contact-detail-val a { color: inherit; text-decoration: none; }
.contact-detail-val a:hover { color: var(--brown); }
.contact-areas {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--rule);
}
.contact-areas-label {
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--light); margin-bottom: 12px;
}
.contact-area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tag {
  font-size: 11px; font-weight: 500; color: var(--mid);
  background: var(--bg); border: 1px solid var(--rule);
  padding: 5px 12px; border-radius: var(--r-pill);
}

.contact-form-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: 48px 44px; box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 28px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 14px; font-weight: 400; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--rule);
  border-radius: var(--r-md);
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
  outline: none; width: 100%; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }

.form-row-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.form-row-check input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  border-radius: 4px; margin-top: 2px; cursor: pointer;
  padding: 0; background: var(--bg);
}
.form-row-check label {
  font-size: 12px; letter-spacing: 0; text-transform: none; color: var(--mid); font-weight: 400;
}

.btn-form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  color: var(--white); background: var(--green);
  padding: 14px 32px; border-radius: var(--r-pill); border: none;
  cursor: pointer; transition: background .2s, transform .2s;
  margin-top: 8px;
}
.btn-form-submit svg { transition: transform .2s; }
@media (hover: hover) and (pointer: fine) {
  .btn-form-submit:hover { background: var(--green-l); transform: translateY(-1px); }
  .btn-form-submit:hover svg { transform: translateX(3px); }
}

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-p); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--mid); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
}
@media (max-width: 900px) {
  .contact-info, .contact-form-wrap { padding: 40px 32px; }
}
@media (max-width: 600px) {
  .contact-info, .contact-form-wrap { padding: 28px 20px; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin: 14px 6px 0;
  padding: 76px 52px 44px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px;
}
.f-logo-wrap { margin-bottom: 18px; }
.f-logo-img {
  display: block;
  box-sizing: border-box;
  width: auto !important;
  height: 60px !important;
  max-width: min(400px, 92vw) !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: contain;
  object-position: left center;
  opacity: .92;
}
.f-logo-text { font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.f-tagline { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.28); margin-bottom: 22px; }
.f-contact-link { font-size: 13px; color: rgba(255,255,255,.33); text-decoration: none; transition: color .2s; }
.f-contact-link:hover { color: var(--white); }
.f-col-h { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 16px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--white); }
.footer-btm { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; }
.footer-btm > a[href="privacy.html"] { margin-right: auto; }
.f-copy { font-size: 11px; color: rgba(255,255,255,.18); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer { padding: 48px 28px 32px; margin: 14px 0 0; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-btm {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-btm > a[href="privacy.html"] {
    margin-right: 0;
    order: 3;
  }
}

/* ═══════════════════════════════════════
   PAGE HERO (interior pages)
═══════════════════════════════════════ */
.page-hero {
  position: relative;
  width: min(1480px, 94vw); aspect-ratio: 21/9;
  margin: 0 auto 48px; margin-top: 136px;
  border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-card);
}
@media (max-width: 900px) {
  .page-hero { aspect-ratio: 16/9; margin-top: 108px; }
}
@media (max-width: 600px) {
  .page-hero { margin-top: 100px; aspect-ratio: 4/3; border-radius: var(--r-xl); }
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  background-color: #3a2e20;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, transparent 30%, rgba(0,0,0,.6) 100%);
}
.page-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; padding: 48px;
}
@media (max-width: 600px) {
  .page-hero-content { padding: 28px 24px; }
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.page-hero-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

/* ═══════════════════════════════════════
   PAGE CONTENT BLOCKS
═══════════════════════════════════════ */
.page-block {
  max-width: 1360px; margin: 0 auto 72px; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.page-block-img {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-card) center/cover; box-shadow: var(--shadow-card);
  position: relative;
}
.page-block-img img { width: 100%; height: 100%; object-fit: cover; }
.page-block-text h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 18px;
}
.page-block-text h2 em { font-style: italic; font-weight: 400; color: var(--mid); }
.page-block-text p { font-size: 15.5px; line-height: 1.8; color: var(--mid); margin-bottom: 14px; }
.page-block-text p:last-of-type { margin-bottom: 22px; }
.page-block.reverse .page-block-img { order: 2; }
.page-block.reverse .page-block-text { order: 1; }

.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px;
}
.spec-item {
  background: var(--bg); border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.spec-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brown); flex-shrink: 0; margin-top: 5px; }
.spec-dot.green { background: var(--green); }
.spec-text { font-size: 12.5px; font-weight: 500; color: var(--ink); line-height: 1.5; }

/* Related strip */
.related-strip { max-width: 1360px; margin: 0 auto 72px; padding: 0 32px; }
.related-strip h3 {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--light); margin-bottom: 20px;
}
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 11px 18px;
  background: var(--white); border-radius: var(--r-pill);
  border: 1px solid var(--rule);
  transition: all .22s; box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.related-links a:hover {
  background: var(--brown-p); border-color: var(--brown); color: var(--brown);
  transform: translateY(-2px); box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .page-block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .page-block.reverse .page-block-img { order: 1; }
  .page-block.reverse .page-block-text { order: 2; }
  .spec-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .72s cubic-bezier(0.22, 1, 0.36, 1),
    transform .72s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.d1, .reveal.d2, .reveal.d3,   .reveal.d4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════
   MOBILE LAYOUT — spacing, no squash
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-h1 {
    font-size: clamp(22px, 5.2vw, 44px);
    line-height: 1.18;
    margin-bottom: 14px;
  }
  .section { padding: 52px 18px; }
  .section-sm { padding: 38px 18px; }
  .intro-block { padding: 0 18px; margin-bottom: 40px; }
  .intro-headline { font-size: clamp(24px, 6vw, 40px); }
  .intro-sub { font-size: 15px; }
  .cards-section,
  .usecases-section,
  .split-wrap,
  .gallery-section,
  .cta-section,
  .contact-section,
  .process-wrap,
  .stats-wrap,
  .founders-grid,
  .pd-section,
  .gr-strip {
    width: min(1480px, 100%);
    padding-left: 12px;
    padding-right: 12px;
  }
  .cards-header,
  .usecases-header,
  .gallery-header,
  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .page-hero {
    width: min(1480px, 100%);
    aspect-ratio: 16 / 9;
  }
  .page-hero h1 {
    font-size: clamp(26px, 6.5vw, 44px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .page-block {
    padding: 0 18px;
    gap: 24px;
  }
  .founder-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }
  .stat-card { padding: 32px 22px; }
  .cta-card { padding: 56px 24px; }
  .cta-h2 {
    font-size: clamp(30px, 8vw, 56px);
    line-height: 1.05;
  }
  .marquee-section { padding: 40px 0; }
  .m-item {
    font-size: clamp(24px, 7vw, 48px);
    padding: 0 22px;
    -webkit-text-stroke-width: 1px;
  }
  .chip {
    font-size: 11px;
    padding: 6px 12px;
  }
  nav {
    min-height: 64px;
    padding: 10px 12px 10px 16px;
  }
  .nav-logo { margin-right: 14px; }
  nav .nav-logo > img {
    height: 44px !important;
    max-width: min(360px, 52vw) !important;
  }
}

@media (max-width: 600px) {
  .page-hero { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .scard-body { padding: 20px 18px 22px; }
  .scard-title {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .scard-desc { font-size: 13px; }
  .related-strip { padding: 0 18px; }
}

/* ═══════════════════════════════════════
   MOBILE POLISH & SUBTLE MOTION
═══════════════════════════════════════ */
.nav-btn { touch-action: manipulation; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .22s ease; }
@media (hover: none) {
  .nav-btn:active { transform: scale(0.985); }
}
.footer {
  padding-bottom: max(44px, calc(44px + env(safe-area-inset-bottom, 0px)));
}

@media (max-width: 600px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    padding: 14px 16px;
  }
  .form-group textarea { min-height: 140px; }
  .form-row-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 4px;
  }
  .btn-form-submit {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 16px 28px;
  }
}

@media (hover: none) {
  .btn-form-submit:active { transform: scale(0.99); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-mobile {
    transition: opacity .15s ease;
    transform: none;
  }
  .nav-mobile.open { transform: none; }
  .nav-burger span { transition-duration: .12s; }
  .hero-news-card,
  .hero-news-card::before { animation: none; }
  .hero-line-text,
  .hero-line-items { animation: none; opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .footer .f-links a {
    position: relative;
    transition: color .2s ease;
  }
  .footer .f-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .footer .f-links a:hover::after {
      transform: scaleX(1);
      opacity: 0.35;
    }
  }
}

/* ═══════════════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Above .nav-mobile (490) so Call / Quote never sit under the menu overlay */
    z-index: 560;
    background: var(--white);
    border-top: 1px solid var(--rule);
    padding-top: 10px;
    padding-bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    gap: 10px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    pointer-events: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
    touch-action: manipulation;
    transition: opacity .18s;
  }
  .mobile-cta-bar a:active { opacity: 0.82; }
  .mobile-cta-bar .mcta-call {
    color: var(--ink);
    background: var(--bg);
    border: 1.5px solid var(--rule);
  }
  .mobile-cta-bar .mcta-wa {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }
  .mobile-cta-bar .mcta-wa:link,
  .mobile-cta-bar .mcta-wa:visited,
  .mobile-cta-bar .mcta-wa:hover,
  .mobile-cta-bar .mcta-wa:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background-color: #25d366;
  }
  .mobile-cta-bar .mcta-wa svg {
    display: block;
    flex-shrink: 0;
  }
  .mobile-cta-bar .mcta-wa svg path {
    fill: #fff;
  }
  .mobile-cta-bar .mcta-enquire {
    color: var(--white);
    background: var(--green);
  }
  body { padding-bottom: max(72px, calc(72px + env(safe-area-inset-bottom, 0px))); }
}

/* Desktop floating WhatsApp — fixed bottom-right (hidden on mobile; bar already has WhatsApp) */
.desktop-wa-fab {
  display: none;
}
@media (min-width: 901px) {
  .desktop-wa-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    right: max(24px, env(safe-area-inset-right, 0px));
    /* Above body::before noise overlay (9999) so the button is never buried in stacking */
    z-index: 10001;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .desktop-wa-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.24);
  }
  .desktop-wa-fab svg {
    display: block;
  }
}

@media (max-width: 768px) {
  .section + .section-sm,
  .section-sm + .section {
    padding-top: 44px;
  }
}
