:root{
  --bg: #0f1110;
  --paper: #fbfbfa;
  --ink: #101212;
  --ink-muted: rgba(16,18,18,0.72);
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --faint: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.14);
  --accent: #d7d2c6;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;
  --container: 1120px;
  --ease-out: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: radial-gradient(1000px 600px at 20% 0%, rgba(215,210,198,0.10), transparent 60%),
              radial-gradient(900px 600px at 100% 20%, rgba(255,255,255,0.06), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header{
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index: 50;
  background: rgba(18,18,18,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.site-header.is-scrolled{
  background: rgba(30,30,31,0.92);
  border-bottom-color: rgba(255,255,255,0.14);
}

/* Home mobile: banner first; header slides in after first scroll */
@media (max-width: 900px){
  body.page-home .site-header{
    transition:
      transform 0.38s var(--ease-out, cubic-bezier(0.2, 0.8, 0.2, 1)),
      visibility 0.38s;
  }
  body.page-home .site-header:not(.is-revealed){
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
    pointer-events: none;
  }
  body.page-home .site-header.is-revealed{
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  body.page-home:not(.header-revealed) main{
    padding-top: 0;
  }
  body.page-home:not(.header-revealed) .hero{
    min-height: 100dvh;
    min-height: 100svh;
  }
  body.page-home:not(.header-revealed) .hero-content{
    padding-top: clamp(64px, 16vw, 100px);
  }
}

.header-bar{
  height: 56px;
  display:grid;
  grid-template-columns: 56px 1fr 56px 320px;
  align-items: center;
}
.header-left,
.header-center,
.header-share,
.header-right{
  height: 100%;
  display:flex;
  align-items:center;
}
.header-center{ justify-content:flex-start; }
.header-right{ justify-content:flex-end; }
.header-left{ justify-content:flex-start; }

.hamburger{
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.hamburger-lines{
  width: 20px;
  height: 12px;
  display:block;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 100%/100% 2px no-repeat;
  opacity: 0.9;
}
.crumbs{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-left: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  min-width: 0;
}
.crumb{
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}
.crumb:hover{ color: var(--text); }
.crumb-sep{ opacity: 0.45; }
.crumb.current{
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}

.header-share{
  justify-content:center;
  border-left: 1px solid rgba(255,255,255,0.14);
  border-right: 1px solid rgba(255,255,255,0.14);
}
.share-btn{
  width: 56px;
  height: 56px;
  border: none;
  background: #2f2f30;
  color: rgba(255,255,255,0.92);
  cursor:pointer;
}
.share-btn:hover{ background: #2a2a2b; }
.share-icon{
  display:inline-block;
  transform: translateY(-1px);
  font-size: 16px;
}

.header-cta{
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  padding: 0 18px 0 18px;
  border-left: 1px solid rgba(255,255,255,0.14);
  background: #ffffff;
  color: rgba(16,18,18,0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  width: 100%;
}
.header-cta:hover{
  background: #f6f6f6;
}
.header-cta-line{
  height: 1px;
  width: 110px;
  background: rgba(16,18,18,0.22);
}
.header-cta-arrow{
  font-size: 16px;
  color: rgba(16,18,18,0.60);
}

/* Subscribe slider (top -> half screen) */
.subscribe-drawer{
  position: fixed;
  inset: 0;
  z-index: 88;
  display: none;
  pointer-events: none;
}
.subscribe-scrim{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.32);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.subscribe-panel{
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(52vh, 520px);
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-104%);
  transition: transform 520ms var(--ease-out);
  box-shadow: 0 30px 90px rgba(0,0,0,0.20);
  border-bottom: 1px solid rgba(16,18,18,0.08);
}
.subscribe-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 18px 22px;
  height: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.subscribe-top{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.subscribe-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(16,18,18,0.14);
  background: rgba(16,18,18,0.03);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  color: rgba(16,18,18,0.86);
}
.subscribe-close:hover{
  background: rgba(16,18,18,0.06);
}
.subscribe-title{
  margin: 6px 0 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(16,18,18,0.86);
  font-weight: 600;
}
.subscribe-url{
  font-size: 12px;
  color: rgba(16,18,18,0.44);
  letter-spacing: 0.02em;
  max-width: 92%;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subscribe-row{
  margin-top: 8px;
  width: min(820px, 92vw);
  display:grid;
  grid-template-columns: 160px 1fr 120px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(16,18,18,0.10);
  background: rgba(16,18,18,0.03);
}
.subscribe-left,
.subscribe-mid,
.subscribe-right{
  display:flex;
  align-items:center;
}
.subscribe-left{
  padding: 14px 14px;
  gap: 10px;
  border-right: 1px solid rgba(16,18,18,0.08);
}
.subscribe-label{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16,18,18,0.72);
}
.subscribe-mail{
  width: 18px;
  height: 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity: 0.75;
}
.subscribe-mid{
  padding: 0 14px;
}
.subscribe-input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: rgba(16,18,18,0.86);
}
.subscribe-input::placeholder{
  color: rgba(16,18,18,0.40);
}
.subscribe-right{
  justify-content: stretch;
}
.subscribe-send{
  width: 100%;
  height: 100%;
  border: none;
  background: #171b1c;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor:pointer;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.subscribe-send:hover{
  background: #0f1415;
}
.subscribe-handle{
  margin-top: 10px;
  width: 44px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(16,18,18,0.12);
  background: rgba(16,18,18,0.02);
  cursor:pointer;
  color: rgba(16,18,18,0.65);
}
.subscribe-handle:hover{
  background: rgba(16,18,18,0.06);
}

body.subscribe-open .subscribe-drawer{
  display: block;
  pointer-events: auto;
}
body.subscribe-open .subscribe-scrim{
  opacity: 1;
}
body.subscribe-open .subscribe-panel{
  transform: translateY(0);
}
body.subscribe-open{
  overflow: hidden;
}

/* Fullscreen menu overlay (slides left -> right) */
.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
}
.menu-scrim{
  position:absolute;
  inset:0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-panel{
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(80, 156, 65, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, rgba(14, 16, 18, 0.97) 0%, rgba(6, 8, 10, 0.99) 100%);
  color: rgba(255, 255, 255, 0.94);
  transform: translate3d(-104%, 0, 0) scale(0.985);
  opacity: 0;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 24px 0 80px rgba(0, 0, 0, 0.55);
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
body.menu-open .menu-overlay{
  visibility: visible;
  pointer-events: auto;
}
body.menu-open .menu-scrim{
  opacity: 1;
}
body.menu-open .menu-panel{
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}
body.menu-open{
  overflow: hidden;
}

/* Staggered menu reveal (open only) */
@keyframes menuItemReveal{
  from{
    opacity: 0;
    transform: translateY(22px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
body.menu-open .menu-panel .menu-top{ animation: menuItemReveal 620ms cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
body.menu-open .menu-panel .menu-kicker{ animation: menuItemReveal 600ms cubic-bezier(0.16, 1, 0.3, 1) 0.14s both; }
body.menu-open .menu-panel .menu-title{ animation: menuItemReveal 600ms cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
body.menu-open .menu-panel .menu-grid{ animation: menuItemReveal 640ms cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
body.menu-open .menu-panel .menu-section-label{ animation: menuItemReveal 580ms cubic-bezier(0.16, 1, 0.3, 1) 0.36s both; }
body.menu-open .menu-panel .menu-proj-grid{ animation: menuItemReveal 640ms cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }

@media (prefers-reduced-motion: reduce){
  .menu-scrim,
  .menu-panel{
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
  body.menu-open .menu-panel .menu-top,
  body.menu-open .menu-panel .menu-kicker,
  body.menu-open .menu-panel .menu-title,
  body.menu-open .menu-panel .menu-grid,
  body.menu-open .menu-panel .menu-section-label,
  body.menu-open .menu-panel .menu-proj-grid{
    animation: none !important;
  }
}

/* Get in touch drawer (right -> half-left) */
.contact-drawer{
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  pointer-events: none;
}
.contact-scrim{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.contact-panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(640px, 50vw);
  background: #ffffff;
  color: var(--ink);
  transform: translateX(104%);
  transition: transform 520ms var(--ease-out);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
  overflow: auto;
}
body.contact-open .contact-drawer{
  display: block;
  pointer-events: auto;
}
body.contact-open .contact-scrim{
  opacity: 1;
}
body.contact-open .contact-panel{
  transform: translateX(0);
}
body.contact-open{
  overflow: hidden;
}

.contact-top{
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(16,18,18,0.08);
}
.contact-back,
.contact-close{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(16,18,18,0.14);
  background: rgba(16,18,18,0.03);
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(16,18,18,0.86);
  font-size: 20px;
  line-height: 1;
}
.contact-back:hover,
.contact-close:hover{
  background: rgba(16,18,18,0.06);
}
.contact-top-spacer{ flex: 1; }

.contact-content{
  padding: 22px 22px 28px;
}
.contact-title{
  margin: 10px 0 10px;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.contact-subtitle{
  margin: 0 0 18px;
  color: rgba(16,18,18,0.72);
  font-weight: 600;
}

.contact-form{
  display:grid;
  gap: 14px;
}
.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field{
  display:grid;
  gap: 8px;
}
.field-label{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16,18,18,0.62);
}
.field-input{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16,18,18,0.10);
  background: rgba(16,18,18,0.03);
  outline: none;
  font-size: 14px;
  color: rgba(16,18,18,0.92);
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.field-input:focus{
  border-color: rgba(16,18,18,0.24);
  background: rgba(16,18,18,0.02);
  box-shadow: 0 0 0 4px rgba(215,210,198,0.35);
}
.field-select .field-input{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(16,18,18,0.55) 50%),
    linear-gradient(135deg, rgba(16,18,18,0.55) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) calc(1em + 6px),
    calc(100% - 13px) calc(1em + 6px),
    0 0;
  background-size: 5px 5px, 5px 5px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field-textarea{
  resize: vertical;
  min-height: 120px;
  padding-top: 12px;
}

.contact-submit{
  margin-top: 10px;
  border: none;
  width: 100%;
  padding: 18px 18px;
  border-radius: 16px;
  background: #14191a;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}
.contact-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  background: #0f1415;
}
.contact-submit-arrow{
  font-size: 18px;
  opacity: 0.9;
}

.menu-top{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px 24px;
  padding: 28px 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.menu-close{
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  cursor:pointer;
  font-size: 26px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.menu-close:hover{
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}
.menu-close:focus-visible{
  outline: 2px solid rgba(80, 156, 65, 0.65);
  outline-offset: 2px;
}
.menu-top-cluster{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
  text-align: center;
  padding-top: 6px;
}
.menu-logo,
.menu-logo--prominent{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.menu-logo--prominent{
  width: 100%;
  padding: 10px 12px 6px;
}
.menu-logo:hover,
.menu-logo--prominent:hover{
  border-color: transparent;
  box-shadow: none;
  transform: scale(1.02);
  opacity: 1;
}
.menu-logo img,
.menu-logo--prominent img{
  display: block;
  height: clamp(92px, 24vw, 168px);
  width: auto;
  max-width: min(560px, 94vw);
  object-fit: contain;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.45));
}
.menu-mini{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.menu-mini a{
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  transition: color 200ms var(--ease-out);
}
.menu-mini a:hover{
  color: rgba(255, 255, 255, 0.96);
}
.menu-mini a[aria-current="page"]{
  color: #7ec96f;
  font-weight: 700;
}
.menu-mini a:focus-visible{
  outline: 2px solid rgba(80, 156, 65, 0.55);
  outline-offset: 3px;
}
.menu-social{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.menu-social--colorful{
  gap: 10px;
}
.menu-social-btn{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.menu-social-btn:hover{
  transform: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}
.menu-social-btn--facebook,
.menu-social-btn--linkedin,
.menu-social-btn--instagram,
.menu-social-btn--youtube,
.menu-social-btn--twitter{
  background: transparent;
  font-size: 11px;
  font-weight: 600;
}
.menu-social-btn--instagram{
  font-size: 12px;
}

.menu-content{
  padding: 16px 22px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(126, 201, 111, 0.88);
}
.menu-title{
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.98);
}
.menu-section-label{
  margin: 28px 0 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.menu-grid{
  display: grid;
  gap: 16px;
  align-items: stretch;
}
/* Mosaic: wide hero row + two squares + optional half-width solo (matches overlay reference) */
.menu-grid--mosaic{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.menu-grid--mosaic .menu-tile{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.menu-grid--mosaic .menu-tile--hero{
  grid-column: 1 / -1;
  aspect-ratio: 2.35 / 1;
  min-height: 128px;
}
.menu-grid--mosaic .menu-tile--cell{
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.menu-grid--mosaic .menu-tile--solo{
  grid-column: 1;
}
.menu-grid--mosaic .menu-tile:hover{
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.48);
  border-color: rgba(126, 201, 111, 0.35);
}
.menu-grid--mosaic .menu-tile:focus-visible{
  outline: 2px solid rgba(126, 201, 111, 0.65);
  outline-offset: 3px;
}
/* Legacy 3-column grid alias */
.menu-grid--squares{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.menu-tile--square{
  display: block;
  text-decoration: none;
  color: inherit;
}
.menu-tile.is-wide{
  grid-column: auto;
}
.menu-tile-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 520ms var(--ease-out);
}
.menu-grid--mosaic .menu-tile:hover .menu-tile-img{
  transform: scale(1.06);
}
.menu-tile-img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.menu-grid--mosaic .menu-tile-img::after{
  background: linear-gradient(180deg, rgba(200,210,195,0.4) 0%, rgba(0,0,0,0) 42%, rgba(20,22,21,0.92) 100%);
}
.menu-grid--mosaic .menu-tile-img--tone-lilac::after{
  background: linear-gradient(180deg, rgba(215,185,228,0.44) 0%, rgba(0,0,0,0) 40%, rgba(22,18,28,0.92) 100%);
}
.menu-grid--mosaic .menu-tile-img--tone-slate::after{
  background: linear-gradient(180deg, rgba(165,188,210,0.42) 0%, rgba(0,0,0,0) 40%, rgba(16,20,28,0.92) 100%);
}
.menu-tile-img--menu-home{
  background-image: url("../images/banner.png");
}
.menu-tile-img--menu-about{
  background-image: url("../images/about-hero-banner.png");
}
.menu-tile-img--menu-contact{
  background-image: url("../images/stats-bg.png");
}
.menu-tile-img--menu-privacy{
  background-image: url("../images/footer-fullscreen.png");
}
.menu-tile-img--menu-jiva{
  background-image: url("../images/projects-slide-1.png");
}
.menu-tile-img--menu-jiva3{
  background-image: url("../images/projects-slide-2.png");
}
.menu-tile-img--menu-i22{
  background-image: url("../images/i-22-elevation.png");
}
.menu-tile-img--menu-eco{
  background-image: url("../images/projects-slide-4.png");
}
.menu-tile-caption{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  font-size: clamp(14px, 2.1vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.menu-grid--mosaic .menu-tile-caption{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 20px 16px;
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-tile-sub{
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.menu-grid--mosaic .menu-tile-sub{
  margin-top: 0;
  text-align: center;
}

/* ─── Menu Project Center-mode Carousel ─── */
.menu-proj-grid{
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 0 52px;
}
.menu-proj-track{
  display: flex;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.menu-proj-card{
  flex: 0 0 60%;
  max-width: 60%;
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 10px;
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  opacity: 0.4;
  transform: scale(0.88);
  filter: brightness(0.5);
}
.menu-proj-card.is-center{
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}
.menu-proj-thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}
.menu-proj-card.is-center .menu-proj-thumb{
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.menu-proj-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.menu-proj-img--jiva{
  background-image: url("../images/projects-slide-2.png");
}
.menu-proj-img--jiva3{
  background-image: url("../images/projects-slide-1.png");
}
.menu-proj-img--i22{
  background-image: url("../images/i-22-elevation.png");
}
.menu-proj-card.is-center:hover .menu-proj-img{
  transform: scale(1.06);
}
.menu-proj-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.menu-proj-info{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.4s;
}
.menu-proj-card:not(.is-center) .menu-proj-info{
  opacity: 0.3;
}
.menu-proj-loc{
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.menu-proj-name{
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.menu-proj-type{
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
/* Side arrows */
.menu-proj-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.menu-proj-arrow--prev{
  left: 2px;
}
.menu-proj-arrow--next{
  right: 2px;
}
.menu-proj-arrow:hover{
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-50%) scale(1.14);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}
.menu-proj-arrow svg{
  width: 22px;
  height: 22px;
}
/* Dots bar */
.menu-proj-dots-wrap{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 18px 0 4px;
}
.menu-proj-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.menu-proj-dot.is-active{
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 700px){
  .menu-proj-grid{
    padding: 0 40px;
  }
  .menu-proj-card{
    flex: 0 0 80%;
    max-width: 80%;
  }
  .menu-proj-arrow{
    width: 38px;
    height: 38px;
  }
  .menu-proj-arrow svg{
    width: 18px;
    height: 18px;
  }
  .menu-proj-name{
    font-size: 1.2rem;
  }
  .menu-proj-info{
    padding: 16px 14px;
  }
}

/* Legacy gradient tiles (unused in new menu; kept for safety) */
.tile-media{
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 280px at 20% 30%, rgba(0,0,0,0.12), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
  transform: scale(1.02);
  transition: transform 520ms var(--ease-out);
}
.tile-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.12) 55%, rgba(0,0,0,0.05));
}
.tile-media--a{ background-image:
  radial-gradient(700px 320px at 30% 20%, rgba(129,169,129,0.38), transparent 60%),
  linear-gradient(135deg, rgba(196,150,92,0.20), rgba(0,0,0,0.04));
}
.tile-media--b{ background-image:
  radial-gradient(700px 320px at 20% 20%, rgba(218,112,214,0.22), transparent 60%),
  linear-gradient(135deg, rgba(52,82,140,0.18), rgba(0,0,0,0.04));
}
.tile-media--c{ background-image:
  radial-gradient(700px 320px at 20% 20%, rgba(130,170,210,0.26), transparent 60%),
  linear-gradient(135deg, rgba(110,110,110,0.16), rgba(0,0,0,0.04));
}
.tile-media--d{ background-image:
  radial-gradient(700px 320px at 20% 20%, rgba(120,180,120,0.26), transparent 60%),
  linear-gradient(135deg, rgba(70,110,70,0.16), rgba(0,0,0,0.04));
}
.tile-media--e{ background-image:
  radial-gradient(700px 320px at 20% 20%, rgba(215,170,120,0.26), transparent 60%),
  linear-gradient(135deg, rgba(150,110,80,0.16), rgba(0,0,0,0.04));
}
.tile-media--f{ background-image:
  radial-gradient(700px 320px at 20% 20%, rgba(160,120,90,0.22), transparent 60%),
  linear-gradient(135deg, rgba(110,80,50,0.14), rgba(0,0,0,0.04));
}
.tile-label{
  position:absolute;
  left: 16px;
  bottom: 14px;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
}
@media (max-width: 720px){
  .menu-top{
    padding: 14px 16px 16px;
  }
  .menu-top-cluster{
    align-items: center;
    width: 100%;
  }
  .menu-mini{
    justify-content: center;
  }
  .menu-social--colorful{
    justify-content: center;
  }
  .menu-grid--mosaic{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-grid--mosaic .menu-tile--hero{
    aspect-ratio: 16 / 9;
  }
  .menu-grid--mosaic .menu-tile--solo{
    grid-column: 1;
  }
}
@media (max-width: 420px){
  .menu-social-btn{
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}

.menu-list{
  grid-column: 3 / -1;
  padding: 6px 0;
  display:grid;
  gap: 10px;
}
.menu-list a{
  color: rgba(16,18,18,0.78);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.menu-list a:hover{ color: var(--ink); }

/* Hero */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(215,210,198,0.22), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(0deg, rgba(15,17,16,0.35), rgba(15,17,16,0.35)),
    url("../images/banner.png") center/cover no-repeat;
  transform-origin: center center;
  animation: hero-banner-zoom 8s ease-in-out infinite;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(15,17,16,0.92) 0%, rgba(15,17,16,0.55) 35%, rgba(15,17,16,0.25) 65%, rgba(15,17,16,0.12) 100%),
    radial-gradient(800px 420px at 25% 65%, rgba(215,210,198,0.18), transparent 60%);
}
.hero-center-logo{
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: min(74vw, 340px);
  pointer-events: none;
  opacity: 0;
}
.hero-center-logo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 30px rgba(0,0,0,0.45))
    drop-shadow(0 0 48px rgba(215,210,198,0.18));
  transform-origin: center center;
}

@keyframes hero-banner-zoom{
  0%{
    transform: scale(1.02);
  }
  38%{
    transform: scale(1.28);
  }
  100%{
    transform: scale(1.02);
  }
}
.hero-content{
  position:relative;
  padding-top: 140px;
  padding-bottom: 72px;
  max-width: 760px;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 12px;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.lede{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.btn:hover{ background: rgba(255,255,255,0.10); }
.btn-primary{
  border-color: rgba(215,210,198,0.50);
  background: rgba(215,210,198,0.14);
}
.btn-primary:hover{ background: rgba(215,210,198,0.20); }
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.16);
}

.hero-scroll{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  z-index: 2;
}
.hero-scroll:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateX(-50%) translateY(4px);
}
.hero-scroll-icon{
  font-size: 20px;
  line-height: 1;
  display: block;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Sections */
main{ padding-top: 72px; }
/* Full-bleed heroes: banner starts at viewport top (header is fixed); inner shells keep clearance */
body.page-home main,
main.jiva-main,
main.about-main,
body.page-blog main,
body.page-careers main{
  padding-top: 0;
}
.section{
  padding: 72px 0;
}
.section-intro{
  padding-top: 44px;
  background: #000;
}
.intro-stats{
  margin-top: 36px;
  padding: 34px 0 0;
}
.intro-stats{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}
.intro-stats::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.86) 100%),
    url("../images/stats-bg.png");
  background-size: cover;
  background-position: 50% 30%;
  filter: brightness(0.62) saturate(0.92);
  transform: scale(1.06);
}
.intro-stats .stats-strip-head{
  max-width: none;
  margin-bottom: 26px;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.intro-stats .stats-strip-title{
  color: rgba(255,255,255,0.95);
}
.intro-stats .stats-strip-grid{
  box-shadow: none;
}

@media (max-width: 560px){
  body.page-home .section-intro{
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  body.page-home .section-intro .intro-grid{
    gap: 18px;
  }
  body.page-home .section-intro .intro-stats{
    margin-top: 22px;
    padding-top: 26px;
  }
}
.intro-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-title{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.section-subtitle{
  margin:0;
  color: var(--muted);
  max-width: 52ch;
}
.section-copy{
  margin:0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.pill-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  cursor:pointer;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.pill:hover{ color: var(--text); background: rgba(255,255,255,0.08); }
.pill.is-active{
  color: var(--text);
  border-color: rgba(215,210,198,0.45);
  background: rgba(215,210,198,0.12);
}

/* Stats strip (above Our Projects) */
.stats-strip{
  padding: 56px 0 64px;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  isolation: isolate; /* ensures our background overlay stays behind content */
  overflow: hidden;
}
.stats-strip::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
  pointer-events: none;
}

.stats-strip::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.80) 100%),
    url("../images/stats-bg.png");
  background-size: cover;
  background-position: 50% 30%;
  filter: brightness(0.62) saturate(0.92);
  transform: scale(1.08);
  animation: stats-bg-pan 12s var(--ease-out) infinite alternate;
  pointer-events: none;
}

@keyframes stats-bg-pan{
  0%{
    transform: scale(1.08) translateY(0px);
    background-position: 50% 24%;
  }
  100%{
    transform: scale(1.14) translateY(-10px);
    background-position: 50% 38%;
  }
}

@media (prefers-reduced-motion: reduce){
  .stats-strip::after{
    animation: none;
    transform: none;
  }
}
.stats-strip-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.stats-strip-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}
.stats-strip-eyebrow{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.95);
}
.stats-strip-title{
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255,255,255,0.94);
}
.stats-strip-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.stats-item{
  position: relative;
  padding: 32px 36px 36px;
  border-radius: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: background 320ms var(--ease-out);
}
.stats-item:last-child{
  border-right: none;
}
.stats-item:hover{
  background: rgba(255,255,255,0.08);
}
.stats-value{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  width: 100%;
}
.stats-num{
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stats-suffix{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: rgba(201,162,39,0.95);
  line-height: 1;
}
.stats-label{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  max-width: 22ch;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 900px){
  body.page-home .hero-center-logo{
    opacity: 1;
    transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
  }
  body.page-home.header-revealed .hero-center-logo{
    opacity: 0;
    transform: translate(-50%, -10px);
  }

  .stats-strip{ padding: 44px 0 52px; }
  .stats-strip-grid{
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .stats-item{
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 22px 28px;
  }
  .stats-item:last-child{
    border-bottom: none;
  }
}
@media (max-width: 560px){
  .stats-strip-head{ margin-bottom: 28px; }
  .stats-num{ font-size: clamp(40px, 12vw, 52px); }
  .stats-strip-grid{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  .stats-item{
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 20px 18px 22px;
    background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  }
  .stats-item:nth-child(1){
    justify-self: start;
  }
  .stats-item:nth-child(2){
    justify-self: end;
  }
  .stats-item:nth-child(3){
    grid-column: 1 / -1;
    justify-self: center;
    width: min(92%, 320px);
  }
}

/* Why Us (peek carousel + black content box, no CTA) */
.why-us{
  background: #000;
  color: #fff;
  padding: 0 0 8px;
  overflow: hidden;
}
.why-us-head{
  padding: 56px 0 28px;
}
.why-us-head-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.why-us-heading{
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.why-us-subheading{
  margin: 12px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
}
.why-us-visual{
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  min-height: 640px;
  max-height: none;
}
.why-us-carousel{
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.why-us-peek{
  background-size: cover;
  background-position: center 25%;
  background-color: #1a1a1a;
  transition: opacity 400ms var(--ease-out);
}
.why-us-peek--left,
.why-us-peek--right{
  display: none; /* screenshot: single full-width image strip */
}
.why-us-peek--center{
  flex: 1;
  opacity: 1;
  width: 100%;
}
.why-us-peek--left.slide-0,
.why-us-peek--center.slide-0,
.why-us-peek--right.slide-0{
  background-image: url("../images/why-us-1.png");
}
.why-us-peek--left.slide-1,
.why-us-peek--center.slide-1,
.why-us-peek--right.slide-1{
  background-image: url("../images/why-us-thoughtful.png");
}
.why-us-peek--left.slide-2,
.why-us-peek--center.slide-2,
.why-us-peek--right.slide-2{
  background-image: url("../images/why-us-3.png");
}

.why-us-overlay{
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 44px 20px 84px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
}
.why-us-overlay > *{
  pointer-events: auto;
}
.why-us-content-wrap{
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 220px;
  padding: 0;
  background: #000;
  padding: 26px 28px 26px;
  margin-left: auto;
  text-align: right;
}
.why-us-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}
.why-us-slide.active{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.why-us-slide.is-entering-from-right{ transform: translateX(34px); opacity: 0; }
.why-us-slide.is-entering-from-left{ transform: translateX(-34px); opacity: 0; }
.why-us-slide.is-entering-active{ transform: translateX(0); opacity: 1; }
.why-us-slide.is-leaving-to-left{ transform: translateX(-34px); opacity: 0; }
.why-us-slide.is-leaving-to-right{ transform: translateX(34px); opacity: 0; }
.why-us-slide-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.why-us-slide-body{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 62ch;
}
.why-us-cta{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
  color: #e07a5f;
  text-decoration: none;
}
.why-us-cta-line{
  width: 38px;
  height: 1px;
  background: currentColor;
}
.why-us-cta-arrow{
  font-size: 16px;
  line-height: 1;
}
.why-us-pagination{
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #2a2a2a;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.why-us-pagination button{
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 220ms, color 220ms;
}
.why-us-pagination button:hover{
  background: rgba(255,255,255,0.12);
}
.why-us-pagination-num{
  padding: 0 6px;
  font-weight: 400;
}
.why-us-pagination-num #whyUsCurrent{
  font-weight: 700;
}
@media (max-width: 900px){
  .why-us-head{ padding: 44px 0 20px; }
  .why-us-visual{
    aspect-ratio: 16/10;
    min-height: 480px;
    max-height: none;
  }
  .why-us-overlay{
    top: 54%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 20px 70px;
  }
  .why-us-content-wrap{
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 560px){
  .why-us-heading{ font-size: clamp(28px, 8vw, 36px); }
  .why-us{
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .why-us-visual{
    flex: 1 1 auto;
    min-height: 0;
    aspect-ratio: auto;
  }
  .why-us-peek--center{
    background-position: right top;
    background-size: cover;
  }
  .why-us-content-wrap{ min-height: 180px; }
  .why-us-slide-body{ font-size: 14px; }
  .why-us-pagination{ padding: 8px 12px; font-size: 12px; }
  .why-us-overlay{
    top: 56%;
    padding: 26px 16px 56px;
  }
}

/* Video story section (headline + autoplay modal) */
.video-story{
  background: #000;
  color: #fff;
  padding: 72px 0 76px;
  position: relative;
  overflow: hidden;
}
.video-story::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 30% 0%, rgba(215,210,198,0.10), transparent 60%),
    radial-gradient(800px 380px at 95% 20%, rgba(231,108,94,0.12), transparent 55%);
  pointer-events: none;
}
.video-story-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.video-story-heading{
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 72ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.video-story-subheading{
  margin: 12px auto 28px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  text-align: center;
}
.video-story-player{
  width: min(100%, 420px);
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: var(--video-ar, 1080 / 1920);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}

@media (min-width: 901px){
  .video-story-player{
    max-width: 420px;
    width: min(100%, 420px);
    aspect-ratio: var(--video-ar, 1080 / 1920);
  }
  .video-story-overlay{
    align-items: flex-end;
    padding: 0 20px 18px;
    justify-content: flex-start;
  }
}

@media (max-width: 900px){
  .video-story-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100dvh - 180px);
  }
  .video-story-player{
    --story-player-max-h: min(calc(100dvh - 220px), calc((100vw - 40px) * 1920 / 1080));
    width: min(calc(100vw - 40px), calc(var(--story-player-max-h) * 1080 / 1920));
    height: var(--story-player-max-h);
    max-width: none;
    aspect-ratio: auto;
  }
}

.video-story-poster{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #000;
}
.video-story-inline{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  background: #000;
}
.video-story-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
}
.video-story-play{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.video-story-player:hover .video-story-play{
  transform: scale(1.06);
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.28);
}
.video-story-play-icon{
  font-size: 22px;
  line-height: 1;
}
.video-story-play-text{
  margin-left: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.video-story-player:focus-visible{
  outline: 2px solid rgba(201,162,39,0.8);
  outline-offset: 4px;
}

@media (max-width: 900px){
  .video-story{
    padding: 48px 0 52px;
  }
  .video-story-inner{
    padding: 0 16px;
  }
  .video-story-subheading{
    margin-bottom: 22px;
  }
  .video-story-player{
    border-radius: 12px;
  }
  .video-story-overlay{
    padding: 0 22px;
  }
}

@media (max-width: 560px){
  .video-story{
    padding: 36px 0 40px;
  }
  .video-story-inner{
    padding: 0 12px;
  }
  .video-story-heading{
    font-size: clamp(22px, 5.2vw, 32px);
  }
  .video-story-subheading{
    margin-bottom: 18px;
  }
  .video-story-overlay{
    padding: 0 14px;
    gap: 10px;
  }
  .video-story-play{
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }
  .video-story-play-text{
    margin-left: 12px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}

/* Video modal */
.video-modal{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top, 0px))
    max(12px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px))
    max(12px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}
.video-modal.is-open{
  display: flex;
}
.video-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.video-modal-inner{
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 24px));
  max-width: min(980px, calc(100vw - 24px));
  max-height: min(92dvh, calc(100dvh - 24px));
  background: #000;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 901px){
  .video-modal-inner{
    width: min(720px, calc(100vw - 24px));
    max-width: min(720px, calc(100vw - 24px));
  }
}

.video-modal-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 1920;
  background: #000;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.video-modal-close{
  position: absolute;
  top: max(10px, env(safe-area-inset-top, 0px));
  right: max(10px, env(safe-area-inset-right, 0px));
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.4);
  color: #fff;
  z-index: 6;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.video-modal-fs-close{
  position: absolute;
  top: max(10px, env(safe-area-inset-top, 0px));
  right: max(10px, env(safe-area-inset-right, 0px));
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.45);
  color: #fff;
  z-index: 7;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.video-modal-fs-close:hover{
  background: rgba(0,0,0,0.62);
}

.video-modal-video{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  cursor: pointer;
}

/* Custom chrome (screenshot-style pills + progress) */
.video-modal-ui{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
  pointer-events: none;
}
.video-modal-ui button,
.video-modal-progress-track{
  pointer-events: auto;
}

.video-modal-progress{
  width: 100%;
  padding: 0 2px;
}
.video-modal-progress-track{
  position: relative;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
}
.video-modal-progress-fill{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: 2px;
  background: #fff;
  pointer-events: none;
}

.video-modal-toolbar{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.video-modal-toolbar-spacer{
  flex: 1;
  min-width: 8px;
}

.video-modal-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 0;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.video-modal-pill:hover{
  transform: scale(1.03);
}
.video-modal-playPause{
  width: 44px;
  height: 36px;
  padding: 0 12px;
}
.video-modal-playPause .video-modal-icon-pause{
  display: none;
}
.video-modal-playPause.is-playing .video-modal-icon-play{
  display: none;
}
.video-modal-playPause.is-playing .video-modal-icon-pause{
  display: block;
}

.video-modal-pill--cluster{
  background: rgba(42,42,42,0.92);
  color: #f2f2f2;
  padding: 6px 10px;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.video-modal-iconBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 32px;
  min-height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.video-modal-iconBtn:hover{
  background: rgba(255,255,255,0.08);
}
.video-modal-iconBtn:disabled{
  opacity: 0.35;
  cursor: not-allowed;
}

.video-modal-icon--hide{
  display: none !important;
}

.video-modal-mute .video-modal-icon-muted{
  display: none;
}
.video-modal-mute.is-muted .video-modal-icon-volume{
  display: none;
}
.video-modal-mute.is-muted .video-modal-icon-muted{
  display: block;
}

.video-modal-skipBtn{
  border: none;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 6px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}
.video-modal-skipBtn:hover{
  background: rgba(255,255,255,0.1);
}

.video-modal-time{
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.92);
  padding: 0 4px 0 6px;
  white-space: nowrap;
}

.video-modal-cc-label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.video-modal-speed{
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  min-width: 36px;
}
.video-modal-speed:hover{
  background: rgba(255,255,255,0.1);
}

@media (max-width: 560px){
  .video-modal-toolbar{
    gap: 6px;
  }
  .video-modal-toolbar-spacer{
    flex-basis: 100%;
    min-height: 0;
  }
  .video-modal-pill--cluster{
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Projects slider - big section (match reference image) */
.projects-slider{
  --project-accent: #509c41;
  background: #000;
  color: #fff;
  padding: 80px 0 120px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.slider-container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.projects-slider-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.projects-slider-title{
  margin: 0;
  padding: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
.projects-slider-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--project-accent);
  text-decoration: none;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.projects-slider-cta:hover{
  color: #ff6b70;
  opacity: 0.95;
}
.projects-slider-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--project-accent);
}
.projects-slider-icon svg{
  width: 18px;
  height: 18px;
}
.slider-wrap{
  overflow: hidden;
  margin: 0;
  width: 100%;
  flex: 0 0 auto;
}
.slider-track{
  display: flex;
  gap: 40px;
  padding-left: max(20px, calc((100vw - var(--container)) / 2 + 20px));
  padding-right: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transform: translateX(18%);
  opacity: 0;
  transition: transform 680ms var(--ease-out), opacity 520ms var(--ease-out);
}
.projects-slider.is-visible .slider-track{
  transform: translateX(0);
  opacity: 1;
}
.slider-track::-webkit-scrollbar{ display: none; }
.slider-item{
  flex: 0 0 min(800px, 64vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.slider-item-link{
  display: block;
  text-decoration: none;
  color: inherit;
  --slider-item-inline-pad: 20px;
}
.slider-item-media{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0;
}
.slider-item-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 420ms var(--ease-out);
}
.slider-item-link:hover .slider-item-img{ transform: scale(1.05); }
.slider-item-img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 38%, transparent 62%);
}
.slider-item-img--1{
  background-image: url("../images/projects-slide-2.png");
  background-color: #1a1a1a;
}
.slider-item-img--2{
  background-image: url("../images/projects-slide-3.png");
  background-color: #1a1a1a;
}
.slider-item-img--3{
  background-image: url("../images/i-22-elevation.png");
  background-color: #1a1a1a;
}
.slider-item-img--4{
  background-image: url("../images/projects-slide-4.png");
  background-color: #1a1a1a;
}
.slider-item-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 22px var(--slider-item-inline-pad) 16px;
}
.slider-item-title{
  position: static;
  margin: 0;
  padding: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  transform: none;
}
.slider-item-body{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px var(--slider-item-inline-pad) 0;
  margin-top: 0;
}
.slider-item-desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  text-shadow: none;
  max-width: none;
  white-space: nowrap;
}
.slider-item-location{
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  margin-left: auto;
}
.slider-nav-wrap{
  position: absolute;
  bottom: 40px;
  right: max(20px, calc((100vw - var(--container)) / 2 + 20px));
  z-index: 2;
}
.slider-nav{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 14px;
  background: rgba(38,38,38,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  width: auto;
  min-width: 200px;
  max-width: 280px;
}
.slider-btn{
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out);
}
.slider-btn:hover{
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.slider-progress{
  flex: 1;
  min-width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.slider-progress-fill{
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width 520ms var(--ease-out);
}

/* Testimonials section */
.testimonials{
  background: #000;
  color: #fff;
  position: relative;
  padding: 80px 0 120px;
  min-height: 84vh;
  overflow: hidden;
}
.testimonials-inner{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
}
.testimonials-copy{
  max-width: 360px;
}
.testimonials-title{
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.testimonials-subtitle{
  margin: 0;
}
.testimonials-subtitle-line{
  display: block;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
.testimonials-subtitle-line + .testimonials-subtitle-line{
  margin-top: clamp(10px, 1.2vw, 14px);
  color: rgba(255,255,255,0.92);
}
.testimonials-wrap{
  width: 100%;
}
.testimonials-right{
  position: relative;
  min-width: 0;
}
.testimonials-track{
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-left: 0;
  padding-right: 18px;
  transform: translateX(16%);
  opacity: 0;
  transition: transform 700ms var(--ease-out), opacity 560ms var(--ease-out);
}
.testimonials.is-visible .testimonials-track{
  transform: translateX(0);
  opacity: 1;
}
.testimonials-track::-webkit-scrollbar{ display:none; }
.testimonial-card{
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.testimonial-card-inner{
  display: block;
  color: inherit;
}
.testimonial-media{
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 12px;
}
.testimonial-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial-media.is-frame-ready .testimonial-video{
  opacity: 1;
}
.testimonial-media.is-video-error{
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    #141414;
}
.testimonial-media.is-video-error::after{
  content: "Video unavailable";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.testimonial-brand{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: min(110px, 36%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.testimonial-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px 28px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.28) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.testimonial-overlay .testimonial-play{
  pointer-events: auto;
}
.testimonial-media.is-playing .testimonial-overlay,
.testimonial-media.is-playing .testimonial-brand{
  opacity: 0;
}
.testimonial-play{
  display: inline-flex;
  align-items: center;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.testimonial-play-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.testimonial-play-text{
  margin-left: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.testimonial-play:hover .testimonial-play-btn{
  transform: scale(1.06);
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.28);
}
.testimonial-play:focus-visible{
  outline: 2px solid rgba(201,162,39,0.8);
  outline-offset: 4px;
  border-radius: 4px;
}
.testimonial-play-icon--pause{
  display: none;
}
.testimonial-play.is-playing .testimonial-play-icon--play{
  display: none;
}
.testimonial-play.is-playing .testimonial-play-icon--pause{
  display: inline;
}
.testimonials-nav-wrap{
  position: absolute;
  right: 0;
  bottom: -74px;
}
.testimonials-nav{
  display:flex;
  align-items:center;
  gap: 12px;
  background: rgba(33,37,41,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 220px;
}
.testimonials-btn{
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
}
.testimonials-btn:hover{ background: rgba(255,255,255,0.1); }
.testimonials-progress{
  flex:1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  overflow: hidden;
}
.testimonials-progress-fill{
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width 520ms var(--ease-out);
}

/* Featured project (black, peek carousel + content over image) */
.featured-project{
  background: #000;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.featured-project-inner{
  display: flex;
  flex-direction: column;
}
.featured-visual{
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  min-height: 320px;
  max-height: 58vh;
}

/* Carousel: left peek (5%), center (90%), right peek (5%) */
.featured-carousel{
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.featured-peek{
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transition: opacity 400ms var(--ease-out);
}
.featured-peek--left{
  width: 5%;
  min-width: 24px;
  opacity: 0.55;
}
.featured-peek--center{
  flex: 1;
  width: 90%;
  opacity: 1;
}
.featured-peek--right{
  width: 5%;
  min-width: 24px;
  opacity: 0.55;
}
/* Peek slide backgrounds (prev/current/next set by JS via .slide-0..3) */
.featured-peek--left.slide-0,
.featured-peek--center.slide-0,
.featured-peek--right.slide-0{
  background-image: url("../images/banner.png");
}
.featured-peek--left.slide-1,
.featured-peek--center.slide-1,
.featured-peek--right.slide-1{
  background-image: radial-gradient(80% 80% at 30% 20%, rgba(90,120,90,0.4), transparent 55%);
  background-color: #242a26;
}
.featured-peek--left.slide-2,
.featured-peek--center.slide-2,
.featured-peek--right.slide-2{
  background-image: radial-gradient(80% 80% at 70% 30%, rgba(100,80,60,0.35), transparent 55%);
  background-color: #2a2620;
}
.featured-peek--left.slide-3,
.featured-peek--center.slide-3,
.featured-peek--right.slide-3{
  background-image: radial-gradient(90% 70% at 50% 40%, rgba(180,100,80,0.25), transparent 60%);
  background-color: #2a2520;
}

/* Overlay: content + nav over image, black box bottom-right */
.featured-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 24px max(24px, calc((100vw - var(--container)) / 2 + 24px));
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  pointer-events: none;
}
.featured-overlay > *{
  pointer-events: auto;
}
.featured-content-wrap{
  position: relative;
  margin-left: auto;
  min-height: 80px;
  padding: 20px 24px 20px 32px;
  background: #000;
  max-width: 520px;
}
.featured-slide-content{
  position: absolute;
  top: 20px;
  left: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out), visibility 0s linear 520ms;
}
.featured-slide-content.active{
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out), visibility 0s;
}
.featured-title{
  margin: 0 0 6px;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.featured-subtitle{
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.featured-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e07a5f;
  text-decoration: none;
  transition: color 220ms, opacity 220ms;
}
.featured-cta:hover{
  color: #e89078;
}
.featured-cta-line{
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}
.featured-cta-arrow{
  font-size: 16px;
  line-height: 1;
}

.featured-pagination{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #2a2a2a;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
  align-self: flex-end;
}
.featured-pagination button{
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 220ms, color 220ms;
}
.featured-pagination button:hover{
  background: rgba(255,255,255,0.12);
}
.featured-pagination-num{
  padding: 0 6px;
  font-weight: 400;
}
.featured-pagination-num #featuredCurrent{
  font-weight: 700;
}
.featured-pagination-sep{
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 900px){
  .featured-visual{
    aspect-ratio: 16/10;
    max-height: 52vh;
  }
  .featured-overlay{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 16px 16px;
  }
  .featured-content-wrap{
    max-width: 100%;
    padding: 14px 16px 14px 18px;
  }
  .featured-peek--left,
  .featured-peek--right{
    width: 4%;
    min-width: 16px;
    opacity: 0.5;
  }
  .featured-slide-content{
    align-items: flex-start;
    text-align: left;
  }
  .featured-pagination{
    align-self: flex-start;
  }
}
@media (max-width: 560px){
  .featured-visual{ min-height: 260px; aspect-ratio: 4/3; }
  .featured-title{ font-size: clamp(22px, 6vw, 28px); }
  .featured-subtitle{ font-size: 13px; }
  .featured-overlay{ padding: 20px 16px 16px; }
  .featured-content-wrap{ padding: 14px 16px 14px 20px; }
  .featured-pagination{ padding: 8px 12px; font-size: 12px; }
}

/* Our Projects popup */
.projects-popup{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
.projects-popup.is-open{
  display: flex;
}
body.projects-popup-open{
  overflow: hidden;
}
.projects-popup-backdrop{
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}
.projects-popup-inner{
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.projects-popup-sidebar{
  width: 48px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.projects-popup-close{
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms, opacity 200ms;
}
.projects-popup-close:hover{
  color: #fff;
  opacity: 0.95;
}
.projects-popup-progress{
  flex: 1;
  width: 2px;
  min-height: 120px;
  margin: 16px 0;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.projects-popup-progress-fill{
  width: 100%;
  height: 0%;
  background: #fff;
  border-radius: 999px;
  transition: height 200ms var(--ease-out);
}
.projects-popup-logo{
  margin-top: auto;
}
.projects-popup-logo img{
  width: 36px;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55));
}
.projects-popup-main{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: #000;
}
.projects-popup-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.projects-popup-breadcrumb{
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.projects-popup-breadcrumb a{
  color: rgba(255,255,255,0.6);
}
.projects-popup-breadcrumb a:hover{ color: #fff; }
.projects-popup-breadcrumb-sep{
  margin: 0 6px;
  opacity: 0.6;
}
.projects-popup-refine{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(48,48,48,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}
.projects-popup-refine:hover{
  background: rgba(58,58,58,0.95);
  border-color: rgba(255,255,255,0.12);
}
.projects-popup-refine-icon{
  font-size: 14px;
  opacity: 0.9;
}
.projects-popup-refine-text{
  color: var(--project-accent, #509c41);
  letter-spacing: 0.12em;
}
.projects-popup-refine-label{
  color: rgba(255,255,255,0.9);
  margin-left: 4px;
}
.projects-popup-content{
  flex: 1;
  padding: 32px 32px 48px;
}
.projects-popup-heading{
  margin: 0 0 28px;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255,255,255,0.6);
}
.projects-popup-heading strong{
  color: #fff;
  font-weight: 700;
}
.projects-popup-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.projects-popup-card{
  margin: 0;
}
.projects-popup-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
}
.projects-popup-card-img{
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  margin-bottom: 12px;
  border-radius: 0;
  transition: transform 320ms var(--ease-out);
}
.projects-popup-card-link:hover .projects-popup-card-img{
  transform: scale(1.03);
}
.projects-popup-card-img--1{
  background-image: url("../images/banner.png");
}
.projects-popup-card-img--2{
  background-image: url("../images/jiva3-building-street.png");
  background-color: #1a1a1a;
}
.projects-popup-card-img--3{
  background-image: url("../images/i-22-elevation.png");
  background-color: #1a1a1a;
}
.projects-popup-card-img--4{
  background-image: url("../images/projects-slide-4.png");
}
.projects-popup-card-img--5{
  background: radial-gradient(80% 60% at 50% 50%, rgba(120,90,60,0.35), transparent 55%), #1a1a1a;
}
.projects-popup-card-img--6{
  background: radial-gradient(80% 60% at 20% 60%, rgba(70,100,80,0.35), transparent 55%), #1a1a1a;
}
.projects-popup-card-location{
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.projects-popup-card-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 900px){
  .testimonials{
    padding: 64px 0 104px;
    min-height: 0;
  }
  .testimonials-inner{
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .testimonials-copy{ max-width: 520px; }
  .testimonials-track{
    padding-left: 20px;
    padding-right: 24px;
    gap: 22px;
  }
  .testimonial-card{ flex: 0 0 min(300px, 78vw); }
  .testimonials-nav-wrap{
    right: 20px;
    left: 20px;
    display: flex;
    justify-content: flex-end;
    bottom: -74px;
  }
  .projects-popup-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px){
  .testimonials{
    padding: 56px 0 64px;
  }
  .testimonials-title{ font-size: clamp(30px, 9vw, 42px); }
  .testimonials-subtitle-line{
    font-size: clamp(22px, 6.8vw, 32px);
    line-height: 1.14;
  }
  .testimonials-subtitle-line + .testimonials-subtitle-line{
    margin-top: 10px;
  }
  .testimonial-card{ flex: 0 0 min(280px, 88vw); }
  .testimonial-media{ aspect-ratio: 9 / 16; border-radius: 10px; }
  .testimonial-overlay{ padding: 0 14px 22px; }
  .testimonial-play-btn{ width: 50px; height: 50px; font-size: 16px; }
  .testimonial-play-text{ margin-left: 12px; font-size: 11px; }
  .testimonials-track{
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }
  .testimonials-right{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-name{ font-size: clamp(24px, 8vw, 34px); left: 14px; bottom: 12px; }
  .testimonials-nav-wrap{
    position: static;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 2px;
    justify-content: flex-start;
  }
  .testimonials-nav{
    min-width: 170px;
    padding: 8px 10px;
  }

  .projects-popup-sidebar{ width: 44px; padding: 16px 0 20px; }
  .projects-popup-header{ padding: 16px 20px 12px; flex-wrap: wrap; }
  .projects-popup-content{ padding: 24px 20px 36px; }
  .projects-popup-grid{ grid-template-columns: 1fr; gap: 24px; }
  .projects-popup-heading{ margin-bottom: 20px; font-size: 18px; }
}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.home-card{
  grid-column: span 4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.home-card:hover{
  transform: translateY(-4px);
  border-color: rgba(215,210,198,0.24);
  box-shadow: var(--shadow);
}
.card-link{ display:block; height:100%; }
.card-media{
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
}
.card-media--placeholder{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(600px 240px at 20% 30%, rgba(215,210,198,0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.card-body{
  padding: 16px 16px 18px;
}
.card-meta{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.card-title{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card-cta{
  font-size: 14px;
  color: var(--accent);
  opacity: 0.95;
}

/* Split section */
.section-split{
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.split-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.split-media{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(760px 340px at 20% 30%, rgba(215,210,198,0.16), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  min-height: 360px;
}
.split-content{
  padding: 10px 0;
}
.checks{
  list-style: none;
  padding:0;
  margin: 0 0 18px;
  color: var(--muted);
}
.checks li{
  padding-left: 26px;
  margin: 10px 0;
  position: relative;
}
.checks li::before{
  content: "âœ“";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
}
.text-link{
  display:inline-block;
  color: var(--accent);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(215,210,198,0.35);
}
.text-link:hover{
  border-bottom-color: rgba(215,210,198,0.65);
}

/* Footer */
.footer{
  padding: 52px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,14,13,0.2) 0%, rgba(8,9,9,0.65) 100%);
}
.footer-fullscreen-image{
  min-height: 100svh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}
.footer-fullscreen-image-media{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.16) 100%),
    url("../images/footer-fullscreen.png") center / cover no-repeat;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px 36px;
  align-items: start;
}
.footer-brand{
  letter-spacing: 0.28em;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.footer-logo{
  display: inline-block;
  margin: 0 0 14px;
  line-height: 0;
  transition: opacity 200ms var(--ease-out);
}
.footer-logo:hover{
  opacity: 0.9;
}
.footer-logo img{
  display: block;
  width: 128px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}
.footer-copy{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 38ch;
}
.footer-links{
  display: grid;
  gap: 12px;
  justify-items: start;
  padding-top: 4px;
}
.footer-links a{
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms var(--ease-out), letter-spacing 180ms var(--ease-out);
}
.footer-links a:hover{
  color: rgba(215,210,198,0.95);
  letter-spacing: 0.1em;
}
.footer-meta{
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  display: grid;
  gap: 12px;
  justify-items: end;
  padding-top: 4px;
}
.footer-legal{
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px;
  width: fit-content;
  justify-self: end;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.footer-legal:hover{
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(215,210,198,0.45);
}

/* Awards / Sponsors (black, logo slider + vertical gold tab) */
.awards-section{
  background: #000;
  color: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
  position: relative;
}
.awards-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  padding-right: 56px;
}
.awards-header{
  margin-bottom: 40px;
  max-width: 480px;
}
.awards-title{
  margin: 0 0 10px;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
.awards-subtitle{
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.awards-slider-wrap{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px 8px;
}
.awards-slider-wrap::-webkit-scrollbar{
  display: none;
}
.awards-track{
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
  width: max-content;
  min-width: 100%;
}
.awards-logo{
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: background 260ms var(--ease-out), border-color 260ms var(--ease-out);
}
.awards-logo:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.awards-logo img{
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.awards-logo-label{
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  max-width: 100%;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.awards-tab{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 44px;
  min-height: 180px;
  padding: 20px 12px;
  background: linear-gradient(135deg, #c9a227 0%, #b8921f 50%, #a67c18 100%);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  transition: background 260ms var(--ease-out), color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
.awards-tab:hover{
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
  color: #0f0f0f;
  box-shadow: -4px 0 24px rgba(201,162,39,0.25);
}
.awards-tab-text{
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.14em;
}
@media (max-width: 900px){
  .awards-inner{ padding-right: 48px; }
  .awards-track{ gap: 32px; }
  .awards-logo{ width: 160px; height: 72px; padding: 12px 20px; }
  .awards-tab{ width: 40px; min-height: 140px; padding: 16px 10px; font-size: 10px; }
}
@media (max-width: 560px){
  .awards-section{ padding: 48px 0 56px; }
  .awards-header{ margin-bottom: 28px; }
  .awards-track{ gap: 24px; }
  .awards-logo{ width: 140px; height: 64px; font-size: 11px; }
  .awards-tab{ min-height: 120px; }
}

/* Contact section (two-column: info + form) */
.contact-section{
  background: #fff;
  color: var(--ink);
  padding: 72px 0 80px;
}
.contact-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.contact-info{
  max-width: 380px;
}
.contact-heading{
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.contact-heading-line{
  display: block;
}
.contact-lead{
  margin: 0 0 20px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-intro{
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.contact-block{
  margin-bottom: 28px;
}
.contact-block:last-of-type{ margin-bottom: 0; }
.contact-block-title{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.contact-address,
.contact-location,
.contact-detail{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-style: normal;
}
.contact-detail{ margin-bottom: 10px; }
.contact-label{
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.contact-form-wrap{
  max-width: 520px;
  justify-self: end;
}
.contact-section-form{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-field{
  display: block;
}
.contact-field-label{
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-field-input{
  width: 100%;
  padding: 0 0 10px;
  border: none;
  border-bottom: 1px solid rgba(16,18,18,0.2);
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms, background 220ms;
}
.contact-field-input:focus{
  border-bottom-color: rgba(16,18,18,0.5);
}
.contact-field-input::placeholder{
  color: rgba(16,18,18,0.35);
}
.contact-field-textarea{
  resize: vertical;
  min-height: 80px;
  padding: 10px 0;
}
.contact-field-row{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: end;
}
.contact-field-group{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(16,18,18,0.08);
}
.contact-field-group .contact-field-select-wrap{
  background: #f5f5f5;
}
.contact-field-group .contact-field-select,
.contact-field-group .contact-field-code{
  border: none;
  border-bottom: none;
  background: transparent;
  border-radius: 0;
  padding: 12px 28px 12px 12px;
}
.contact-field-select-wrap{
  position: relative;
  display: inline-block;
}
.contact-field-select{
  appearance: none;
  padding: 10px 32px 10px 12px;
  border: none;
  border-bottom: 1px solid rgba(16,18,18,0.2);
  background: #f5f5f5;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  min-width: 90px;
}
.contact-field-code{
  min-width: 72px;
  padding-right: 28px;
  border-left: 1px solid rgba(16,18,18,0.1);
}
.contact-field-select-arrow{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--ink-muted);
  pointer-events: none;
}
.contact-field-select-full{
  width: 100%;
}
.contact-field-select-full .contact-field-select{
  width: 100%;
  background: #f5f5f5;
  padding: 12px 36px 12px 0;
  border-radius: 4px;
  border: none;
  border-bottom: none;
}
.contact-field-select-label .contact-field-select-wrap{
  width: 100%;
}
.contact-field-flex{ flex: 1; min-width: 0; }

.contact-submit-btn{
  margin-top: 8px;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  background: #f0f0f0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 220ms, color 220ms;
}
.contact-submit-btn:hover{
  background: #e8e8e8;
  color: var(--ink);
}
.contact-submit-arrow{
  font-size: 18px;
  opacity: 0.8;
}

@media (max-width: 900px){
  .contact-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info{ max-width: 100%; }
  .contact-form-wrap{ max-width: 100%; justify-self: stretch; }
  .contact-field-row{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .contact-section{ padding: 56px 0 64px; }
  .contact-field-group{ flex-direction: column; align-items: stretch; }
}

/* Mobile home: make each major section feel full-screen */
@media (max-width: 560px){
  body.page-home .hero{
    min-height: 100svh;
    min-height: 100dvh;
  }

  /* Mobile section-to-section motion feel */
  html, body{
    height: 100%;
  }
  html{
    scroll-behavior: smooth;
  }
  body.page-home main{
    scroll-snap-type: y mandatory;
    scroll-padding-top: 56px;
    scroll-padding-block-start: 56px;
  }
  body.page-home main > section{
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: transform 420ms var(--ease-out), opacity 420ms var(--ease-out), filter 420ms var(--ease-out);
    will-change: transform, opacity, filter;
  }
  body.page-home main > section.mobile-section{
    opacity: 0.86;
    transform: translateY(14px) scale(0.985);
    filter: saturate(0.92);
  }
  body.page-home main > section.mobile-section.mobile-section-active{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }

  body.page-home .section,
  body.page-home .featured-project,
  body.page-home .why-us,
  body.page-home .video-story,
  body.page-home .projects-slider,
  body.page-home .testimonials,
  body.page-home .awards-section,
  body.page-home .contact-section{
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Keep overlay-driven sections readable on small screens */
  body.page-home .featured-visual{ max-height: none; }
  body.page-home .featured-overlay{ padding-bottom: 18px; }
}

/* Reveal */
.fade-in{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.fade-in.active{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .intro-grid{ grid-template-columns: 1fr; }
  .split-grid{ grid-template-columns: 1fr; }
  .split-media{ min-height: 260px; }
  .section-head{ flex-direction: column; align-items:flex-start; }
  .home-card{ grid-column: span 6; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-meta{ justify-items: start; }
}

@media (max-width: 720px){
  .header-bar{
    grid-template-columns: 56px 1fr 0 220px;
  }
  .header-share{ display:none; }
  .header-cta-line{ width: 70px; }
  .crumbs{
    font-size: 11px;
    gap: 8px;
  }
  .header-cta{
    padding: 0 12px;
    letter-spacing: 0.12em;
    font-size: 11px;
  }
  .menu-mini{ gap: 12px; }
  .menu-top-cluster{ gap: 12px; }
  .menu-social{ gap: 10px; }
  .hero-content{ padding-top: 120px; padding-bottom: 56px; }
  .home-card{ grid-column: span 12; }

  .contact-panel{
    width: 100%;
    max-width: 100%;
  }
  .field-row{
    grid-template-columns: 1fr;
  }

  .subscribe-panel{
    height: 56vh;
  }
  .subscribe-row{
    grid-template-columns: 140px 1fr 110px;
  }

  .projects-slider{
    padding: 56px 0 56px;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .slider-container{ padding: 0 20px; }
  .projects-slider-header{ flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .projects-slider-title{ font-size: clamp(28px, 6vw, 36px); }
  .projects-slider-cta{ font-size: 10px; letter-spacing: 0.16em; }
  .slider-wrap{ margin-top: 0; }
  .slider-track{ gap: 24px; padding-left: 20px; padding-right: 24px; }
  .slider-item{ flex: 0 0 min(440px, 92vw); }
  .slider-item-media{ aspect-ratio: 4 / 5; }
  .slider-item-img{
    background-size: cover;
    background-position: right top;
  }
  .slider-item-link{ --slider-item-inline-pad: 14px; }
  .slider-item-overlay{ padding: 18px var(--slider-item-inline-pad) 14px; }
  .slider-item-title{ font-size: clamp(20px, 4.5vw, 26px); }
  .slider-nav-wrap{ bottom: 24px; right: 20px; left: 20px; display: flex; justify-content: flex-end; }
  .slider-nav{ padding: 10px 12px; min-width: 160px; }
  .slider-btn{ width: 34px; height: 34px; font-size: 16px; }
  .slider-progress{ height: 4px; min-width: 60px; }
}

@media (max-width: 980px){
  .header-bar{
    grid-template-columns: 56px 1fr 56px 260px;
  }
  .header-cta-line{
    width: 90px;
  }
  .crumb.current{
    max-width: 38vw;
  }
  .menu-logo img{
    height: 100px;
  }
}

@media (max-width: 560px){
  .header-bar{
    grid-template-columns: 56px 1fr 200px;
    grid-template-areas: "left center right";
  }
  .header-left{ grid-area: left; }
  .header-center{ grid-area: center; }
  .header-right{ grid-area: right; }
  .header-share{ display:none; }

  .header-cta{
    gap: 10px;
  }
  .header-cta-line{
    display:none;
  }
  .crumbs{
    padding-left: 10px;
  }
  .crumb.current{
    max-width: 32vw;
  }

  .slider-item{ flex: 0 0 min(320px, 94vw); }
  .slider-item-link{ --slider-item-inline-pad: 12px; }
  .slider-item-overlay{ padding: 14px var(--slider-item-inline-pad) 12px; }
  .slider-item-title{ font-size: 20px; }
  .slider-item-desc{ font-size: 12px; }
  .slider-item-location{ font-size: 9px; letter-spacing: 0.14em; }
  .slider-nav-wrap{ bottom: 20px; right: 16px; left: 16px; }

  .footer-logo img{
    width: 108px;
  }
  .footer{
    padding: 44px 0 40px;
  }
  .footer-grid{
    gap: 22px;
  }
}

@media (max-width: 420px){
  .header-bar{
    grid-template-columns: 56px 1fr 160px;
  }
  .header-cta{
    padding: 0 10px;
    letter-spacing: 0.10em;
    font-size: 10px;
  }
  .header-cta-arrow{
    display:none;
  }
  .crumbs{
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .crumb.current{
    max-width: 40vw;
  }

  .subscribe-row{
    grid-template-columns: 1fr;
  }
  .subscribe-left{
    border-right: none;
    border-bottom: 1px solid rgba(16,18,18,0.08);
  }
  .subscribe-right{
    border-top: 1px solid rgba(16,18,18,0.08);
  }
}

/* ---------- About Us page (Total Environmentâ€“style layout) ---------- */
.page-about{
  background: #0a0a0a;
}

.about-main{
  color: #f5f5f2;
  scroll-snap-type: y proximity;
}

.page-about .about-main > section{
  min-height: 100svh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
}

@media (max-width: 900px){
  .page-about .about-main{
    scroll-snap-type: y mandatory;
    scroll-padding-top: 56px;
    scroll-padding-block-start: 56px;
  }
}

/* Keep internal wrappers full-width inside full-screen sections */
.page-about .about-main > section > .container,
.page-about .about-main > section > .about-fullbleed-img{
  width: 100%;
}

.page-about .about-main > section.about-hero{
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  min-height: 100svh;
  min-height: 100dvh;
  height: 100svh;
  height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  box-sizing: border-box;
}

.about-hero{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}
.about-hero-media{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.22) 0%, rgba(4,5,8,0.35) 42%, rgba(0,0,0,0.55) 100%),
    url("../images/about-hero-banner.png") center / cover no-repeat;
  transform-origin: center center;
  animation: hero-banner-zoom 8s ease-in-out infinite;
}
.about-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0,0,0,0.35) 100%),
    radial-gradient(90% 50% at 50% 100%, rgba(0,0,0,0.45), transparent 55%);
  pointer-events: none;
}
.page-about .about-main > section.about-hero > .container{
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}
.page-about .about-main > section.footer-fullscreen-image{
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}
.page-about .about-main > section.contact-section{
  align-items: stretch;
}
.about-hero-shell{
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}
.about-hero-headline{
  align-self: flex-start;
  max-width: min(560px, 100%);
}
.about-hero-title{
  margin: 0;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.about-hero-foot{
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}
.about-hero-explore-link{
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  margin-bottom: 14px;
}
.about-hero-explore-arrow{
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  opacity: 0.92;
}

@media (min-width: 901px){
  .about-hero-headline{
    max-width: min(520px, 52%);
  }
  .about-hero-title{
    font-size: clamp(32px, 3.4vw, 52px);
  }
}

/* Section 2: Quote */
.about-quote{
  padding: 72px 0;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-quote-inner{
  display: block;
}
.about-quote-card{
  margin: 0 auto;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.6fr);
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}
.about-quote-left{
  margin: 0;
  padding: clamp(26px, 3.4vw, 44px) clamp(22px, 3.2vw, 38px);
  background: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-quote-kicker{
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.85);
}
.about-quote-text{
  margin: 0;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
}
.about-quote-right{
  min-height: clamp(260px, 33vw, 380px);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
    url("../images/why-us-thoughtful.png") center / cover no-repeat;
}

@media (max-width: 900px){
  .about-quote-card{
    grid-template-columns: 1fr;
  }
  .about-quote-text{
    max-width: none;
  }
  .about-quote-right{
    min-height: 240px;
  }
}

@media (max-width: 560px){
  .about-quote{
    padding: 52px 0;
  }
  .about-quote-left{
    padding: 24px 18px;
  }
  .about-quote-text{
    font-size: clamp(18px, 6vw, 28px);
  }
}

/* Section 3: Vision / Mission / Win */
.about-vm{
  padding: 88px 0 96px;
  background: #0a0a0a;
}
.about-vm-header{
  margin: 0 0 26px;
}
.about-vm-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-vm-card{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 24px 22px;
}
.about-vm-card--wide{
  grid-column: 1 / -1;
}
.about-vm-label{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.85);
}
.about-vm-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 10px;
}
.about-vm-foot{
  margin-top: 12px;
  color: rgba(255,255,255,0.74);
}
.about-win{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}
.about-win li{
  margin: 10px 0;
}
.about-win strong{
  color: rgba(255,255,255,0.92);
}

/* Vision / Mission: prominent stacked image cards */
.about-vm--prominent,
.about-vm--screenshot{
  padding: clamp(56px, 9vw, 96px) 0;
  background: #000;
}
.about-vm--prominent .about-vm-inner,
.about-vm--screenshot .about-vm-inner{
  max-width: min(720px, var(--container));
}
.about-vm-intro{
  margin-bottom: clamp(28px, 5vw, 44px);
}
.about-vm-intro-kicker{
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.9);
}
.about-vm-intro-title{
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}
.about-vm-intro-text{
  margin: 0;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 48ch;
}

.about-vm-card-stack,
.about-vm-screen-right{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-vm-screen-card{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: #111;
  overflow: hidden;
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.about-vm-screen-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 32px 100px rgba(0,0,0,0.65);
}
.about-vm-screen-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.03);
  transition: transform 700ms var(--ease-out);
}
.about-vm-screen-card:hover::before{
  transform: scale(1.07);
}
.about-vm-screen-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.62) 42%,
    rgba(0,0,0,0.88) 100%
  );
  pointer-events: none;
}
.about-vm-screen-card--customers{
  min-height: clamp(260px, 38vh, 320px);
}
.about-vm-screen-card--team{
  min-height: clamp(380px, 52vh, 480px);
}
.about-vm-screen-card > *{
  position: relative;
  z-index: 1;
}
.about-vm-screen-card-label{
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.about-vm-screen-card-title{
  margin: 0 0 16px;
  font-size: clamp(26px, 4.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
.about-vm-screen-card-text{
  margin: 0 0 12px;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 54ch;
}
.about-vm-screen-card-text:last-of-type{
  margin-bottom: 0;
}
.about-vm-screen-card-subtitle{
  margin: 20px 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.about-vm-screen-card-list{
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
}
.about-vm-screen-card-list li{
  padding-left: 4px;
}
.about-vm-screen-card-list strong{
  color: #fff;
  font-weight: 700;
}

.about-vm-screen-card--customers::before{
  background-image: url("../images/about-hero-banner.png");
}
.about-vm-screen-card--team::before{
  background-image: url("../images/why-us-3.png");
}

/* Legacy layout (if used elsewhere) */
.about-vm-screen{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
  padding: 64px 0;
}
.about-vm-screen-left{
  background: #070707;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}
.about-vm-screen-title{
  margin: 0 0 18px;
  font-size: clamp(30px, 4.5vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.about-vm-screen-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.70);
  max-width: 52ch;
}
.about-vm-screen-foot{
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 52ch;
}

@media (max-width: 900px){
  .about-vm--prominent,
  .about-vm--screenshot{
    padding: 48px 0 56px;
  }
  .about-vm-screen-card{
    border-radius: 20px;
    padding: 24px 20px;
  }
  .about-vm-screen-card--team{
    min-height: 360px;
  }
}

/* Contact Us */
.about-contact{
  padding: 72px 0 120px;
  background: #0a0a0a;
}
.about-contact-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 34px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 55%);
}
.about-contact-title{
  margin: 0 0 6px;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.02em;
}
.about-contact-text{
  margin: 0;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}
.about-contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-story{
  padding: 0;
  background: #f6f6f3;
  color: #121212;
}
.about-story-inner{
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 0;
  align-items: stretch;
  min-height: 100svh;
  min-height: 100dvh;
}
.about-story-copy{
  padding: clamp(44px, 8vw, 96px) clamp(22px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story .about-h2{
  color: #111;
}
.about-h2{
  margin: 0 0 22px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-h2--center{
  text-align: center;
}
.about-drop{
  margin: 0 0 22px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(16,16,16,0.86);
}
.about-p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(16,16,16,0.70);
}
.about-p:last-child{
  margin-bottom: 0;
}
.about-story-photo{
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
    url("../images/why-us-1.png") center / cover no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.about-fullbleed{
  padding: 0;
  margin: 0;
  align-items: stretch;
}
.about-fullbleed-img{
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.25)),
    url("../images/stats-bg.png") center / cover no-repeat;
}

.about-believe{
  padding: 88px 0 96px;
  background: #0a0a0a;
}
.about-believe-header{
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.about-believe-sub{
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}
.about-believe-sub a{
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-believe-sub a:hover{
  color: #fff;
}
.about-pillars{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-pillar{
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.about-pillar-num{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(201,162,39,0.85);
  margin-bottom: 12px;
}
.about-h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-pillar p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

.about-numbers{
  padding: 56px 0;
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-numbers-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stat-value{
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #f0e6d2 0%, #c9a227 55%, #a67c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stat-label{
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.about-cta{
  padding: 96px 0 120px;
  background: #0a0a0a;
}
.about-cta-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 44px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%);
}
.about-cta-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-cta-text{
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}
.about-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid transparent;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.about-cta-btn--primary{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.about-cta-btn--primary:hover{
  background: rgba(255,255,255,0.16);
}
.about-cta-btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
}
.about-cta-btn--ghost:hover{
  background: rgba(255,255,255,0.08);
}

@media (max-width: 900px){
  .about-story-inner{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-story-visual{
    order: 2;
    max-width: none;
  }
  .about-story-photo{
    min-height: 46vh;
  }
  .about-pillars{
    grid-template-columns: 1fr;
  }
  .about-numbers-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-cta-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .about-vm-grid{
    grid-template-columns: 1fr;
  }
  .about-vm-split{
    grid-template-columns: 1fr;
  }
  .about-contact-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }
}

@media (max-width: 560px){
  .about-hero-title{
    font-size: clamp(20px, 5.8vw, 30px);
  }
  .about-hero-explore-link{
    letter-spacing: 0.22em;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* ---------- JIVA project page ---------- */
.page-jiva{
  background: #0a0a0a;
}
.page-jiva .jiva-main{
  scroll-snap-type: y proximity;
  scroll-padding-top: 56px;
}
.jiva-main{
  color: #f5f5f2;
  background: #0a0a0a;
}
.jiva-main > section{
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  padding: clamp(28px, 6vh, 72px) 0;
  padding-top: max(clamp(28px, 6vh, 72px), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(28px, 6vh, 72px), env(safe-area-inset-bottom, 0px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.jiva-main > section.jiva-hero{
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  min-height: 100svh;
  min-height: 100dvh;
  height: 100svh;
  height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  box-sizing: border-box;
}
.jiva-main > section.footer-fullscreen-image{
  padding: 0;
  justify-content: stretch;
}
.jiva-main > section > .container{
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.jiva-main > section.jiva-hero > .container{
  justify-content: flex-end;
}

.jiva-hero{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}
.jiva-hero-media{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.22) 0%, rgba(4,5,8,0.35) 42%, rgba(0,0,0,0.55) 100%),
    url("../images/jiva-hero.png") center / cover no-repeat;
  transform-origin: center center;
  animation: hero-banner-zoom 8s ease-in-out infinite;
}
.jiva-hero--jiva3 .jiva-hero-media{
  background:
    linear-gradient(180deg, rgba(6,8,12,0.22) 0%, rgba(4,5,8,0.35) 42%, rgba(0,0,0,0.55) 100%),
    url("../images/jiva3-hero.png") center / cover no-repeat;
}
.jiva-hero--i22 .jiva-hero-media{
  background:
    linear-gradient(180deg, rgba(6,8,12,0.22) 0%, rgba(4,5,8,0.35) 42%, rgba(0,0,0,0.55) 100%),
    url("../images/i22-hero.png") center / cover no-repeat;
}
.jiva-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0,0,0,0.35) 100%),
    radial-gradient(90% 50% at 50% 100%, rgba(0,0,0,0.45), transparent 55%);
  pointer-events: none;
}
.jiva-hero-shell{
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}
.jiva-hero-headline{
  align-self: flex-start;
  max-width: min(380px, 100%);
}
.jiva-kicker{
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.jiva-hero-title{
  margin: 0;
  font-size: clamp(40px, 11vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.jiva-hero-location{
  margin: 12px 0 0;
  font-size: clamp(15px, 3.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.jiva-hero-foot{
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}
.jiva-scroll-link{
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  margin-bottom: 14px;
}
.jiva-scroll-arrow{
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  opacity: 0.92;
}
.jiva-hero-rera{
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
@media (min-width: 901px){
  .jiva-hero-headline{
    max-width: min(520px, 52%);
  }
}
@media (max-height: 560px){
  .jiva-hero-shell{
    padding-top: calc(56px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .jiva-hero-title{
    font-size: clamp(32px, 9vw, 72px);
  }
  .jiva-hero-location{
    font-size: clamp(14px, 3.2vw, 18px);
  }
  .jiva-scroll-link{
    margin-bottom: 8px;
  }
  .about-hero-shell{
    padding-top: calc(56px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .about-hero-title{
    font-size: clamp(18px, 4.5vw, 28px);
  }
  .about-hero-explore-link{
    margin-bottom: 8px;
  }
}
.jiva-facts{
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #0d0d0d;
}
.jiva-facts-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  flex: 1 1 auto;
  align-content: center;
}
.jiva-fact-label{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.jiva-fact-value{
  margin: 0;
  font-size: clamp(16px, 2.2vw, 24px);
}
.jiva-overview{
  background: #101010;
}
.jiva-overview-grid{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}
.jiva-overview-copy h2,
.jiva-section-title,
.jiva-amenities-inner h2,
.jiva-location-grid h2{
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
}
.jiva-overview-copy p,
.jiva-location-grid p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
}
.jiva-overview-media{
  min-height: clamp(220px, 52vh, 560px);
  flex: 1 1 auto;
  border-radius: 14px;
  background: url("../images/projects-slide-2.png") center / cover no-repeat;
}
.jiva-gallery{
  background: #000;
  overflow: hidden;
}
.jiva-gallery-wrap{
  max-width: none;
  width: 100%;
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
}
.jiva-gallery-head{
  padding: 6px 0 14px;
  flex-shrink: 0;
}
.jiva-gallery-title{
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: left;
}
.jiva-gallery-slider{
  position: relative;
  margin: 0 -20px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jiva-gallery-track{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 20px 0;
  padding: 0 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1 1 auto;
  align-items: flex-start;
}
.jiva-gallery-track::-webkit-scrollbar{
  display: none;
}
.jiva-gallery-slide{
  flex: 0 0 min(76vw, 520px);
  scroll-snap-align: start;
  margin: 0;
  border: 0;
  background: #000;
  overflow: visible;
}
.jiva-gallery-slide img{
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.jiva-gallery-caption{
  margin: 0;
  padding: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  text-align: left;
}
.jiva-gallery-nav{
  position: absolute;
  top: 36%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.jiva-gallery-nav:hover{
  background: rgba(0,0,0,0.65);
  border-color: rgba(255,255,255,0.4);
}
.jiva-gallery-nav--prev{
  left: 4px;
}
.jiva-gallery-nav--next{
  right: 4px;
}
.jiva-gallery-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 0 4px;
  flex-shrink: 0;
}
.jiva-gallery-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.jiva-gallery-dot.is-active{
  background: #fff;
  transform: scale(1.2);
}
.jiva-gallery-head--amenities{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}
.jiva-gallery-head--amenities .jiva-gallery-title{
  text-align: left;
  margin-right: auto;
}
.jiva-amenities-brochure{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.jiva-amenities-brochure:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(80,156,65,0.55);
  color: #fff;
}
.jiva-amenities-brochure:focus-visible{
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 3px;
}
.jiva-gallery-dot:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 2px;
}
.jiva-amenities{
  background: #111;
}
.jiva-amenities-inner{
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.2fr);
  gap: clamp(20px, 4vw, 52px);
  flex: 1 1 auto;
  align-content: center;
  min-height: 0;
}
.jiva-amenities-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.jiva-amenities-list li{
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: rgba(255,255,255,0.84);
}
.jiva-location-grid{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}
.jiva-map{
  min-height: clamp(220px, 42vh, 440px);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(201,162,39,0.22), rgba(80,156,65,0.14)),
    url("../images/stats-bg.png") center / cover no-repeat;
}

/* ── Project overview strip (below hero) ── */
.jiva-overview-strip{
  position: relative;
  background: #000;
  color: #fff;
  padding: clamp(56px, 8vh, 96px) 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.jiva-overview-strip::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(80,156,65,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(80,156,65,0.08) 0%, transparent 70%);
}
.jiva-overview-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}
.jiva-overview-layout{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.jiva-overview-copy{
  min-width: 0;
}
.jiva-overview-title{
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.jiva-overview-desc{
  margin: 0 0 28px;
  max-width: 560px;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}
.jiva-overview-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.jiva-overview-stats{
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
}
.jiva-overview-stat{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 8px clamp(12px, 2vw, 22px);
}
.jiva-overview-stat-val{
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.jiva-overview-stat-lbl{
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.55);
}
.jiva-overview-stat-divider{
  width: 2px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 72px;
  background: linear-gradient(180deg, #509c41 0%, rgba(80,156,65,0.45) 45%, #c9a227 100%);
  border-radius: 2px;
}
.jiva-overview-price{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 40px;
  background: #509c41;
  color: #fff;
  font-size: clamp(14px, 2.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(80,156,65,0.26);
}
.jiva-overview-price strong{
  font-weight: 800;
}
.jiva-overview-brochure,
.jiva-overview-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-size: clamp(14px, 2.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.jiva-overview-brochure:hover,
.jiva-overview-cta:hover{
  background: #509c41;
  border-color: #509c41;
  color: #fff;
  box-shadow: 0 4px 18px rgba(80,156,65,0.26);
}
.jiva-overview-brochure:focus-visible,
.jiva-overview-cta:focus-visible{
  outline: 2px solid rgba(80,156,65,0.65);
  outline-offset: 3px;
}
.jiva-overview-stat-val--sm{
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: break-word;
}
.jiva-overview-stat--wrap{
  flex: 1.5;
  padding-right: clamp(18px, 2.5vw, 28px);
}

@media (min-width: 901px){
  .jiva-overview-stat--wrap{
    flex: 1.65;
    min-width: 7.25rem;
  }
  .jiva-overview-stat-val--sm{
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.4;
  }
}

@media (max-width: 900px){
  .jiva-overview-layout{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .jiva-overview-stats{
    justify-content: flex-start;
  }
}

@media (max-width: 640px){
  .jiva-overview-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
  .jiva-overview-stat{
    padding: 0;
  }
  .jiva-overview-stat-divider{
    display: none;
  }
}

.jiva-main > section.jiva-location--guide{
  position: relative;
  padding: 0 !important;
  padding-top: env(safe-area-inset-top, 0px) !important;
  padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  justify-content: stretch;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}
.jiva-location--guide .jiva-location-shell{
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 100px) 20px clamp(36px, 7vh, 72px);
  min-height: 0;
}
.jiva-location-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 4vh, 32px);
}
.jiva-location--guide .jiva-location-head h2{
  margin: 0;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.jiva-location-filter{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms var(--ease-out);
}
.jiva-location-filter:hover{
  background: rgba(255,255,255,0.32);
}
.jiva-location-filter:focus-visible{
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 2px;
}
.jiva-nb-slider{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}
.jiva-nb-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100% - min(90vw, 380px)) / 2));
  padding: 56px max(20px, calc((100% - min(90vw, 380px)) / 2)) 20px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: stretch;
}
.jiva-nb-track::-webkit-scrollbar{
  display: none;
}
.jiva-nb-slide{
  flex: 0 0 min(72vw, 300px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.jiva-nb-card{
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: min(58vh, 520px);
  overflow: hidden;
  border-radius: 0;
  background: #111;
}
.jiva-nb-card-map{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.jiva-nb-card-tint{
  position: absolute;
  inset: 0;
  background: #509c41;
  pointer-events: none;
}
.jiva-nb-icon{
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  font-size: clamp(52px, 14vw, 76px);
  line-height: 1;
  color: #fff;
  z-index: 1;
}
.jiva-nb-icon-svg{
  width: clamp(52px, 14vw, 76px);
  height: clamp(52px, 14vw, 76px);
  display: block;
  stroke: #fff;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}
.jiva-nb-slide:nth-child(2) .jiva-nb-icon-svg,
.jiva-nb-slide:nth-child(3) .jiva-nb-icon-svg{
  width: clamp(62px, 16vw, 92px);
  height: clamp(62px, 16vw, 92px);
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.5));
}
.jiva-nb-card-copy{
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.jiva-nb-km{
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.jiva-nb-from{
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.95;
}
.jiva-nb-label{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.jiva-nb-slide--category{
  flex: 0 0 min(90vw, 380px);
  align-items: stretch;
  gap: 0;
  scroll-snap-align: center;
}
.jiva-nb-slide--category .jiva-nb-card{
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  width: 100%;
  min-height: min(92vw, 480px);
  max-height: min(64vh, 540px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.34);
}
.jiva-nb-slide--category .jiva-nb-icon{
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  align-self: center;
  margin: clamp(28px, 8vw, 40px) auto clamp(10px, 3vw, 16px);
  z-index: 1;
}
.jiva-nb-slide--category .jiva-nb-card-copy{
  position: relative;
  left: auto;
  bottom: auto;
  margin-top: auto;
  padding: 0 18px 12px;
  z-index: 1;
}
.jiva-nb-category{
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.jiva-nb-places{
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.jiva-nb-slide--category .jiva-nb-places{
  position: relative;
  z-index: 1;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.jiva-nb-places li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.jiva-nb-places li:last-child{
  border-bottom: 0;
}
.jiva-nb-place-name{
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.94);
  line-height: 1.35;
}
.jiva-nb-place-dist{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.2);
}
.jiva-nb-nav-wrap{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jiva-nb-nav{
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.jiva-nb-nav:hover:not(:disabled){
  background: rgba(8, 10, 12, 0.88);
  border-color: rgba(255,255,255,0.48);
  transform: scale(1.05);
}
.jiva-nb-nav:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 2px;
}
.jiva-nb-nav:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.jiva-nb-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0 0;
}
.jiva-nb-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.jiva-nb-dot.is-active{
  background: #fff;
  transform: scale(1.2);
}
.jiva-nb-dot:focus-visible{
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

.jiva-location-filter-lines{
  width: 18px;
  height: 12px;
  display: block;
  background:
    linear-gradient(#fff,#fff) 0 0/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 50%/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 100%/100% 2px no-repeat;
  opacity: 0.95;
}

.jiva-nb-sheet{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}
.jiva-nb-sheet.is-open{
  visibility: visible;
  pointer-events: auto;
}
.jiva-nb-sheet-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.28s var(--ease-out);
}
.jiva-nb-sheet.is-open .jiva-nb-sheet-backdrop{
  opacity: 1;
}
.jiva-nb-sheet-panel{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: min(92vh, 720px);
  overflow: hidden auto;
  background: #fff;
  color: #121212;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.18);
  padding: 12px 18px 28px;
  transform: translateY(110%);
  transition: transform 0.32s var(--ease-out);
}
.jiva-nb-sheet.is-open .jiva-nb-sheet-panel{
  transform: translateY(0);
}
.jiva-nb-sheet-head{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.jiva-nb-sheet-back{
  border: 0;
  background: none;
  padding: 8px 12px 8px 4px;
  margin: -4px 0 0 -6px;
  font-size: 28px;
  line-height: 1;
  color: #111;
  cursor: pointer;
  border-radius: 8px;
}
.jiva-nb-sheet-back:hover{
  background: rgba(0,0,0,0.05);
}
.jiva-nb-sheet-back:focus-visible{
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 2px;
}
.jiva-nb-sheet-title{
  margin: 0 0 20px;
  padding: 0 4px;
  font-size: clamp(18px, 4.2vw, 22px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.jiva-nb-sheet-body{
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.jiva-nb-sheet-rail{
  width: 5px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 32%, #d0d0d0 32%, #d0d0d0 100%);
  align-self: stretch;
  min-height: 120px;
}
.jiva-nb-sheet-grid{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}
.jiva-nb-guide{
  flex: 1;
  min-width: 0;
  max-height: min(58vh, 520px);
  overflow-y: auto;
  padding-right: 4px;
}
.jiva-nb-guide-group{
  margin-bottom: 22px;
}
.jiva-nb-guide-group:last-child{
  margin-bottom: 0;
}
.jiva-nb-guide-title{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.jiva-nb-guide-items{
  list-style: none;
  margin: 0;
  padding: 0;
}
.jiva-nb-guide-items li{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  line-height: 1.35;
}
.jiva-nb-guide-items li:last-child{
  border-bottom: 0;
}
.jiva-nb-guide-name{
  min-width: 0;
}
.jiva-nb-guide-dist{
  flex-shrink: 0;
  color: rgba(255,255,255,0.72);
  font-variant-numeric: tabular-nums;
}
.jiva-nb-tile{
  position: relative;
  aspect-ratio: 1;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  font: inherit;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.jiva-nb-tile:active{
  transform: scale(0.98);
}
.jiva-nb-tile--accent{
  background: #509c41;
  color: #fff;
}
.jiva-nb-tile--light{
  background: #2a2a2a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.jiva-nb-tile--empty{
  background: transparent;
  pointer-events: none;
  border: 1px dashed rgba(0,0,0,0.06);
}
.jiva-nb-tile-ic{
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1;
  color: #fff;
}
.jiva-nb-tile-ic .jiva-nb-icon-svg{
  width: clamp(26px, 7vw, 34px);
  height: clamp(26px, 7vw, 34px);
  stroke: #fff;
}
.jiva-nb-tile-txt{
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.jiva-nb-tile-txt--stack{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jiva-nb-tile:focus-visible{
  outline: 2px solid rgba(0,0,0,0.35);
  outline-offset: 2px;
}
.jiva-nb-tile--accent:focus-visible{
  outline-color: rgba(255,255,255,0.85);
}

@media (min-width: 600px){
  .jiva-nb-sheet{
    align-items: center;
    padding: 24px;
  }
  .jiva-nb-sheet-panel{
    border-radius: 16px;
    max-height: 85vh;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
  }
  .jiva-nb-sheet.is-open .jiva-nb-sheet-panel{
    transform: scale(1);
    opacity: 1;
  }
}

.jiva-main > section.jiva-floorplan{
  background: #f4f3ef;
  color: #1a1a1a;
  justify-content: flex-start;
}
.jiva-main > section.jiva-floorplan > .container{
  justify-content: flex-start;
}
.jiva-floorplan-inner{
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  flex: 0 1 auto;
}
.jiva-floorplan-heading{
  margin: 0 0 28px;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  color: #121212;
}
.jiva-floorplan-tabs{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: clamp(20px, 3vw, 36px);
  margin: 0 0 28px;
  padding: 0 0 2px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.jiva-floorplan-tabs::-webkit-scrollbar{
  display: none;
}
.jiva-floorplan-tab{
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0 0 -1px;
  padding: 0 4px 14px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
  cursor: pointer;
  transition: color 180ms var(--ease-out);
}
.jiva-floorplan-tab:hover{
  color: rgba(0,0,0,0.62);
}
.jiva-floorplan-tab.is-active{
  color: #509c41;
}
.jiva-floorplan-tab.is-active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #509c41;
}
.jiva-floorplan-tab:focus-visible{
  outline: 2px solid rgba(80,156,65,0.45);
  outline-offset: 4px;
}
.jiva-floorplan-slider{
  position: relative;
  width: 100%;
  margin: 0 0 12px;
}
.jiva-floorplan-track{
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}
.jiva-floorplan-track::-webkit-scrollbar{
  display: none;
}
.jiva-floorplan-track:focus-visible{
  outline: 2px solid rgba(80,156,65,0.45);
  outline-offset: 4px;
}
.jiva-floorplan-panel{
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  box-sizing: border-box;
}
.jiva-floorplan-nav{
  position: absolute;
  top: min(28%, 180px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.92);
  color: #1a1a1a;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.jiva-floorplan-nav:hover{
  background: #fff;
  border-color: rgba(0,0,0,0.22);
}
.jiva-floorplan-nav--prev{
  left: 4px;
}
.jiva-floorplan-nav--next{
  right: 4px;
}
.jiva-floorplan-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0 0;
}
.jiva-floorplan-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(0,0,0,0.22);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.jiva-floorplan-dot.is-active{
  background: #509c41;
  transform: scale(1.2);
}
.jiva-floorplan-dot:focus-visible{
  outline: 2px solid rgba(80,156,65,0.45);
  outline-offset: 2px;
}
.jiva-floorplan-figure{
  margin: 0 0 22px;
}
.jiva-floorplan-figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Floorplan zoom viewer ── */
.fp-zoom-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.06),
    0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  cursor: zoom-in;
  touch-action: none;
  transition: box-shadow 0.35s ease;
}
.fp-zoom-wrap.is-zoomed{
  cursor: grab;
}
.fp-zoom-wrap:hover{
  box-shadow:
    0 12px 44px rgba(0,0,0,0.1),
    0 1px 4px rgba(0,0,0,0.06);
}
.fp-zoom-wrap.is-grabbing{
  cursor: grabbing;
}
.fp-zoom-inner{
  transform-origin: 0 0;
  will-change: transform;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fp-zoom-wrap.is-grabbing .fp-zoom-inner{
  transition: none;
}

.fp-zoom-controls{
  position: absolute;
  top: 14px;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  flex-direction: row;
  gap: 6px;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fp-zoom-wrap:hover .fp-zoom-controls,
.fp-zoom-wrap.is-grabbing .fp-zoom-controls,
.fp-zoom-wrap.is-zoomed .fp-zoom-controls{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.fp-zoom-btn{
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 2px 12px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.06);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.fp-zoom-btn:hover{
  background: #fff;
  transform: scale(1.08);
  box-shadow:
    0 4px 18px rgba(0,0,0,0.16),
    0 0 0 1px rgba(0,0,0,0.08);
}
.fp-zoom-btn:active{
  transform: scale(0.95);
}

.fp-zoom-hint{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.fp-zoom-hint.is-hidden{
  opacity: 0;
}

@keyframes fp-fade-in{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}
.jiva-floorplan-panel.is-active .fp-zoom-wrap{
  animation: fp-fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.jiva-floorplan-panel.is-active .jiva-floorplan-subtitle{
  animation: fp-fade-in 0.5s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.jiva-floorplan-panel.is-active .jiva-floorplan-specs{
  animation: fp-fade-in 0.5s 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.jiva-floorplan-panel.is-active .jiva-floorplan-cta{
  animation: fp-fade-in 0.5s 0.26s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.jiva-floorplan-subtitle{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #121212;
}
.jiva-floorplan-specs{
  margin: 0 0 22px;
  padding: 0;
  max-width: 440px;
  display: grid;
  gap: 10px;
}
.jiva-floorplan-specs-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.45;
}
.jiva-floorplan-specs-row dt{
  margin: 0;
  font-weight: 600;
  color: rgba(0,0,0,0.62);
}
.jiva-floorplan-specs-row dd{
  margin: 0;
  text-align: right;
  font-weight: 600;
  color: rgba(0,0,0,0.92);
}
.jiva-floorplan-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #509c41;
  text-decoration: none;
  transition: opacity 160ms var(--ease-out);
}
.jiva-floorplan-cta:hover{
  opacity: 0.85;
}
.jiva-floorplan-cta-arrow{
  font-size: 14px;
  letter-spacing: 0;
}

.jiva-main > section.jiva-usp{
  position: relative;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  justify-content: stretch;
  color: #fff;
  background: #0a0a0a;
}
.jiva-usp-bg{
  position: absolute;
  inset: 0;
  background: url("../images/jiva-usp-bg.png") center / cover no-repeat;
  isolation: isolate;
}
.jiva-usp-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.jiva-usp-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.jiva-usp-inner{
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  width: 100%;
  max-width: var(--container);
  padding-top: clamp(88px, 14vh, 120px);
  padding-bottom: clamp(48px, 8vh, 88px);
}
.jiva-usp-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: clamp(28px, 5vh, 56px);
}
.jiva-usp-title{
  margin: 0;
  min-width: 0;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.jiva-usp-brochure{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  flex-shrink: 0;
  transition: opacity 160ms var(--ease-out);
}
.jiva-usp-brochure:hover{
  opacity: 0.88;
}
.jiva-usp-pdf{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.jiva-usp-list{
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: min(520px, 100%);
  display: grid;
  gap: clamp(14px, 2.4vh, 22px);
}
.jiva-usp-list li{
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}

.jiva-usp-brochure:focus-visible{
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 3px;
}

@media (max-width: 900px){
  .jiva-facts-grid,
  .jiva-overview-grid,
  .jiva-amenities-inner,
  .jiva-location-grid{
    grid-template-columns: 1fr;
  }
  .page-jiva .jiva-main{
    scroll-snap-type: y mandatory;
  }
  .jiva-gallery-slider{
    margin: 0 -16px;
  }
  .jiva-gallery-slide{
    flex: 0 0 min(78vw, 420px);
  }
  .jiva-gallery-nav{
    display: none;
  }
  .jiva-nb-nav{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .jiva-nb-nav-wrap{
    gap: 6px;
  }
  .jiva-nb-track{
    scroll-padding-inline: max(16px, calc((100% - min(92vw, 340px)) / 2));
    padding: 52px max(16px, calc((100% - min(92vw, 340px)) / 2)) 20px;
  }
  .jiva-nb-slide--category{
    flex-basis: min(92vw, 340px);
  }
  .jiva-nb-slide--category .jiva-nb-card{
    min-height: min(96vw, 440px);
    max-height: min(68vh, 500px);
  }
  .jiva-usp-head{
    gap: 10px 14px;
  }
  .jiva-usp-brochure{
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

/* Privacy page */
.page-privacy{
  background: var(--bg);
}
.page-privacy .about-main{
  scroll-snap-type: none;
}
.page-privacy .privacy-main > section{
  min-height: auto;
  display: block;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}
.privacy-main{
  padding-top: 88px;
}
.privacy-hero{
  padding: 52px 0 24px;
}
.privacy-hero-inner{
  max-width: 900px;
}
.privacy-eyebrow{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.privacy-title{
  margin: 0 0 14px;
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.privacy-lead{
  margin: 0;
  max-width: 76ch;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.74);
}
.privacy-content{
  padding: 16px 0 76px;
}
.privacy-card{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px 28px;
  backdrop-filter: blur(2px);
}
.privacy-block + .privacy-block{
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.privacy-block h2{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.01em;
}
.privacy-block p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.76);
}
.privacy-block p + p{
  margin-top: 12px;
}
.privacy-block ul{
  margin: 12px 0 12px 18px;
  padding: 0;
}
.privacy-block li{
  margin: 7px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 900px){
  .privacy-main{
    padding-top: 78px;
  }
  .privacy-hero{
    padding-top: 38px;
  }
  .privacy-card{
    border-radius: 16px;
    padding: 24px 18px;
  }
  .privacy-content{
    padding-bottom: 56px;
  }
}

/* ═══════════════════════════════════════════
   Careers & Blog pages (pg- prefix)
   ═══════════════════════════════════════════ */

.page-careers,
.page-blog{
  --pg-accent: #509c41;
  --pg-accent-rgb: 80, 156, 65;
  --pg-accent-light: #62b852;
  --pg-accent-dark: #458536;
}

.pg-hero{
  position: relative;
  padding: clamp(120px, 20vh, 200px) 20px clamp(60px, 12vh, 120px);
  text-align: center;
  overflow: hidden;
}
.pg-hero-glow{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 30% 40%, rgba(var(--pg-accent-rgb), 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 75% 50%, rgba(var(--pg-accent-rgb), 0.08) 0%, transparent 70%);
}
.pg-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pg-hero-badge{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pg-accent);
  padding: 8px 22px;
  border: 1px solid rgba(var(--pg-accent-rgb), 0.45);
  border-radius: 30px;
  background: rgba(var(--pg-accent-rgb), 0.1);
}
.pg-hero-title{
  margin: 0;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.pg-hero-desc{
  margin: 0;
  max-width: 540px;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}

.pg-section{
  padding: clamp(56px, 10vh, 100px) 20px;
}
.pg-section--alt{
  background: rgba(255,255,255,0.03);
}
.pg-section-title{
  margin: 0 0 clamp(32px, 6vh, 52px);
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

/* ── Cards grid (Why us / values) ── */
.pg-card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pg-card{
  padding: 36px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.pg-card:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--pg-accent-rgb), 0.35);
}
.pg-card-icon{
  display: block;
  font-size: 32px;
  margin-bottom: 16px;
}
.pg-card-title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.pg-card-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ── Job listings ── */
.pg-jobs{
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pg-job{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}
.pg-job:hover{
  border-color: rgba(var(--pg-accent-rgb), 0.35);
  transform: translateX(4px);
}
.pg-job-info{
  flex: 1;
  min-width: 0;
}
.pg-job-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.pg-job-meta{
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pg-job-tag{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(var(--pg-accent-rgb), 0.16);
  color: var(--pg-accent);
}
.pg-job-loc{
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.pg-job-desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}
.pg-job-apply{
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(var(--pg-accent-rgb), 0.45);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pg-job-apply:hover{
  background: rgba(var(--pg-accent-rgb), 0.18);
  border-color: var(--pg-accent);
}

@media (max-width: 600px){
  .pg-job{
    flex-direction: column;
    align-items: flex-start;
  }
  .pg-job-apply{
    align-self: flex-start;
  }
}

/* ── CTA section ── */
.pg-cta-section{
  padding: clamp(56px, 10vh, 100px) 20px;
  text-align: center;
}
.pg-cta-inner{
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pg-cta-title{
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
}
.pg-cta-desc{
  margin: 0;
  font-size: clamp(14px, 2.4vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.pg-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--pg-accent-light) 0%, var(--pg-accent) 50%, var(--pg-accent-dark) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(var(--pg-accent-rgb), 0.32);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.pg-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--pg-accent-rgb), 0.42);
}

/* ── Blog featured post ── */
.pg-blog-featured{
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 960px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}
.pg-blog-featured:hover{
  border-color: rgba(var(--pg-accent-rgb), 0.35);
}
.pg-blog-featured-img{
  display: block;
  width: 100%;
  height: clamp(200px, 30vw, 340px);
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
}
.pg-blog-featured-body{
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pg-blog-featured-title{
  margin: 0;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.pg-blog-featured-excerpt{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

@media (min-width: 700px){
  .pg-blog-featured{
    grid-template-columns: 1fr 1fr;
  }
  .pg-blog-featured-img{
    height: auto;
    min-height: 320px;
    align-self: stretch;
  }
}

/* ── Blog tag & meta ── */
.pg-blog-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(var(--pg-accent-rgb), 0.16);
  color: var(--pg-accent);
  width: fit-content;
}
.pg-blog-meta{
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

/* ── Blog grid ── */
.pg-blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.pg-blog-card{
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.pg-blog-card:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--pg-accent-rgb), 0.35);
}
.pg-blog-card-img{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
}
.pg-blog-card-body{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-blog-card-title{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.pg-blog-card-excerpt{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
}
