/* ===================================================================
   RDA Contracting - TREF-style clone
   Faithful rebuild of the tref.digitaldesignnyc.co design system
   Fonts: NanumMyeongjo (serif headings) + Jost (sans body)
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Nanum+Myeongjo:wght@400;700;800&display=swap');

:root{
  --c1: #F2F1ED;   /* cream text */
  --c2: #DCCBB3;   /* tan / gold accent */
  --c3: #141414;   /* near-black */
  --c4: #152621;   /* dark green */
  --c5: #F3EAE1;

  --g1: linear-gradient(180deg, #152621 0%, #000 99.48%);
  --g2: linear-gradient(180deg, #152621 18.75%, #000 99.48%);

  --h1: max(40px, 128rem);
  --h2: max(32px, 96rem);
  --high: max(32px, 96rem);
  --sub: max(16px, 18rem);
  --btn: max(16px, 20rem);
  --body: max(16px, 18rem);
  --p1: max(16px, 40rem);

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* The whole site scales with viewport: 1rem = 0.052vw */
html{
  height: 100%; margin: 0; padding: 0; width: 100%;
  background: var(--c4);
  font-size: 0.052vw;
}
@media screen and (max-width: 1500px){ html{ font-size: 0.062vw; } }
@media screen and (max-width: 1023px){ html{ font-size: 0.072vw; } }
@media screen and (max-width: 767px){ html{ font-size: 0.085vw; } }

*,*::before,*::after{ box-sizing: border-box; }

body{
  min-height: 100%; width: 100%; margin: 0; padding: 0;
  position: relative;
  color: var(--c1);
  font-size: var(--body);
  font-weight: 300;
  font-family: 'Jost', Arial, Helvetica, sans-serif;
  line-height: 130%;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body.is-loader{ overflow: hidden; height: 100vh; }

h1,h2,h3,h4,p,ul,li,a,span,div,input,textarea,select,form,fieldset,button{
  margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box;
}
img{ margin: 0; padding: 0; border: 0; vertical-align: bottom; max-width: 100%; }
input,textarea,select,button{
  font-weight: 400;
  font-family: 'Jost', Arial, Helvetica, sans-serif;
  vertical-align: middle; border: 0; outline: 0; background: none;
}
a{ transition: color .3s linear, background .3s linear; text-decoration: none; color: inherit; }
ul li{ list-style: none; }
::selection{ background-color: #8A7960; }

.holder{ padding: 0 var(--p1); }

h1{
  text-align: center;
  font-family: 'Nanum Myeongjo', serif;
  font-size: var(--h1);
  font-weight: 400;
  line-height: 93.5%;
  letter-spacing: -0.03em;
}
h2{
  text-align: center;
  font-family: 'Nanum Myeongjo', serif;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
}
p{ margin: 0 0 28px; }
.center{ text-align: center; }
.upper{ text-transform: uppercase; }

/* ── BUTTON ── */
.button{
  position: relative;
  display: inline-flex;
  padding: 11rem 38rem;
  color: var(--c2);
  font-size: max(14px, 16rem);
  font-weight: 400;
  line-height: 106%;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--c2);
  transition: color .3s linear, background .3s linear;
}
.button:hover{ color: var(--c4); background: var(--c2); }
.button-holder{ text-align: center; }

/* ── LINK FLASH ── */
.link-flash{
  position: relative;
  display: inline-block;
  font-size: max(14px, 16rem);
  font-weight: 400;
  line-height: 106%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c2);
}
.link-flash::before,.link-flash::after{
  position: absolute; content: ""; left: 0; bottom: -3rem;
  display: block; width: 100%; height: 1px; background: var(--c2);
  transition: 1.1s var(--ease-out-expo);
}
.link-flash::before{ transform: scaleX(0); transform-origin: left; }
.link-flash::after{ transform-origin: right; transition-delay: .25s; }
.link-flash:hover::before{ transform: scaleX(1); transition-delay: .25s; }
.link-flash:hover::after{ transform: scaleX(0); transition-delay: 0s; }

/* ===================================================================
   LOADER - keyhole reveal
   =================================================================== */
.loader{ position: fixed; inset: 0; z-index: 500; overflow: hidden; transition: opacity 0.7s ease; }
.loader.animate{ opacity: 0; pointer-events: none; }
.loader::before{
  position: absolute; inset: 0; content: '';
  background: url(../images/media/slide2.jpeg) 50% 50% no-repeat;
  background-size: cover;
  animation: loader-zoom 3.2s ease-out both;
}
@keyframes loader-zoom{
  from{ transform: scale(1.08); }
  to{ transform: scale(1); }
}
.loader::after{
  position: absolute; inset: 0; content: '';
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.3) 100%);
}
.loader-bg{ display: none; }
.loader.hide{ display: none; }
.loader-box{
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 120rem;
  width: max(350px, 440rem); text-align: center;
  font-size: var(--sub); font-weight: 400; line-height: 150%;
  letter-spacing: 1.8px; text-transform: uppercase;
  z-index: 1;
}
.loader-key-wrap{ overflow: hidden; margin: 40rem 0 0; }
.loader-key{
  width: 126rem; height: 40rem; margin: 0 auto;
  background: url(../images/svg/key.svg) 50% 50% no-repeat;
  background-size: contain;
  transition: transform 0.3s cubic-bezier(0.12,0,0.39,0);
}
.line{ overflow: hidden; }
.line-inner{ transition: transform 0.3s cubic-bezier(0.12,0,0.39,0); }
.loader.animate .line-inner,
.loader.animate .loader-key{ transform: translateY(100%); }

/* ===================================================================
   HEADER
   =================================================================== */
.header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 0; transition: all 0.4s ease-out;
}
.header::before{
  position: absolute; top: 0; left: 0; right: 0; content: ''; height: 180rem;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.header-block{
  display: flex; align-items: center; justify-content: space-between;
  padding: 28rem 0; min-height: 0;
}
.header-logo{ position: static; transform: none; flex-shrink: 0; }
.header-logo img{ height: 72rem; width: auto; }
.header-nav{
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0;
}
.header-nav-list{ display: flex; align-items: center; gap: 40rem; }
.header-nav-list:first-child{ margin-right: 0; }
.header-phone{ margin-left: 40rem; white-space: nowrap; }
.header-nav li{
  font-size: max(14px, 16rem); font-weight: 400; line-height: 150%;
  letter-spacing: 1.6px; text-transform: uppercase;
}
.header-nav a{ position: relative; color: var(--c1); }
.header-nav a::before{
  position: absolute; content: ""; left: 0; bottom: -3rem; display: block;
  width: 100%; height: 1px; background: var(--c1);
  transition: 1.1s var(--ease-out-expo);
  transform: scaleX(0); transform-origin: left;
}
.header-nav a:hover::before{ transform: scaleX(1); }
.header-nav .current-menu-item a{ color: var(--c2); }
.header-nav .current-menu-item a::before{ display: none; }

/* mobile hamburger */
.mob-nav-icon{
  display: none; position: absolute; z-index: 30; top: 24rem; left: 0;
  width: 40px; height: 24px;
}
.mob-nav-block,
.mob-nav-block::before,
.mob-nav-block::after{
  position: absolute; left: 0; width: 32px; height: 2px; background: var(--c1);
  transition: transform .3s, opacity .3s;
}
.mob-nav-block{ top: 11px; }
.mob-nav-block::before{ content: ''; top: -9px; }
.mob-nav-block::after{ content: ''; top: 9px; }
.mob-nav-icon.active .mob-nav-block{ background: transparent; }
.mob-nav-icon.active .mob-nav-block::before{ transform: translateY(9px) rotate(45deg); }
.mob-nav-icon.active .mob-nav-block::after{ transform: translateY(-9px) rotate(-45deg); }

/* ===================================================================
   WRAPPER + BG GRADIENT
   =================================================================== */
body::before{
  position: absolute; left: 0; right: 0; bottom: 0; content: '';
  height: 56%; max-height: 1227px; background: var(--g1); z-index: -1;
}
#wrapper{
  position: relative; padding: 128rem 0 0; min-height: 100vh;
  display: flex; flex-direction: column;
}

/* ===================================================================
   BANNER / HERO SLIDER
   =================================================================== */
.banner{ margin-top: -128rem; height: 100vh; position: relative; overflow: hidden; }
.banner-slider{ position: absolute; inset: 0; }
.banner-slider::before{
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; content: '';
  height: 440rem;
  background: linear-gradient(0deg, rgba(0,0,0,.80) 12.29%, rgba(0,0,0,0) 77.62%);
  pointer-events: none;
}
.banner-slide{
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
}
.banner-slide.active{ opacity: 1; }
.banner-float{ overflow: hidden; height: 100vh; }
.banner-slide img{ width: 100%; height: 110%; object-fit: cover; }

/* slider arrows */
.slick-arrow{
  position: absolute; bottom: 55rem; left: 50%; z-index: 20;
  display: block; width: 14px; height: 21px; font-size: 0; cursor: pointer;
  background: url(../images/svg/arrow.svg) 50% 50% no-repeat; background-size: contain;
  transition: all .3s linear; border: 0;
}
.slick-prev{ margin-left: -41rem; transform: scale(-1,1); }
.slick-next{ margin-left: 27rem; }
.slick-arrow:hover{ opacity: .6; }

.banner-main{ position: absolute; left: 0; right: 0; bottom: 100rem; z-index: 15; }
.banner-block{
  display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transform: translateY(50%);
  transition: transform .8s cubic-bezier(0.46,0.03,0.52,0.96), opacity .5s ease;
}
.banner-block.vis{ opacity: 1; visibility: visible; transform: translateY(0); }
.banner-block{ flex-wrap: wrap; }
.banner-block h1{ text-align: left; width: 100%; }
.banner-block .subheading{ width: 100%; max-width: 560rem; margin: 20rem 0 24rem; text-align: left; }
.banner-block .button{ margin: 0; }

/* ===================================================================
   MAIN WRAP
   =================================================================== */
.main-wrap{ padding: 166rem 0 0; }
.main-wrap .about-team{ margin-bottom: 0; padding-bottom: 100rem; }
.main-wrap .slogan{ margin-bottom: 160rem; }

.subheading{
  text-align: center; font-size: var(--sub); line-height: 150%;
  letter-spacing: 1.8px; text-transform: uppercase; opacity: 0.8;
}

/* img float (parallax) */
.img-float{ overflow: hidden; }
.img-float img{ height: 120%; object-fit: cover; will-change: transform; }

/* reveal text mask */
.reveal{ padding: 1px 0; }
.reveal.holder{ padding: 1px var(--p1); }
.text-wrap{ overflow: hidden; padding: 15px 0; margin: -15px 0; }
.text-inner{
  transition: transform .8s cubic-bezier(0.46,0.03,0.52,0.96);
  transform: translateY(calc(100% + 20px));
}
.reveal.animate .text-inner{ transform: translateY(0); }

/* key element */
.key-wrap{ overflow: hidden; margin: 0 0 49rem; }
.key{
  display: block; width: 82rem; height: 27rem;
  background: url(../images/svg/key.svg) 50% 50% no-repeat; background-size: contain;
}
.reveal .key{
  transition: transform .8s cubic-bezier(0.46,0.03,0.52,0.96);
  transform: translateY(calc(100% + 20px));
}
.reveal.animate .key{ transform: translateY(0); }

/* about-team layout */
.about-team{ display: flex; flex-wrap: wrap; }
.about-team-col{ width: calc(33.333% - 40rem); margin: 0 60rem 60rem 0; }
.about-team-col:last-child{ margin-left: auto; margin-right: 0; }
.about-team-col.img-float{ height: 540rem; min-height: 360px; width: calc(33.333% - 40rem); margin: 0 60rem 60rem 0; }
.about-team-col img{ width: 100%; }
.about-team-text{ width: 100%; margin: 0 0 36rem; opacity: 0.8; }
.about-team-col h2{ position: relative; z-index: 10; margin: 0 0 16rem; text-align: left; }
.about-team-col .subheading{ text-align: left; }
.mob-hidden{ display: none; }
.mob-hide{ display: inline; }

/* slogan */
.slogan{ max-width: 1395rem; margin: 0 auto 165rem; position: relative; }
.slogan-text{
  text-align: center; font-family: 'Nanum Myeongjo', serif;
  font-size: var(--high); font-weight: 400; line-height: 120%; letter-spacing: -0.02em;
}
.slogan-word{ color: rgba(242,241,237,0.12); transition: color .4s ease; }
.slogan-word.lit{ color: var(--c1); }

/* info section */
.info{ position: relative; }
.info-bg{
  position: absolute; top: 0; right: -40rem; width: 834rem; height: 1078rem; min-height: 480px;
}
.info-bg img{ width: 100%; }
.info-top{ position: relative; max-width: 900rem; margin: 0 0 78rem; }
.info-top h2{ margin: 0 0 16rem; text-align: left; }
.info-top .subheading{ text-align: left; }
.info-content{ position: relative; }
.info-content .line-wrap{ left: 215rem; }
.info-block{ position: relative; max-width: 900rem; margin: 0 auto 240rem; }
.info-text{ max-width: 430rem; margin: 0 0 36rem; opacity: 0.8; }
.info-img{ position: relative; max-width: 900rem; height: 627rem; min-height: 320px; margin: 0 auto 274rem; }
.info-img img{ width: 100%; }

.invest-info{ max-width: 1220rem; margin: 0 auto 220rem; }
.invest-info-text{ max-width: 430rem; margin: 0 0 36rem; opacity: 0.8; }
.invest-info-top{ max-width: 900rem; margin: 0 auto 80rem; }
.invest-info-top h2{ margin: 0 0 16rem; text-align: left; }
.invest-info-top .subheading{ text-align: left; }
.invest-info-block{ display: flex; }
.invest-info-img{ width: 50%; height: 550rem; min-height: 240px; }
.invest-info-img img{ width: 100%; object-position: 0 50%; }
.invest-info-content{ width: 50%; padding: 0 0 0 40rem; }

/* vertical dash line */
.line-wrap{ position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; }
.line-dash{
  width: 1px; height: 0%; background: var(--c1);
  transition: height 1.5s cubic-bezier(0.46,0.03,0.52,0.96);
}
.line-dash.animate{ height: 100%; }

/* ===================================================================
   GENERIC INNER PAGE
   =================================================================== */
.main{ padding: 115rem 0 0; }
.top{ max-width: 1140rem; margin: 0 auto 60rem; }
.top h1{ margin: 0 0 24rem; }
.top h1:last-child{ margin: 0; }

.full-img{ max-width: 980rem; height: 460rem; min-height: 280px; margin: 0 auto 110rem; }
.full-img img{ width: 100%; }

.two-col{ display: flex; justify-content: space-between; gap: 40rem; max-width: 1140rem; margin: 0 auto 165rem; }
.two-col-item{ width: calc(50% - 20rem); }
.two-col-item .subheading{ text-align: left; margin: 0 0 24rem; }
.two-col-item h2{ text-align: left; margin: 0 0 24rem; }
.two-col-text{ opacity: 0.8; }

/* services list */
.svc{ max-width: 1140rem; margin: 0 auto; }
.svc-row{
  display: flex; align-items: center; gap: 80rem;
  margin: 0 0 160rem;
}
.svc-row:nth-child(even){ flex-direction: row-reverse; }
.svc-img{ width: 50%; height: 500rem; min-height: 280px; }
.svc-img img{ width: 100%; }
.svc-content{ width: 50%; }
.svc-content h2{ text-align: left; margin: 0 0 16rem; }
.svc-content .subheading{ text-align: left; margin: 0 0 24rem; }
.svc-text{ opacity: 0.8; margin: 0 0 24rem; }
.svc-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 10rem 30rem; margin: 0 0 30rem; }
.svc-list li{
  position: relative; padding-left: 22rem; opacity: 0.8;
  font-size: max(14px, 16rem); letter-spacing: .5px;
}
.svc-list li::before{
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 8rem; height: 8rem; min-width: 5px; min-height: 5px; background: var(--c2);
}

/* values / cards */
.cards{ display: flex; flex-wrap: wrap; gap: 40rem; max-width: 1140rem; margin: 0 auto 165rem; justify-content: center; }
.card{
  width: calc(25% - 30rem); min-width: 220px; padding: 50rem 30rem; text-align: center;
  border: 1px solid rgba(242,241,237,0.15); transition: border-color .4s;
}
.card:hover{ border-color: var(--c2); }
.card .key{ margin: 0 auto 24rem; }
.card h3{ font-family: 'Nanum Myeongjo', serif; font-weight: 400; font-size: max(22px, 32rem); margin: 0 0 14rem; }
.card p{ opacity: 0.8; margin: 0; font-size: max(14px, 16rem); line-height: 160%; }

/* stats */
.stats{ display: flex; justify-content: center; gap: 0; max-width: 1140rem; margin: 0 auto 165rem; border: 1px solid rgba(242,241,237,0.15); }
.stat{ flex: 1; padding: 60rem 30rem; text-align: center; border-right: 1px solid rgba(242,241,237,0.15); }
.stat:last-child{ border-right: 0; }
.stat-num{ font-family: 'Nanum Myeongjo', serif; font-size: max(48px, 110rem); color: var(--c2); line-height: 1; }
.stat-label{ font-size: max(13px, 16rem); letter-spacing: 1.8px; text-transform: uppercase; opacity: 0.7; margin: 16rem 0 0; }

/* area tags */
.area-tags{ display: flex; flex-wrap: wrap; gap: 16rem; justify-content: center; max-width: 900rem; margin: 0 auto; }
.area-tags span{
  padding: 12rem 30rem; border: 1px solid rgba(242,241,237,0.18);
  font-size: max(13px, 16rem); letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.8;
}

/* ===================================================================
   FORM / JOIN / CONTACT
   =================================================================== */
.input-item{ margin: 0 0 max(24px, 80rem); }
.input-item input,
.input-item textarea,
.input-item select{
  display: block; width: 100%; height: max(30px, 40rem);
  padding: 0 0 max(11px, 15rem); margin: 0;
  font-size: max(14px, 16rem); font-weight: 400; color: var(--c1);
  text-transform: uppercase; background: transparent; border-radius: 0;
  border-bottom: 0.5px solid var(--c1);
}
.input-item textarea{ height: max(100px, 160rem); resize: vertical; text-transform: none; }
.input-item select option{ color: #141414; }
::placeholder{ color: rgba(242,241,237,0.3); }
.form-button{ text-align: center; }

.join{ padding: 0 0 160rem; }
.join h2{ margin: 0 0 35rem; }
.join-form{ position: relative; max-width: 900rem; margin: 0 auto; }
.join-form .key-wrap{ margin: 0 0 88rem; }
.join-form .key{ margin: 0 auto; }
.input-box{ display: flex; flex-wrap: wrap; justify-content: space-between; }
.input-box .input-item{ width: calc(50% - 20rem); }
.input-box .input-item.full{ width: 100%; }

.contacts-info{
  max-width: 800rem; margin: 0 auto 48rem; color: var(--c2); text-align: center;
  font-size: var(--sub); line-height: 180%; letter-spacing: 1.8px; text-transform: uppercase; opacity: 0.8;
}

.thanks{ text-align: center; }
.thanks h2{ margin: 0 0 16rem; }
.thanks .subheading{ margin: 0 0 80rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer{ margin: auto 0 0; padding: 0 0 35rem; font-weight: 400; }
.footer-top{ position: relative; display: flex; justify-content: center; padding: 75rem 0 25rem; }
.footer-logo{ position: absolute; left: var(--p1); top: 0; }
.footer-logo img{ height: 150rem; width: auto; }
.footer-nav{ display: flex; justify-content: space-between; width: 100%; max-width: 900rem; }
.footer-nav li{ font-size: max(14px, 16rem); line-height: 150%; letter-spacing: 1.6px; text-transform: uppercase; }
.footer-nav a{ position: relative; color: var(--c1); }
.footer-nav a::before{
  position: absolute; content: ""; left: 0; bottom: -3rem; display: block;
  width: 100%; height: 1px; background: var(--c1); transition: 1.1s var(--ease-out-expo);
  transform: scaleX(0); transform-origin: left;
}
.footer-nav a:hover::before{ transform: scaleX(1); }
.footer-text{ margin: 0 0 24rem; color: var(--c1); font-size: max(12px, 14rem); line-height: 150%; letter-spacing: 0.7px; opacity: 0.5; }
.footer-text p{ margin: 0 0 16rem; }
.footer-text p:last-child{ margin: 0; }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; }
.footer-copy{ color: var(--c1); font-size: max(14px, 16rem); line-height: 150%; opacity: 0.5; }
.footer-bottom .privacy{ display: flex; gap: 24rem; margin: 8rem 0 0; flex-wrap: wrap; }
.footer-bottom .privacy a:hover{ color: var(--c2); }
.footer-bottom .privacy span{ opacity: 0.5; }
.footer-studio{ color: var(--c1); font-size: max(14px, 16rem); line-height: 150%; }
.footer-studio a{ color: var(--c1); }
.footer-studio a:hover{ color: var(--c2); }

.footer .holder{ position: relative; }

/* simplified footer (no nav list) */
.footer-top--simple{
  justify-content: center; padding: 60rem 0 30rem;
}
.footer-logo--simple{
  position: static; width: auto;
}
.footer-logo--simple img{ height: 130rem; width: auto; }

/* ===================================================================
   SCROLL PROGRESS BAR
   =================================================================== */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--c2); z-index: 600; pointer-events: none;
  transition: width .1s linear;
}

/* ===================================================================
   STAGES (3-step value proposition)
   =================================================================== */
.stages{
  display: flex; gap: 40rem; max-width: 1395rem; margin: 0 auto 200rem;
}
.stage{
  flex: 1; padding: 56rem 40rem;
  border: 1px solid rgba(242,241,237,0.12);
  transition: border-color .4s ease, transform .4s ease, background .4s ease;
}
.stage:hover{
  border-color: var(--c2);
  background: rgba(242,241,237,0.03);
  transform: translateY(-8rem);
}
.stage-num{
  display: block;
  font-family: 'Nanum Myeongjo', serif;
  font-size: max(40px, 80rem);
  color: var(--c2); opacity: 0.35; line-height: 1;
  margin: 0 0 24rem;
}
.stage h3{
  font-family: 'Nanum Myeongjo', serif; font-weight: 400;
  font-size: max(22px, 32rem); margin: 0 0 16rem;
}
.stage p{ margin: 0; opacity: 0.8; font-size: max(14px, 16rem); line-height: 170%; }

/* ===================================================================
   GOOGLE REVIEWS TICKER
   =================================================================== */
.reviews{ padding: 0 0 200rem; }
.reviews-head{ text-align: center; margin: 0 0 60rem; }
.reviews-head h2{ margin: 0 0 16rem; }
.reviews-badge{
  display: inline-flex; align-items: center; gap: 12rem;
  margin-top: 20rem; padding: 10rem 24rem;
  border: 1px solid rgba(242,241,237,0.15);
  font-size: max(13px, 15rem); letter-spacing: 1.2px;
}
.reviews-badge .g-stars{ color: var(--c2); letter-spacing: 2px; }
.reviews-badge .g-score{ opacity: 0.7; text-transform: uppercase; }

.reviews-ticker-wrap{
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track{
  display: flex; gap: 28rem; width: max-content;
  padding: 10rem 0;
  animation: ticker-scroll 55s linear infinite;
}
.reviews-track:hover{ animation-play-state: paused; }
@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.review-card{
  width: 420rem; min-width: 300px; flex-shrink: 0;
  background: rgba(242,241,237,0.04);
  border: 1px solid rgba(242,241,237,0.12);
  padding: 32rem;
  transition: border-color .3s ease, background .3s ease;
}
.review-card:hover{ border-color: var(--c2); background: rgba(242,241,237,0.06); }
.review-top{ display: flex; align-items: center; gap: 14rem; margin: 0 0 16rem; }
.review-avatar{
  width: max(36px, 46rem); height: max(36px, 46rem); border-radius: 50%;
  background: var(--c2); color: var(--c4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nanum Myeongjo', serif; font-size: max(16px, 20rem); flex-shrink: 0;
}
.review-meta{ flex: 1; }
.review-name{ font-weight: 400; font-size: max(14px, 16rem); letter-spacing: 0.5px; }
.review-date{ font-size: max(12px, 13rem); opacity: 0.45; }
.review-glogo{ width: max(16px, 20rem); height: max(16px, 20rem); flex-shrink: 0; }
.review-stars{ color: var(--c2); font-size: max(13px, 15rem); letter-spacing: 3px; margin: 0 0 14rem; }
.review-card p{ margin: 0; font-size: max(13px, 15rem); line-height: 170%; opacity: 0.8; font-style: italic; }

/* ===================================================================
   YOUR INFO - 3 map features
   =================================================================== */
.your-info{ padding: 0 0 200rem; }
.your-info-top{ text-align: center; margin: 0 0 70rem; }
.your-info-top h2{ margin: 0 0 16rem; }
.map-cards{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36rem;
  max-width: 1500rem; margin: 0 auto;
}
.map-card{
  display: flex; flex-direction: column;
  border: 1px solid rgba(242,241,237,0.12);
  background: rgba(242,241,237,0.03);
  overflow: hidden;
  transition: border-color .4s ease, transform .4s ease;
}
.map-card:hover{ border-color: var(--c2); transform: translateY(-8rem); }
.map-frame{
  position: relative; height: 320rem; min-height: 220px;
  background: var(--c3);
}
.map-frame iframe{
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(0.8) contrast(1.05);
}
.map-tag{
  position: absolute; top: 16rem; left: 16rem; z-index: 5;
  padding: 6rem 16rem; pointer-events: none;
  background: rgba(20,20,20,0.82);
  border: 1px solid rgba(220,203,179,0.4);
  color: var(--c2);
  font-size: max(11px, 13rem); letter-spacing: 1.6px; text-transform: uppercase;
}
.map-card-body{ padding: 32rem; display: flex; flex-direction: column; flex: 1; }
.map-card-body h3{
  font-family: 'Nanum Myeongjo', serif; font-weight: 400;
  font-size: max(20px, 28rem); margin: 0 0 12rem;
}
.map-card-body > p{ margin: 0 0 24rem; font-size: max(13px, 15rem); line-height: 170%; opacity: 0.75; }
.map-card-body .link-flash{ margin-top: auto; align-self: flex-start; }

/* area stats rows */
.stat-rows{ margin: 0 0 24rem; }
.stat-row{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14rem 0; gap: 16rem;
  border-bottom: 1px solid rgba(242,241,237,0.1);
}
.stat-row:last-child{ border-bottom: 0; }
.stat-row-label{ font-size: max(12px, 14rem); letter-spacing: 0.8px; text-transform: uppercase; opacity: 0.6; }
.stat-row-val{
  font-family: 'Nanum Myeongjo', serif;
  font-size: max(20px, 30rem); color: var(--c2); white-space: nowrap;
}
.stat-note{ font-size: max(11px, 12rem); opacity: 0.35; letter-spacing: 0.5px; }

/* ===================================================================
   INTERACTIVE MAPS (Leaflet)
   =================================================================== */
.lmap{ width: 100%; height: 100%; background: var(--c3); z-index: 1; }
.map-frame .lmap{ position: absolute; inset: 0; }

.map-hint{
  position: absolute; left: 50%; bottom: 14rem; transform: translateX(-50%);
  z-index: 500; padding: 6rem 18rem; pointer-events: none;
  background: rgba(20,20,20,0.85); border: 1px solid rgba(220,203,179,0.35);
  color: var(--c2); font-size: max(11px, 13rem); letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
  opacity: 0; transition: opacity .3s;
}
.map-hint.show{ opacity: 1; }

/* legend chips */
.legend{ display: flex; flex-wrap: wrap; gap: 8rem 14rem; margin: 0 0 24rem; }
.legend-chip{
  display: inline-flex; align-items: center; gap: 7rem;
  font-size: max(11px, 12rem); letter-spacing: 0.5px; opacity: 0.8;
}
.legend-chip i{
  display: block; width: 11rem; height: 11rem; min-width: 9px; min-height: 9px;
  border-radius: 2px;
}

/* dark theme for leaflet popups / controls */
.leaflet-popup-content-wrapper, .leaflet-popup-tip{
  background: #14241f; color: var(--c1);
  border: 1px solid rgba(220,203,179,0.3);
  border-radius: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.leaflet-popup-content{ margin: 14px 18px; font-family: 'Jost', sans-serif; }
.leaflet-container a.leaflet-popup-close-button{ color: var(--c2); }
.rda-pop-cat{
  font-family: 'Nanum Myeongjo', serif; font-size: 17px; color: var(--c2);
  margin: 0 0 2px;
}
.rda-pop-sub{
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  opacity: 0.55; margin: 0 0 8px;
}
.rda-pop-table{ border-collapse: collapse; width: 100%; }
.rda-pop-table td{
  padding: 4px 0; font-size: 13px; border-bottom: 1px solid rgba(242,241,237,0.08);
}
.rda-pop-table td:last-child{ text-align: right; color: var(--c2); font-weight: 500; padding-left: 18px; }
.rda-pop-table tr:last-child td{ border-bottom: 0; }
.rda-pop-note{ font-size: 10px; opacity: 0.4; margin-top: 8px; letter-spacing: 0.5px; }
.leaflet-control-zoom a{
  background: #14241f !important; color: var(--c2) !important;
  border-color: rgba(220,203,179,0.3) !important;
}
.leaflet-control-attribution{
  background: rgba(20,36,31,0.8) !important; color: rgba(242,241,237,0.45) !important;
  font-size: 9px !important;
}
.leaflet-control-attribution a{ color: rgba(220,203,179,0.7) !important; }
.leaflet-tooltip{
  background: #14241f; color: var(--c1); border: 1px solid rgba(220,203,179,0.35);
  border-radius: 0; font-family: 'Jost', sans-serif; letter-spacing: 0.5px;
}

/* fullscreen modal */
.map-modal{
  position: fixed; inset: 0; z-index: 900;
  background: rgba(8,13,11,0.97);
  display: none;
  align-items: center; justify-content: center;
}
/* freeze everything behind an open map modal */
body.map-modal-open #wrapper{ visibility: hidden; }
body.map-modal-open .reviews-track{ animation-play-state: paused; }
body.map-modal-open .cursor-ring{ display: none; }
.map-modal.open{ display: flex; }
.map-modal-inner{
  width: min(1280px, 94vw); height: 88vh;
  background: var(--c4);
  border: 1px solid rgba(220,203,179,0.3);
  display: flex; flex-direction: column;
  padding: 20rem 24rem 16rem;
}
.map-modal-head{
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 0 14rem;
}
.map-modal-title{
  font-family: 'Nanum Myeongjo', serif;
  font-size: max(18px, 28rem); color: var(--c1);
}
.map-modal-close{
  width: 40px; height: 40px; cursor: pointer;
  color: var(--c2); font-size: 26px; line-height: 1;
  border: 1px solid rgba(220,203,179,0.35); background: transparent;
  transition: background .3s, color .3s;
}
.map-modal-close:hover{ background: var(--c2); color: var(--c4); }
.map-modal-map-wrap{ position: relative; flex: 1; min-height: 0; }
#map-modal-map{ position: absolute; inset: 0; background: var(--c3); }
.legend-modal{ margin: 14rem 0 0; }

/* ===================================================================
   PRESTIGE TOUCHES
   =================================================================== */

/* Ken Burns drift on the active hero slide */
.banner-slide img{ transform: scale(1.001); }
.banner-slide.active img{ animation: kenburns 9s ease-out both; }
@keyframes kenburns{
  from{ transform: scale(1.03); }
  to{ transform: scale(1.12); }
}

/* EST. badge above hero heading */
.est-badge{
  display: inline-flex; align-items: center; gap: 20rem;
  margin: 0 0 24rem;
  color: var(--c2);
  font-size: max(12px, 14rem); font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
}
.est-badge::before, .est-badge::after{
  content: ''; display: block; height: 1px; width: 56rem; min-width: 32px;
  background: var(--c2); opacity: 0.6;
}

/* ornamental section divider - diamond + fading lines */
.ornament{
  display: flex; align-items: center; justify-content: center; gap: 24rem;
  max-width: 640rem; margin: 0 auto 165rem;
}
.orn-line{ height: 1px; flex: 1; background: linear-gradient(to right, transparent, rgba(220,203,179,0.55)); }
.orn-line:last-child{ background: linear-gradient(to left, transparent, rgba(220,203,179,0.55)); }
.orn-diamond{
  width: 9rem; height: 9rem; min-width: 7px; min-height: 7px;
  background: var(--c2); transform: rotate(45deg); flex-shrink: 0;
}
.orn-diamond.small{ width: 5rem; height: 5rem; min-width: 4px; min-height: 4px; opacity: 0.6; }

/* button shine sweep */
.button{ overflow: hidden; }
.button::after{
  content: ''; position: absolute; top: 0; left: -85%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.button:hover::after{ left: 135%; }

/* gold cursor ring */
.cursor-ring{
  position: fixed; top: 0; left: 0; z-index: 800;
  width: 34px; height: 34px;
  border: 1px solid rgba(220,203,179,0.55);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: width .3s ease, height .3s ease, border-color .3s ease, opacity .4s ease, background .3s ease;
}
.cursor-ring.visible{ opacity: 1; }
.cursor-ring.on-link{
  width: 56px; height: 56px;
  border-color: var(--c2);
  background: rgba(220,203,179,0.06);
}

/* page fade veil (transitions between pages) */
.page-veil{
  position: fixed; inset: 0; z-index: 700;
  background: var(--c4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.42s ease;
}
.page-veil.active{ opacity: 1; pointer-events: all; }
body:not(.is-loader) #wrapper{ animation: page-in 0.8s ease both; }
@keyframes page-in{ from{ opacity: 0; } to{ opacity: 1; } }

/* refined scrollbar */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--c4); }
::-webkit-scrollbar-thumb{ background: #31423a; }
::-webkit-scrollbar-thumb:hover{ background: var(--c2); }

/* roman numeral stage numbers */
.stage-num{ letter-spacing: 6rem; }

/* smooth anchor scrolling */
html{ scroll-behavior: smooth; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media screen and (max-width: 1023px){
  .header-nav{ display: none; }
  .header-nav.vis{
    display: flex; flex-direction: column; gap: 28rem;
    position: fixed; inset: 0; z-index: 25;
    background: var(--g2); padding: 140rem var(--p1) 60rem;
  }
  .header-nav-list{ flex-direction: column; gap: 24rem; }
  .mob-nav-icon{ display: block; }
  .banner-block{ flex-direction: column; align-items: flex-start; }
  .banner-block .subheading{ width: 100%; margin: 16rem 0 7rem; }
  .about-team{ flex-direction: column; }
  .about-team-col,
  .about-team-col.img-float{ width: 100%; margin: 0 0 40rem; }
  .mob-hidden{ display: block; }
  .info-bg{ display: none; }
  .invest-info-block{ flex-direction: column; }
  .invest-info-img,.invest-info-content{ width: 100%; padding: 0; }
  .invest-info-img{ margin: 0 0 24rem; }
  .svc-row,.svc-row:nth-child(even){ flex-direction: column; gap: 24rem; margin: 0 0 100rem; }
  .svc-img,.svc-content{ width: 100%; }
  .svc-img{ height: 380rem; }
  .two-col{ flex-direction: column; gap: 40rem; }
  .two-col-item{ width: 100%; }
  .cards{ gap: 24rem; }
  .card{ width: calc(50% - 12rem); }
  .footer-logo{ position: static; width: 220rem; margin: 0 auto 30rem; }
  .footer-logo--simple img{ height: 130rem; }
  .footer-top{ flex-direction: column; align-items: center; gap: 24rem; }
  .footer-nav{ flex-direction: column; align-items: center; gap: 18rem; }
  .footer-bottom{ flex-direction: column; gap: 16rem; text-align: center; }
  /* stack the 3-up grids */
  .map-cards{ grid-template-columns: 1fr; }
  .stages{ flex-direction: column; gap: 20rem; }
  .stage{ padding: 40rem 32rem; }
}
@media screen and (max-width: 767px){
  :root{
    --h2: 26px;
    --high: 23px;
    --sub: 12px;
  }
  .subheading{ letter-spacing: 0.6px; }
  .input-box .input-item{ width: 100%; }
  .input-box .input-item.full{ width: 100%; }
  .stats{ flex-direction: column; }
  .stat{ border-right: 0; border-bottom: 1px solid rgba(242,241,237,0.15); }
  .stat:last-child{ border-bottom: 0; }
  .card{ width: 100%; }
  .svc-list{ grid-template-columns: 1fr; }
  .header-logo img{ height: 66rem; }
  /* headings: keep them inside the screen */
  .banner-block h1{ font-size: clamp(28px, 9.5vw, 50px); line-height: 1.08; }
  .banner-block .subheading{ font-size: max(12px, 14rem); letter-spacing: 1px; }
  h1{ letter-spacing: -0.5px; }
  h2{ letter-spacing: -0.3px; }
  .holder{ padding: 0 20px; }
  /* footer description + bottom bar legible */
  .footer-text{ font-size: 12px; line-height: 1.6; }
  .footer-bottom .privacy{ justify-content: center; }
  /* maps: a bit taller so they're usable by thumb */
  .map-frame{ height: 280rem; min-height: 260px; }
  /* fullscreen map modal fits the phone */
  .map-modal-inner{ width: 96vw; height: 92vh; padding: 16rem 14rem 14rem; }
  .map-modal-title{ font-size: 17px; }
  .legend-modal{ max-height: 64px; overflow-y: auto; }
  /* reviews ticker cards sized for phone */
  .review-card{ width: 80vw; min-width: 260px; padding: 26rem; }
  /* tap-friendly buttons / inputs */
  .button{ padding: 14px 30px; }
  .input-item input, .input-item textarea, .input-item select{ font-size: 16px; }
  /* let text blocks use the full phone width (kill desktop max-width caps) */
  .top, .info-top, .info-block, .info-text,
  .invest-info, .invest-info-top, .invest-info-text,
  .svc, .two-col, .slogan, .contacts-info, .join-form,
  .reviews-head, .your-info-top, .area-tags,
  .about-team-text, .map-card-body > p{ max-width: 100%; }
  /* google reviews badge: wrap instead of overflowing */
  .reviews-badge{ flex-wrap: wrap; justify-content: center; gap: 6rem 12rem; font-size: 12px; letter-spacing: 0.6px; padding: 10px 16px; }
  /* approach/info images sit full-width when stacked */
  .info-img{ height: 300rem; }
}
