:root{
  --navy:#071e33;
  --navy-2:#0b2b47;
  --navy-3:#0e3558;
  --gold:#c69a55;
  --gold-dark:#a77c3e;
  --paper:#f7f4ee;
  --paper-2:#fbfaf7;
  --ink:#1d2530;
  --muted:#6f7378;
  --line:#e7e0d6;
  --white:#fff;
  --shadow:0 18px 45px rgba(7,30,51,.12);
  --serif:Georgia,"Times New Roman",serif;
  --sans:"Segoe UI",Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper-2);
  font-family:var(--sans);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{max-width:1160px}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(5,24,42,.96);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}

.nav{
  min-height:96px;
  display:grid;
  grid-template-columns:430px 1fr auto;
  align-items:center;
  gap:20px;
}

.brand img{
  width:410px;
  max-width:100%;
  height:auto;
}

.nav-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  color:#edf2f5;
  font-size:.78rem;
  font-weight:600;
}

.nav-menu a{
  position:relative;
  opacity:.9;
  transition:.2s ease;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-12px;
  height:2px;
  border-radius:999px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:.2s ease;
}

.nav-menu a:hover{opacity:1;color:#fff}
.nav-menu a:hover::after{transform:scaleX(1)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  padding:13px 22px;
  border:0;
  border-radius:3px;
  font-weight:700;
  font-size:.86rem;
  line-height:1;
  transition:.2s ease;
}

.btn img{
  width:17px;
  height:17px;
  object-fit:contain;
}

.btn-gold img{
  filter:brightness(0) saturate(100%);
}

.btn-gold{
  color:#142233;
  background:linear-gradient(180deg,#d4ad70,#bd8f4a);
  box-shadow:none;
}

.btn-gold:hover{
  color:#101820;
  transform:translateY(-2px);
  box-shadow:none;
}

.btn-outline-light{
  color:#fff;
  border:1px solid rgba(255,255,255,.38);
  background:rgba(255,255,255,.08);
  box-shadow:none;
}

.btn-outline-light:hover{
  color:#fff;
  border-color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.14);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(255,255,255,.2);
  border-radius:3px;
  background:transparent;
}

.menu-toggle span{
  display:block;
  width:21px;
  height:2px;
  margin:5px auto;
  background:#fff;
}

.hero{
  position:relative;
  min-height:490px;
  color:#fff;
  overflow:hidden;
  background:var(--navy);
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(6,23,38,.94) 0%,rgba(6,23,38,.76) 36%,rgba(6,23,38,.18) 62%,rgba(6,23,38,.02) 84%),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.08));
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:right center;
  filter:saturate(.92);
}

.hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height:490px;
  padding:72px 12px 66px;
}

.hero-copy{max-width:560px}

.hero h1{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(2.9rem,5vw,4.35rem);
  line-height:1.06;
  letter-spacing:0;
  font-weight:700;
}

.hero p{
  max-width:500px;
  margin:22px 0 0;
  color:#e9edf0;
  font-size:1.02rem;
  line-height:1.7;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:32px;
}

.service-mode{
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:24px;
  color:#e5e7ea;
  font-size:.83rem;
}

.service-mode span{
  width:18px;
  height:18px;
  border:1px solid var(--gold);
  border-radius:50%;
  position:relative;
}

.service-mode span::after{
  content:"";
  position:absolute;
  inset:5px;
  border-radius:50%;
  background:var(--gold);
}

.metrics{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  min-height:118px;
}

.metrics article{
  display:grid;
  grid-template-columns:56px auto;
  grid-template-rows:auto auto;
  align-content:center;
  column-gap:18px;
  padding:26px 42px;
  border-right:1px solid var(--line);
}

.metrics article:last-child{border-right:0}
.metrics img{
  grid-row:1 / span 2;
  align-self:center;
  width:48px;
  height:48px;
}

.metrics strong{
  display:block;
  color:#1b2734;
  font-family:var(--serif);
  font-size:1.7rem;
  line-height:1;
}

.metrics span{
  display:block;
  margin-top:3px;
  color:#565e67;
  font-size:.9rem;
}

.section{padding:72px 0}

.section-kicker,
.section-title span,
.contact-heading span{
  display:block;
  margin-bottom:10px;
  color:var(--gold-dark);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.section-title{
  max-width:720px;
  margin:0 auto 34px;
  text-align:center;
}

.section-title h2,
.about-copy h2,
.contact-heading h2{
  margin:0;
  color:#172231;
  font-family:var(--serif);
  font-size:clamp(2rem,3.1vw,3rem);
  line-height:1.12;
  font-weight:500;
}

.about{
  background:var(--paper-2);
}

.about-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:72px;
  align-items:center;
}

.about-copy p{
  max-width:470px;
  margin:24px 0 0;
  color:#5f666d;
  font-size:.98rem;
  line-height:1.75;
}

.signature{
  width:210px;
  margin-top:30px;
}

.about-photo{
  margin:0;
  background:#eee;
  box-shadow:none;
}

.about-photo img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.practice{
  background:#f4f1eb;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.practice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.practice-card{
  display:grid;
  grid-template-columns:64px 1fr 28px;
  align-items:center;
  min-height:104px;
  padding:22px 28px;
  border:1px solid #ded8cf;
  background:#fff;
  transition:.2s ease;
}

.practice-card:hover{
  transform:translateY(-3px);
  border-color:rgba(198,154,85,.55);
  box-shadow:0 14px 28px rgba(7,30,51,.08);
}

.practice-card img{
  width:46px;
  height:46px;
}

.practice-card strong{
  color:#25303d;
  font-family:var(--serif);
  font-size:1.05rem;
  font-weight:500;
}

.practice-card span{
  color:#8d7040;
  font-size:1.2rem;
}

.differentials{
  color:#fff;
  background:linear-gradient(90deg,#071e33,#0a2a46);
}

.differentials-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.differentials article{
  min-height:198px;
  padding:44px 30px 38px;
  border-right:1px solid rgba(255,255,255,.28);
}

.differentials article:last-child{border-right:0}
.differentials img{
  width:46px;
  height:46px;
  margin-bottom:20px;
}

.differentials h3{
  max-width:180px;
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:1.28rem;
  line-height:1.2;
  font-weight:500;
}

.differentials p{
  margin:0;
  color:#dce5ec;
  font-size:.9rem;
  line-height:1.65;
}

.process{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.process-line{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  text-align:center;
}

.process-line::before{
  content:"";
  position:absolute;
  left:9%;
  right:9%;
  top:32px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

.process-line article{
  position:relative;
  z-index:1;
  padding:0 18px;
}

.process-line b{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  margin:0 auto 22px;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold-dark);
  background:#fff;
  font-family:var(--serif);
  font-size:2rem;
  font-weight:400;
}

.process-line h3{
  margin:0 0 10px;
  color:#1d2937;
  font-family:var(--serif);
  font-size:1.03rem;
  font-weight:500;
}

.process-line p{
  margin:0 auto;
  max-width:210px;
  color:#6d747a;
  font-size:.86rem;
  line-height:1.5;
}

.testimonials{
  background:#f7f4ee;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  max-width:860px;
  margin:0 auto;
}

.testimonial-card{
  min-height:176px;
  padding:32px 36px;
  border:1px solid #ddd6cb;
  background:#fff;
}

.testimonial-card img{
  width:28px;
  height:28px;
  margin-bottom:16px;
}

.testimonial-card p{
  margin:0 0 18px;
  color:#5d646b;
  font-size:.92rem;
  line-height:1.7;
}

.testimonial-card strong{
  color:#1d2937;
  font-family:var(--serif);
  letter-spacing:.08em;
}

.slider-dots{
  display:flex;
  justify-content:center;
  gap:9px;
  margin-top:22px;
}

.slider-dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#cfc6b8;
}

.slider-dots span:first-child{background:var(--gold)}

.cta-band{
  color:#fff;
  background:linear-gradient(90deg,#071e33,#092944);
}

.cta-inner{
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.cta-band h2{
  margin:0;
  font-family:var(--serif);
  font-size:2rem;
  font-weight:500;
}

.cta-band p{
  margin:8px 0 0;
  color:#dce5ec;
}

.contact{
  background:#fff;
}

.contact-heading{
  margin-bottom:26px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .78fr 1fr;
  gap:28px;
  align-items:stretch;
}

.contact-form{
  display:grid;
  gap:12px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d8d1c6;
  border-radius:2px;
  padding:13px 14px;
  color:#172231;
  background:#fff;
  outline:none;
  font-size:.88rem;
}

.contact-form textarea{resize:vertical}

.form-hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.form-status{
  min-height:20px;
  margin:0;
  color:#5e666d;
  font-size:.84rem;
  line-height:1.45;
}

.form-status[data-type="success"]{color:#267147}
.form-status[data-type="error"]{color:#b33a2f}
.form-status[data-type="loading"]{color:var(--gold-dark)}

.contact-form button:disabled{
  cursor:not-allowed;
  opacity:.68;
  transform:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(198,154,85,.14);
}

.contact-form .btn{
  justify-content:space-between;
  width:100%;
}

.contact-info{
  display:grid;
  gap:22px;
  align-content:start;
  padding-top:4px;
}

.contact-info article{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:14px;
}

.contact-info img{
  width:26px;
  height:26px;
}

.contact-info h3{
  margin:0 0 5px;
  color:#1d2937;
  font-size:.92rem;
  font-weight:800;
}

.contact-info p{
  margin:0;
  color:#5e666d;
  font-size:.86rem;
  line-height:1.5;
}

.map-card{
  min-height:230px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#f1ede6;
}

.map-card iframe{
  width:100%;
  height:100%;
  min-height:230px;
  border:0;
  filter:grayscale(.88) contrast(.92) brightness(1.05);
}

.footer{
  position:relative;
  color:#dce5ec;
  background:linear-gradient(90deg,#071e33,#082640);
  padding:44px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .9fr 1.15fr 1fr;
  gap:38px;
}

.footer-brand img{
  width:270px;
  margin-bottom:18px;
}

.footer p,
.footer a,
.footer span{
  color:#dce5ec;
  font-size:.84rem;
  line-height:1.65;
}

.footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footer a{
  display:block;
  margin-bottom:6px;
}

.socials{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  width:32px;
  height:32px;
  padding:0;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  color:#fff;
  line-height:0;
}

.socials svg{
  position:absolute;
  left:50%;
  top:50%;
  width:17px;
  height:17px;
  display:block;
  overflow:visible;
  fill:none;
  stroke:currentColor;
  stroke-width:1.85;
  stroke-linecap:round;
  stroke-linejoin:round;
  transform:translate(-50%,-50%);
}

.socials .social-fill{
  fill:currentColor;
  stroke:none;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.16);
}

.to-top{
  position:absolute;
  right:30px;
  bottom:22px;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  color:#1a2632;
  background:var(--gold);
  border-radius:2px;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease,transform .55s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

.delay-1{transition-delay:.1s}
.delay-2{transition-delay:.18s}

@media(max-width:1040px){
  .nav{
    grid-template-columns:1fr auto;
    min-height:86px;
  }

  .brand img{
    width:320px;
    max-width:calc(100vw - 92px);
  }

  .menu-toggle{display:block}
  .nav-cta{display:none}

  .nav-menu{
    position:absolute;
    left:16px;
    right:16px;
    top:92px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    color:#fff;
    background:#071e33;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--shadow);
  }

  .nav-menu.is-open{display:flex}

  .about-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .practice-grid{grid-template-columns:repeat(2,1fr)}
  .differentials-grid,
  .process-line{grid-template-columns:repeat(2,1fr)}
  .differentials article:nth-child(2){border-right:0}
  .differentials article:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.22)}
  .process-line::before{display:none}
  .map-card{grid-column:1 / -1}
  .footer-bottom{flex-direction:column}
}

@media(max-width:720px){
  .brand img{
    width:270px;
    max-width:calc(100vw - 86px);
  }
  .hero,
  .hero-inner{min-height:auto}
  .hero-inner{padding:64px 12px 52px}
  .hero h1{font-size:2.62rem}
  .metrics-grid,
  .about-grid,
  .practice-grid,
  .differentials-grid,
  .process-line,
  .testimonial-grid,
  .contact-grid,
  .footer-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .metrics article{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:22px 18px;
  }

  .metrics article:last-child{border-bottom:0}
  .section{padding:56px 0}
  .about-grid{gap:32px}
  .about-photo img{height:260px}
  .practice-card{padding:20px}
  .differentials article,
  .differentials article:nth-child(2){
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.22);
  }
  .differentials article:last-child{border-bottom:0}
  .cta-inner{
    min-height:auto;
    padding:32px 12px;
    align-items:flex-start;
    flex-direction:column;
  }
  .cta-band .btn{width:100%}
  .footer-bottom{padding-right:42px}
}
