@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600&display=swap');

:root{
  --navy: #0F1E3A;
  --navy-2: #16294F;
  --navy-3: #1E345E;
  --ivory: #FAF7F0;
  --white: #FFFFFF;
  --gold: #B8935A;
  --gold-light: #D9BD86;
  --ink: #23282F;
  --slate: #5B6472;
  --line: #E4DFD3;
  --line-dark: rgba(217,189,134,0.18);
  --maxw: 1120px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--ivory);
  color:var(--ink);
  font-family:'Inter', -apple-system, sans-serif;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:400;
  letter-spacing:-0.01em;
  color:var(--navy);
}

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 40px; }

/* ---------- Header ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(250,247,240,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
header.site .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:84px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:38px; width:auto; }
.brand-word{ font-family:'Fraunces', serif; font-size:19px; letter-spacing:0.02em; color:var(--navy); }
nav.primary{ display:flex; align-items:center; gap:36px; }
nav.primary a{
  font-size:13px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--slate); font-weight:500;
  position:relative; padding:4px 0; margin-left:18px;
  transition:color .25s ease;
}
nav.primary a:first-child{ margin-left:0; }
nav.primary a:hover, nav.primary a.active{ color:var(--navy); }
nav.primary a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px; background:var(--gold);
}
.nav-cta{
  border:1px solid var(--navy); color:var(--navy) !important;
  padding:9px 20px; border-radius:2px; font-size:12px !important;
}
.nav-cta:hover{ background:var(--navy); color:var(--ivory) !important; }

/* mobile nav */
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; }
.nav-toggle span{ display:block; width:22px; height:1px; background:var(--navy); margin:5px 0; }

/* ---------- Hero ---------- */
.hero{
  background:var(--navy);
  color:var(--ivory);
  position:relative;
  overflow:hidden;
  padding:120px 0 100px 0;
}
.hero .chevrons{
  position:absolute; right:-80px; top:-60px; width:640px; height:640px;
  opacity:0.06; pointer-events:none;
}
.hero .wrap{ position:relative; z-index:2; }
.eyebrow{
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold-light); font-weight:500; margin-bottom:22px;
  display:flex; align-items:center; gap:12px;
}
.eyebrow::before{ content:""; width:28px; height:1px; background:var(--gold); display:inline-block; }
.hero h1{
  font-size:clamp(38px,5.4vw,64px);
  line-height:1.08;
  color:var(--ivory);
  max-width:820px;
  font-weight:300;
  animation:rise .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero .lede{
  margin-top:28px; max-width:560px; font-size:17px; color:#C9D2E4; font-style:italic; font-family:'Fraunces',serif; font-weight:400;
  animation:rise .9s .12s cubic-bezier(.2,.8,.2,1) both;
}
.hero .cta-row{ margin-top:40px; display:flex; gap:18px; animation:rise .9s .22s cubic-bezier(.2,.8,.2,1) both; }

@keyframes rise{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero h1, .hero .lede, .hero .cta-row{ animation:none; }
}

.btn{
  display:inline-block; padding:14px 30px; font-size:12.5px; letter-spacing:0.1em; text-transform:uppercase;
  border-radius:2px; transition:all .25s ease;
}
.btn-gold{ background:var(--gold); color:var(--navy); font-weight:600; }
.btn-gold:hover{ background:var(--gold-light); }
.btn-outline{ border:1px solid rgba(250,247,240,0.4); color:var(--ivory); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-light); }
.btn-outline-dark{ border:1px solid var(--navy); color:var(--navy); }
.btn-outline-dark:hover{ background:var(--navy); color:var(--ivory); }

/* ---------- Sections ---------- */
section{ padding:100px 0; }
section.tight{ padding:70px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head .eyebrow{ color:var(--gold); }
.section-head .eyebrow::before{ background:var(--gold); }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); font-weight:300; }
.section-head p{ margin-top:16px; color:var(--slate); font-size:16px; max-width:520px; }

.rule{ height:1px; background:var(--line); width:100%; margin:0; }

/* ---------- Cards / grid ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; }
.grid-2{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center; }

.card{
  background:var(--white); border:1px solid var(--line); padding:38px 32px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -24px rgba(15,30,58,0.25); }
.card .num{ font-family:'Fraunces',serif; font-size:13px; color:var(--gold); letter-spacing:.08em; margin-bottom:16px; }
.card h3{ font-size:22px; font-weight:400; margin-bottom:12px; }
.card p{ color:var(--slate); font-size:15px; }
.card a.more{ display:inline-block; margin-top:18px; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--navy); border-bottom:1px solid var(--gold); padding-bottom:3px; }

/* ---------- Stat strip ---------- */
.strip{ background:var(--navy-2); color:var(--ivory); padding:56px 0; }
.strip .grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.strip .stat b{ display:block; font-family:'Fraunces',serif; font-size:32px; font-weight:400; color:var(--gold-light); }
.strip .stat span{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#AEBEDC; margin-top:8px; display:block; }

/* ---------- Pull quote / testimonial ---------- */
.quote{
  border-left:2px solid var(--gold); padding-left:28px; margin:0;
}
.quote p{ font-family:'Fraunces',serif; font-style:italic; font-size:19px; color:var(--navy); line-height:1.6; }
.quote cite{ display:block; margin-top:14px; font-style:normal; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--slate); }

.testimonial-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.t-card{ background:var(--white); border:1px solid var(--line); padding:34px 30px; }
.t-card p{ font-family:'Fraunces',serif; font-style:italic; color:var(--navy); font-size:16.5px; line-height:1.65; }
.t-card cite{ display:block; margin-top:18px; font-style:normal; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); }

/* ---------- Locations chips ---------- */
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chips span{
  font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
  border:1px solid var(--line); padding:9px 16px; color:var(--slate);
}

/* ---------- About page ---------- */
.about-photo{ border:1px solid var(--line); padding:10px; background:var(--white); }
.about-photo img{ filter:grayscale(1) contrast(1.03); }
.approach-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:10px;}
.approach-grid .col h4{ font-size:16px; font-weight:500; color:var(--navy); margin-bottom:8px; font-family:'Fraunces',serif; font-weight:400;}
.approach-grid .col p{ font-size:14px; color:var(--slate); }

/* ---------- Footer ---------- */
footer.site{ background:var(--navy); color:#AEBEDC; padding:70px 0 34px 0; }
footer.site .f-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px; margin-bottom:56px; }
footer.site h5{ color:var(--ivory); font-family:'Fraunces',serif; font-weight:400; font-size:16px; margin-bottom:18px; }
footer.site p{ font-size:14px; line-height:1.8; color:#9FB0CC; }
footer.site a{ font-size:13.5px; color:#C9D2E4; display:block; margin-bottom:10px; }
footer.site a:hover{ color:var(--gold-light); }
footer.site .f-bottom{
  border-top:1px solid var(--line-dark); padding-top:26px;
  display:flex; justify-content:space-between; font-size:11.5px; letter-spacing:.04em; color:#7C8CAC;
}

/* ---------- Utilities ---------- */
.center{ text-align:center; }
.mt-lg{ margin-top:64px; }
.bg-white{ background:var(--white); }
.bg-navy{ background:var(--navy); color:var(--ivory); }
.bg-navy h2, .bg-navy h3{ color:var(--ivory); }

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; gap:36px; }
  .strip .grid-4{ grid-template-columns:repeat(2,1fr); gap:34px; }
  footer.site .f-top{ grid-template-columns:1fr; gap:34px; }
  .testimonial-grid{ grid-template-columns:1fr; }
  .approach-grid{ grid-template-columns:repeat(2,1fr); }
  nav.primary{ display:none; }
  .nav-toggle{ display:block; }
  section{ padding:70px 0; }
  .hero{ padding:80px 0 60px 0; }
  .wrap{ padding:0 24px; }
}
