*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --khaki:#9C9678;
  --khaki-dark:#7A7558;
  --khaki-deep:#5E5A42;
  --khaki-light:#C9A84C;
  --cream:#F6F2DE;
  --cream-dim:rgba(246,242,222,0.7);
  --cream-faint:rgba(246,242,222,0.35);
  --cream-ghost:rgba(246,242,222,0.12);
  --navy:#0E2841;
  --navy-mid:#1a3a58;
  --gold:#B8922A;
  --gold-light:#D4AA45;
  --border:rgba(246,242,222,0.18);
  --border-strong:rgba(246,242,222,0.35);
}
html{scroll-behavior:smooth}
body{
  font-family:'Montserrat',sans-serif;
  background:var(--navy);
  color:var(--cream);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ═══ CURSOR ═══ */
@media(hover:hover) and (pointer:fine){
  *{cursor:none!important}
}
#cursor{
  position:fixed;width:10px;height:10px;
  background:var(--cream);border-radius:50%;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:width 0.2s,height 0.2s,opacity 0.2s,background 0.2s;
  mix-blend-mode:difference;
}
#cursor-ring{
  position:fixed;width:40px;height:40px;
  border:1px solid rgba(246,242,222,0.5);border-radius:50%;
  pointer-events:none;z-index:9998;
  transform:translate(-50%,-50%);
  transition:width 0.4s cubic-bezier(0.16,1,0.3,1),
             height 0.4s cubic-bezier(0.16,1,0.3,1),
             transform 0.08s linear;
}
#cursor.hover{width:50px;height:50px;background:transparent;border:1px solid var(--cream);}

/* ═══ NAV ═══ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:76px;padding:0 5vw;
  display:flex;align-items:center;justify-content:space-between;
  transition:background 0.5s,border-bottom 0.5s;
}
nav.scrolled{
  background:rgba(14,40,65,0.95);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.nav-brand{
  display:flex;align-items:center;gap:14px;text-decoration:none;
}
.nav-logo-img{
  height:68px;width:auto;
  filter:brightness(0) invert(1) sepia(0.2) saturate(0.5);
  opacity:0.9;
}

.nav-links{
  display:flex;gap:2.2rem;list-style:none;align-items:center;
}
.nav-links a{
  font-size:0.62rem;font-weight:500;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--cream-dim);text-decoration:none;
  transition:color 0.2s;padding:4px 0;
  position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-2px;left:0;right:0;
  height:1px;background:var(--gold);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.3s;
}
.nav-links a:hover{color:var(--cream);}
.nav-links a:hover::after{transform:scaleX(1);}
.nav-cta{
  font-size:0.6rem!important;font-weight:600!important;
  letter-spacing:0.2em!important;
  padding:9px 22px!important;
  border:1px solid rgba(246,242,222,0.4)!important;
  border-radius:1px;
  transition:background 0.3s,border-color 0.3s,color 0.3s!important;
}
.nav-cta:hover{
  background:var(--cream)!important;
  color:var(--navy)!important;
  border-color:var(--cream)!important;
}
.nav-cta::after{display:none!important;}

/* ═══ HERO ═══ */
#hero{
  position:relative;height:100vh;min-height:700px;
  display:flex;align-items:flex-end;
  padding:0 8vw 9vh;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center 35%;
  will-change:transform;
}
.hero-grain{
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:0.4;pointer-events:none;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to top,
    rgba(14,40,65,1) 0%,
    rgba(14,40,65,0.75) 35%,
    rgba(14,40,65,0.3) 65%,
    rgba(14,40,65,0.15) 100%
  );
}
.hero-content{position:relative;z-index:2;max-width:900px;}
.hero-line{
  display:block;overflow:hidden;
}
.hero-line span{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(5rem,10vw,10rem);
  font-weight:300;line-height:0.98;
  letter-spacing:-0.01em;
  color:var(--cream);
  transform:translateY(110%);
  animation:slideUp 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-line:nth-child(2) span{animation-delay:0.14s;}
.hero-meta{
  display:flex;align-items:center;gap:3rem;
  margin-top:2.5rem;
  opacity:0;animation:fadeIn 1s 0.7s forwards;
}
.hero-tagline{
  font-size:0.65rem;font-weight:400;
  letter-spacing:0.28em;text-transform:uppercase;
  color:var(--cream-dim);
}
.hero-divider{width:1px;height:36px;background:var(--border-strong)}
.hero-btn{
  display:inline-flex;align-items:center;gap:10px;
  font-size:0.62rem;font-weight:600;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--cream);text-decoration:none;
  padding:13px 28px;
  border:1px solid var(--cream-dim);
  border-radius:1px;
  transition:background 0.3s,border-color 0.3s,color 0.3s;
  position:relative;overflow:hidden;
}
.hero-btn::before{
  content:'';position:absolute;inset:0;
  background:var(--cream);
  transform:translateX(-101%);
  transition:transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hero-btn:hover{color:var(--navy);border-color:var(--cream);}
.hero-btn:hover::before{transform:translateX(0);}
.hero-btn span{position:relative;z-index:1;}
.hero-btn-arrow{position:relative;z-index:1;transition:transform 0.3s;}
.hero-btn:hover .hero-btn-arrow{transform:translateX(4px);}

.hero-scroll-indicator{
  position:absolute;right:5vw;bottom:5vh;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  opacity:0;animation:fadeIn 1s 1.2s forwards;
}
.hero-scroll-label{
  font-size:0.52rem;letter-spacing:0.3em;
  text-transform:uppercase;color:var(--cream-faint);
  writing-mode:vertical-rl;
}
.hero-scroll-line{
  width:1px;height:60px;
  background:linear-gradient(to bottom,var(--cream-faint),transparent);
  animation:scrollLine 2s 1.5s infinite;
}
@keyframes scrollLine{
  0%{height:0;opacity:0}
  30%{opacity:1}
  100%{height:60px;opacity:0}
}

.hero-scroll-left{
  position:absolute;left:5vw;bottom:5vh;
  opacity:0;animation:fadeIn 1s 1.2s forwards;
}
.hero-count{
  font-family:'Cormorant Garamond',serif;
  font-size:0.75rem;font-weight:400;
  color:var(--cream-faint);letter-spacing:0.15em;
}

/* ═══ TICKER ═══ */
.ticker{
  height:44px;overflow:hidden;
  background:var(--khaki);
  display:flex;align-items:center;
}
.ticker-track{
  display:flex;gap:0;
  animation:ticker 35s linear infinite;
  width:max-content;
}
.ticker-item{
  display:flex;align-items:center;
  font-size:0.58rem;font-weight:600;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--navy);white-space:nowrap;
  padding:0 2.5rem;
}
.ticker-dot{
  width:3px;height:3px;border-radius:50%;
  background:var(--navy);opacity:0.5;
  flex-shrink:0;
}
@keyframes ticker{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ═══ STATS ═══ */
.stats-section{
  background:var(--navy);
  padding:6rem 8vw;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background-color:var(--border);
}
.stat-cell{
  background:var(--navy);
  padding:3rem 2rem;text-align:center;
}
.stat-number{
  font-family:'Cormorant Garamond',serif;
  font-size:4.5rem;font-weight:300;
  color:var(--cream);line-height:1;
  display:block;
}
.stat-plus{color:var(--khaki-light)}
.stat-label{
  font-size:0.6rem;font-weight:500;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--cream-faint);margin-top:0.8rem;display:block;
}
.stat-sub{
  font-size:0.58rem;letter-spacing:0.08em;
  color:rgba(246,242,222,0.2);margin-top:0.3rem;display:block;
}

/* ═══ COMMON SECTION ═══ */
section{padding:8rem 8vw}
.eyebrow{
  font-size:0.6rem;font-weight:600;
  letter-spacing:0.3em;text-transform:uppercase;
  color:var(--khaki-light);display:block;margin-bottom:1.4rem;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.6rem,4.5vw,4rem);
  font-weight:300;line-height:1.08;color:var(--cream);
}
.section-title em{font-style:italic;color:var(--khaki-light)}
.gold-rule{
  width:40px;height:1px;background:var(--gold);
  margin:2rem 0;
}
.body-text{
  font-size:0.88rem;font-weight:300;
  color:var(--cream-dim);line-height:1.9;
}

/* ═══ ABOUT ═══ */
#about{
  display:grid;grid-template-columns:1fr 1fr;
  gap:7rem;align-items:center;
  background:var(--navy);
}
.about-visual{position:relative}
.about-img{
  width:100%;aspect-ratio:3/4;
  object-fit:cover;display:block;
}
.about-text .body-text{margin-bottom:1.2rem;}
.about-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;font-weight:300;font-style:italic;
  color:var(--khaki-light);line-height:1.35;
  border-left:1px solid var(--khaki);
  padding-left:1.5rem;margin:2.5rem 0;
}

/* ═══ SERVICES ═══ */
#services{background:#080f1a}
.services-top{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:end;margin-bottom:5rem;
}
.services-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--border);
}
.service-card{
  background:#080f1a;
  padding:2.5rem 1.8rem;
  position:relative;overflow:hidden;
  transition:background 0.4s;
  cursor:pointer;
}
.service-card::after{
  content:'';position:absolute;
  bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--khaki),var(--gold-light));
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover{background:rgba(156,150,120,0.08);}
.service-card:hover::after{transform:scaleX(1);}
.service-num{
  font-family:'Cormorant Garamond',serif;
  font-size:0.85rem;font-weight:400;
  color:var(--khaki);letter-spacing:0.1em;
  display:block;margin-bottom:1.4rem;
}
.service-icon-img{
  width:2.2rem;height:2.2rem;
  object-fit:contain;
  display:block;margin-bottom:1.4rem;
  opacity:0.92;
  transition:transform 0.4s cubic-bezier(0.16,1,0.3,1),opacity 0.3s;
}
.service-card:hover .service-icon-img{
  transform:translateY(-3px) scale(1.06);
  opacity:1;
}
.service-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:400;
  color:var(--cream);margin-bottom:1rem;line-height:1.25;
}
.service-desc{
  font-size:0.75rem;font-weight:300;
  color:var(--cream-faint);line-height:1.8;
}

/* ═══ TEAM ═══ */
#team{background:var(--navy);padding-bottom:0}
.team-intro{
  display:block;
  margin-bottom:4rem;
}
.team-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2px;background:var(--border);
  margin-top:2px;
}
.team-card{
  position:relative;overflow:hidden;
  aspect-ratio:3/4;background:#0a1829;
  cursor:pointer;
}
.team-card img{
  width:100%;height:100%;
  object-fit:cover;object-position:center top;
  display:block;
  transition:transform 0.8s cubic-bezier(0.16,1,0.3,1),filter 0.5s;
  filter:grayscale(30%) brightness(0.9);
  transform-origin:center 30%;
}
.team-card:hover img{
  transform:scale(1.08);
  filter:grayscale(0%) brightness(1);
}
.team-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to top,
    rgba(14,40,65,0.98) 0%,
    rgba(14,40,65,0.6) 45%,
    transparent 75%
  );
  transition:opacity 0.4s;
}
.team-info{
  position:absolute;bottom:0;left:0;right:0;
  padding:2rem 1.6rem;
  transform:translateY(0);
}
.team-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem;font-weight:400;color:var(--cream);
  line-height:1.15;
}
.team-role{
  font-size:0.58rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--khaki-light);margin-top:0.4rem;
}
.team-bio{
  font-size:0.75rem;font-weight:300;
  color:var(--cream-dim);line-height:1.7;
  margin-top:0.9rem;
  max-height:0;overflow:hidden;
  transition:max-height 0.6s cubic-bezier(0.16,1,0.3,1),
             opacity 0.5s;opacity:0;
}
.team-card:hover .team-bio{max-height:160px;opacity:1;}
.team-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:0.9rem;font-style:italic;
  color:var(--khaki-light);margin-top:0.8rem;
  opacity:0;transition:opacity 0.4s 0.15s;
}
.team-card:hover .team-quote{opacity:1;}

.team-grid-featured{grid-template-columns:repeat(2,1fr);max-width:66.6%;margin:0 auto 2.4rem;}

/* 3D TILT */
.tilt{transform-style:preserve-3d;will-change:transform;}

/* ═══ WHY ═══ */
#why{
  background:#080f1a;
  display:grid;grid-template-columns:1fr 1fr;gap:7rem;align-items:start;
}
.why-visual img{
  width:100%;aspect-ratio:2/3;
  object-fit:cover;display:block;
}
.why-visual{position:relative}
.why-tag{
  position:absolute;top:2rem;left:-1rem;
  background:var(--khaki);
  padding:0.7rem 1.2rem;
  font-size:0.58rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--navy);
}
.why-items{margin-top:2.5rem}
.why-item{
  display:grid;grid-template-columns:2rem 1fr;
  gap:1.5rem;padding:2rem 0;
  border-bottom:1px solid var(--border);
}
.why-item:first-child{padding-top:0}
.why-item:last-child{border-bottom:none}
.why-roman{
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;font-weight:300;
  color:var(--khaki);padding-top:0.1rem;
}
.why-item-h{
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem;font-weight:400;
  color:var(--cream);margin-bottom:0.5rem;
}
.why-item-p{
  font-size:0.78rem;font-weight:300;
  color:var(--cream-dim);line-height:1.8;
}
.brands-section{margin-top:3.5rem;padding-top:2.5rem;border-top:1px solid var(--border)}
.brands-eyebrow{
  font-size:0.55rem;font-weight:500;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--cream-faint);margin-bottom:1.2rem;display:block;
}
.brands-list{
  display:flex;flex-wrap:wrap;gap:0.8rem 1.8rem;
}
.brand{
  font-size:0.62rem;font-weight:500;
  letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(246,242,222,0.3);
  transition:color 0.2s;
}
.brand:hover{color:var(--khaki-light)}

/* ═══ PROCESS ═══ */
#process{
  background:var(--navy);
  padding-top:7rem;padding-bottom:7rem;
}
.process-header{text-align:center;max-width:560px;margin:0 auto 5.5rem;}
.process-header .gold-rule{margin:2rem auto;}
.process-steps{
  display:grid;grid-template-columns:repeat(3,1fr);
  position:relative;
}
.process-steps::before{
  content:'';position:absolute;
  top:2.4rem;left:calc(16.6% + 1.5rem);
  right:calc(16.6% + 1.5rem);
  height:1px;background:var(--border);
}
.process-step{padding:0 3rem;text-align:center;}
.process-step:first-child{padding-left:0;text-align:center}
.process-step:last-child{padding-right:0;text-align:center}
.process-num-wrap{
  width:48px;height:48px;border-radius:50%;
  border:1px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 2rem;
  position:relative;z-index:1;
  background:var(--navy);
  transition:border-color 0.3s,background 0.3s;
}
.process-step:first-child .process-num-wrap{margin-left:auto}
.process-step:last-child .process-num-wrap{margin-right:auto}
.process-step:hover .process-num-wrap{
  background:var(--khaki);border-color:var(--khaki);
}
.process-num{
  font-family:'Cormorant Garamond',serif;
  font-size:1rem;font-weight:400;color:var(--cream);
}
.process-step:hover .process-num{color:var(--navy)}
.process-h{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;font-weight:400;
  color:var(--cream);margin-bottom:1.5rem;
}
.process-list{list-style:none;}
.process-list li{
  font-size:0.75rem;font-weight:300;
  color:var(--cream-dim);line-height:1.8;
  padding:0.35rem 0.5rem;
  text-align:center;
}

/* ═══ FEES ═══ */
#fees{background:#080f1a;}
.fees-header{text-align:center;max-width:560px;margin:0 auto 5rem;}
.fees-header .gold-rule{margin:2rem auto;}
.fees-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--border);
}
.fee-card{
  background:#0d1f35;
  padding:3.5rem 2.5rem;
  position:relative;
  cursor:pointer;
  transition:background 0.4s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
  border-top:2px solid transparent;
}
.fee-card:hover{
  background:#0f2540;
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
  border-top:2px solid var(--gold);
}
.fee-label{
  font-size:0.58rem;font-weight:600;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--khaki-light);margin-bottom:0.6rem;display:block;
}
.fee-model{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;color:var(--cream);
  line-height:1.15;margin-bottom:0.4rem;
}
.fee-rule{width:28px;height:1px;background:var(--khaki);margin:1.5rem 0;}
.fee-body{
  font-size:0.78rem;font-weight:300;
  color:var(--cream-dim);line-height:1.8;margin-bottom:1.8rem;
}
.fee-when-label{
  font-size:0.55rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:rgba(246,242,222,0.28);margin-bottom:0.6rem;display:block;
}
.fee-when{
  font-size:0.75rem;font-weight:300;
  color:var(--cream-faint);line-height:1.75;
}

/* ═══ CONTACT ═══ */
#contact{
  position:relative;
  padding:0;
  min-height:100vh;
  display:flex;align-items:stretch;
  overflow:hidden;
}
.contact-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center 35%;
  will-change:transform;
}
.contact-bg-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to right,
    rgba(8,15,26,0.92) 0%,
    rgba(8,15,26,0.88) 40%,
    rgba(8,15,26,0.7) 70%,
    rgba(8,15,26,0.82) 100%
  );
}
.contact-inner{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  width:100%;
  min-height:100vh;
  align-items:center;
}
.contact-left{
  padding:8rem 5rem 8rem 8vw;
  display:flex;flex-direction:column;justify-content:center;
}
.contact-left .section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5vw,4.5rem);
  font-weight:300;line-height:1.05;
  color:var(--cream);margin-bottom:1.6rem;
}
.contact-left .section-title em{
  font-style:italic;color:var(--gold-light);
}
.contact-left-sub{
  font-size:0.88rem;font-weight:300;
  color:rgba(246,242,222,0.6);
  line-height:1.85;max-width:400px;
  margin-bottom:3rem;
}
.contact-details{
  display:flex;flex-direction:column;gap:0;
}
.contact-detail-item{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.1rem 0;
  border-bottom:1px solid rgba(246,242,222,0.08);
  text-decoration:none;
  transition:border-color 0.2s;
}
.contact-detail-item:first-child{border-top:1px solid rgba(246,242,222,0.08);}
.contact-detail-item:hover{border-bottom-color:rgba(201,168,76,0.3);}
.contact-detail-icon{
  width:38px;height:38px;
  border:1px solid rgba(246,242,222,0.15);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  font-size:0.85rem;
  color:var(--gold);
  transition:border-color 0.2s,background 0.2s;
}
.contact-detail-item:hover .contact-detail-icon{
  border-color:var(--gold);
  background:rgba(201,168,76,0.1);
}
.contact-detail-label{
  font-size:0.55rem;font-weight:600;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);display:block;margin-bottom:0.2rem;
}
.contact-detail-value{
  font-size:0.88rem;font-weight:300;
  color:rgba(246,242,222,0.8);
}
/* ── RIGHT PANEL: FORM */
.contact-right{
  padding:8rem 8vw 8rem 5rem;
  display:flex;flex-direction:column;justify-content:center;
  border-left:1px solid rgba(246,242,222,0.06);
}
.contact-form-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:300;
  color:var(--cream);margin-bottom:0.5rem;
}
.contact-form-sub{
  font-size:0.75rem;font-weight:300;
  color:rgba(246,242,222,0.45);
  margin-bottom:2.2rem;
  letter-spacing:0.03em;
}
.contact-form{display:flex;flex-direction:column;gap:0;}
.form-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;margin-bottom:1px;
}
.form-row.single{grid-template-columns:1fr;}
.form-group{position:relative;}
.form-label{
  display:block;
  font-size:0.55rem;font-weight:600;
  letter-spacing:0.22em;text-transform:uppercase;
  color:rgba(246,242,222,0.4);
  position:absolute;top:0.9rem;left:1.1rem;
  transition:top 0.2s,font-size 0.2s,color 0.2s;
  pointer-events:none;z-index:1;
}
.form-input,.form-select,.form-textarea{
  width:100%;
  background:rgba(246,242,222,0.04);
  border:none;border-bottom:1px solid rgba(246,242,222,0.1);
  color:var(--cream);
  font-family:'Montserrat',sans-serif;
  font-size:0.85rem;font-weight:300;
  padding:1.8rem 1.1rem 0.7rem;
  outline:none;
  transition:background 0.2s,border-color 0.2s;
  -webkit-appearance:none;appearance:none;
}
.form-input::placeholder,.form-textarea::placeholder{
  color:rgba(246,242,222,0.2);
  font-size:0.82rem;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  background:rgba(246,242,222,0.07);
  border-bottom-color:var(--gold);
}
.form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1.1rem center;
  padding-right:2.5rem;
  background-color:rgba(246,242,222,0.04);
  cursor:pointer;
}
.form-select option{background:#0d1f35;color:var(--cream);}
.form-textarea{
  resize:none;min-height:110px;
  line-height:1.6;
}
.form-submit{
  margin-top:1px;
  background:var(--gold);
  border:none;
  color:var(--navy);
  font-family:'Montserrat',sans-serif;
  font-size:0.65rem;font-weight:700;
  letter-spacing:0.25em;text-transform:uppercase;
  padding:1.15rem 2rem;
  cursor:pointer;
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:background 0.3s,transform 0.2s;
}
.form-submit:hover{
  background:var(--gold-light);
  transform:translateY(-1px);
}
.form-submit:disabled{opacity:0.6;cursor:not-allowed;}
.form-disclaimer{
  font-size:0.62rem;font-weight:300;
  color:rgba(246,242,222,0.22);
  text-align:center;margin-top:1rem;
  letter-spacing:0.04em;
}
@media(max-width:960px){
  .contact-inner{grid-template-columns:1fr;}
  .contact-left{padding:6rem 8vw 4rem;}
  .contact-right{padding:4rem 8vw 6rem;border-left:none;border-top:1px solid rgba(246,242,222,0.06);}
  .form-row{grid-template-columns:1fr;}
}

/* ═══ FOOTER ═══ */
footer{
  background:var(--navy);
  border-top:1px solid var(--border);
  padding:1.8rem 8vw;
  display:flex;align-items:center;
  justify-content:space-between;
}
.footer-text{
  font-size:0.58rem;font-weight:400;
  letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(246,242,222,0.22);
}
.footer-brand{
  font-size:0.6rem;font-weight:600;
  letter-spacing:0.28em;text-transform:uppercase;
  color:rgba(246,242,222,0.18);
}

/* ═══ REVEALS ═══ */
.reveal{
  opacity:0;transform:translateY(32px);
  transition:opacity 0.85s cubic-bezier(0.16,1,0.3,1),
             transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.up{opacity:1;transform:translateY(0);}
.reveal-d1{transition-delay:0.1s}
.reveal-d2{transition-delay:0.2s}
.reveal-d3{transition-delay:0.3s}
.reveal-d4{transition-delay:0.4s}
.reveal-d5{transition-delay:0.5s}
.reveal-d6{transition-delay:0.6s}

/* ═══ ANIMATIONS ═══ */
@keyframes slideUp{
  from{transform:translateY(110%)}
  to{transform:translateY(0)}
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:960px){
  #about,#why,.team-intro,.services-top{grid-template-columns:1fr;gap:3rem;}
  .services-grid,.team-grid,.process-steps{grid-template-columns:repeat(2,1fr);}
  .team-grid-featured{max-width:100%;}
  .fees-grid{grid-template-columns:1fr;}
  .stats-section{grid-template-columns:repeat(2,1fr);padding:4rem 8vw;}
  .process-steps::before{display:none}
  .process-step,.process-step:first-child,.process-step:last-child{padding:2rem;text-align:left}
  .process-num-wrap{margin-left:0}
  nav .nav-links{display:none}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;transition-duration:0.01ms!important;}
}

/* ═══ MODAL OVERLAY ═══ */
.modal-overlay{
  display:none;position:fixed;inset:0;z-index:500;
  background:rgba(8,15,26,0.92);
  backdrop-filter:blur(12px);
  align-items:center;justify-content:center;
  padding:2rem;
}
.modal-overlay.open{display:flex;}
.modal-box{
  background:var(--navy);
  border:1px solid var(--border-strong);
  max-width:680px;width:100%;
  max-height:90vh;overflow-y:auto;
  position:relative;
  animation:modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
.modal-team-box{
  background:var(--navy);
  border:1px solid var(--border-strong);
  max-width:800px;width:100%;
  max-height:90vh;overflow:hidden;
  position:relative;
  display:grid;grid-template-columns:1fr 1fr;
  animation:modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modalIn{
  from{opacity:0;transform:translateY(24px) scale(0.97)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
.modal-close{
  position:absolute;top:1.2rem;right:1.2rem;
  width:36px;height:36px;
  background:rgba(246,242,222,0.08);
  border:1px solid var(--border);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  font-size:1rem;color:var(--cream-dim);
  transition:background 0.2s;z-index:10;
}
.modal-close:hover{background:rgba(246,242,222,0.15);}
.modal-img{
  width:100%;height:100%;min-height:420px;
  object-fit:cover;object-position:center top;
  display:block;
}
.modal-content{padding:2.5rem;}
.modal-eyebrow{
  font-size:0.58rem;font-weight:600;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--khaki-light);display:block;margin-bottom:0.6rem;
}
.modal-name{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;color:var(--cream);
  margin-bottom:0.3rem;line-height:1.15;
}
.modal-role{
  font-size:0.65rem;font-weight:500;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--khaki);margin-bottom:1.5rem;display:block;
}
.modal-rule{width:32px;height:1px;background:var(--gold);margin-bottom:1.5rem;}
.modal-bio{
  font-size:0.82rem;font-weight:300;
  color:var(--cream-dim);line-height:1.85;
  margin-bottom:1.2rem;
}
.modal-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-style:italic;
  color:var(--khaki-light);
  border-left:1px solid var(--khaki);
  padding-left:1rem;margin-top:1.5rem;
  line-height:1.5;
}
/* Service modal */
.svc-modal-header{
  padding:2.5rem 2.5rem 0;
  border-bottom:1px solid var(--border);
  padding-bottom:2rem;margin-bottom:2rem;
}
.svc-modal-num{
  font-family:'Cormorant Garamond',serif;
  font-size:0.85rem;color:var(--khaki);
  letter-spacing:0.1em;display:block;margin-bottom:1rem;
}
.svc-modal-title{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;color:var(--cream);
  line-height:1.1;margin-bottom:0;
}
.svc-modal-body{padding:0 2.5rem 2.5rem;}
.svc-modal-desc{
  font-size:0.88rem;font-weight:300;
  color:var(--cream-dim);line-height:1.9;
  margin-bottom:1.5rem;
}
.svc-modal-list{list-style:none;margin-top:1rem;}
.svc-modal-list li{
  font-size:0.82rem;font-weight:300;
  color:var(--cream-dim);line-height:1.8;
  padding:0.5rem 0 0.5rem 1.2rem;
  position:relative;
  border-bottom:1px solid var(--border);
}
.svc-modal-list li::before{
  content:'—';position:absolute;left:0;
  color:var(--khaki);font-size:0.65rem;top:0.6rem;
}
.svc-modal-list li:last-child{border-bottom:none;}
/* Click hint on cards */
.click-hint{
  position:absolute;top:1rem;right:1rem;
  font-size:0.55rem;font-weight:600;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--khaki-light);
  background:rgba(13,27,42,0.7);
  padding:4px 8px;
  opacity:0;transition:opacity 0.3s;
}
.service-card:hover .click-hint,
.team-card:hover .click-hint{opacity:1;}

.fee-get-started{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:2rem;
  font-size:0.6rem;font-weight:600;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--cream-dim);
  text-decoration:none;
  padding:10px 20px;
  border:1px solid rgba(246,242,222,0.2);
  border-radius:1px;
  transition:border-color 0.3s, color 0.3s, background 0.3s;
}
.fee-card:hover .fee-get-started{
  border-color:var(--gold);
  color:var(--cream);
  background:rgba(185,146,42,0.12);
}

.form-status{
  margin-top:1rem;font-size:0.75rem;font-weight:300;
  letter-spacing:0.03em;text-align:center;
}
.form-status.success{color:var(--khaki-light)}
.form-status.error{color:#d4756a}
