@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --navy: #16233F;
  --navy-deep: #0D1626;
  --gold: #C6A45C;
  --gold-soft: #D9BE87;
  --white: #FFFFFF;
  --paper: #FAF8F4;
  --ink: #1B1B1B;
  --muted: #6b6560;
  --line: rgba(22,35,63,0.12);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{ font-family:'Fraunces', serif; font-weight:500; letter-spacing:-0.01em; }
a{ color:inherit; text-decoration:none; }
img{max-width:100%;display:block;}

.container{ max-width:1160px; margin:0 auto; padding:0 32px; }

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.nav .container{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.nav-logo{ display:flex; flex-direction:column; line-height:1; }
.nav-logo .top{ font-size:13px; font-weight:700; letter-spacing:0.32em; color:var(--navy); }
.nav-rule{ width:100%; height:1.5px; background:var(--gold); margin:6px 0; }
.nav-logo .bottom{ font-size:9px; font-weight:600; letter-spacing:0.22em; color:#8a7a5a; }

.nav-links{ display:flex; gap:36px; font-size:14px; font-weight:600; }
.nav-links a{ color:var(--navy); opacity:0.75; transition:opacity 0.2s; }
.nav-links a:hover, .nav-links a.active{ opacity:1; }

.nav-cta{
  font-size:13px; font-weight:700; letter-spacing:0.04em;
  background:var(--navy); color:var(--white);
  padding:11px 22px; border-radius:2px;
  transition: background 0.2s;
}
.nav-cta:hover{ background: var(--navy-deep); }

@media (max-width:820px){ .nav-links{ display:none; } }

/* PAGE HERO (interior pages) */
.page-hero{
  background: var(--navy);
  color: var(--paper);
  position:relative;
  overflow:hidden;
  padding: 88px 0 76px;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background: repeating-linear-gradient(90deg, rgba(198,164,92,0.06) 0 1px, transparent 1px 96px);
  pointer-events:none;
}
.page-hero-inner{ position:relative; max-width:640px; }
.eyebrow{
  font-size:12px; font-weight:700; letter-spacing:0.28em; text-transform:uppercase;
  color: var(--gold-soft); margin-bottom:20px; display:flex; align-items:center; gap:14px;
}
.eyebrow::before{ content:""; width:32px; height:1px; background:var(--gold); }
.page-hero h1{
  font-size: clamp(34px, 5vw, 52px);
  line-height:1.12;
  color: var(--white);
  margin-bottom:18px;
}
.page-hero p.lede{
  font-size:16.5px; line-height:1.65; color:rgba(250,248,244,0.72);
  max-width:520px;
}

/* Full homepage hero */
.hero{
  background: var(--navy);
  color: var(--paper);
  position:relative;
  overflow:hidden;
  padding: 140px 0 120px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: repeating-linear-gradient(90deg, rgba(198,164,92,0.06) 0 1px, transparent 1px 96px);
  pointer-events:none;
}
.hero-inner{ position:relative; max-width:720px; }
.hero h1{
  font-size: clamp(40px, 6vw, 68px);
  line-height:1.08;
  margin-bottom:26px;
  color: var(--white);
}
.hero h1 em{ font-style:italic; color: var(--gold-soft); }
.hero p.lede{
  font-size:18px; line-height:1.65; color:rgba(250,248,244,0.72);
  max-width:520px; margin-bottom:40px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.btn-gold{
  background:var(--gold); color:var(--navy-deep); font-weight:700; font-size:14px;
  padding:15px 28px; border-radius:2px; letter-spacing:0.02em;
  transition: background 0.2s; display:inline-block;
}
.btn-gold:hover{ background: var(--gold-soft); }
.btn-ghost{
  border:1px solid rgba(250,248,244,0.3); color:var(--paper); font-weight:600; font-size:14px;
  padding:15px 28px; border-radius:2px; display:inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover{ border-color: var(--gold); background: rgba(198,164,92,0.08); }
.btn-navy{
  background:var(--navy); color:var(--white); font-weight:700; font-size:14px;
  padding:15px 28px; border-radius:2px; letter-spacing:0.02em; display:inline-block;
  transition: background 0.2s;
}
.btn-navy:hover{ background:var(--navy-deep); }

/* SECTION LABEL */
.eyebrow-light{
  font-size:12px; font-weight:700; letter-spacing:0.28em; text-transform:uppercase;
  color: var(--navy); opacity:0.5; margin-bottom:18px;
}

/* SERVICES */
.services{ padding:110px 0; }
.services-head{ max-width:560px; margin-bottom:64px; }
.services-head h2{ font-size: clamp(28px,4vw,40px); }

.service-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:1px;
  background: var(--line); border:1px solid var(--line);
}
.service-card{
  background:var(--white); padding:44px 36px;
  display:flex; flex-direction:column; gap:16px;
}
.service-num{ font-size:12px; font-weight:700; color:var(--gold); letter-spacing:0.1em; }
.service-card h3{ font-size:20px; font-weight:500; color:var(--navy); }
.service-card p{ font-size:14.5px; line-height:1.65; color:var(--muted); }

@media (max-width:900px){ .service-grid{ grid-template-columns:1fr; } }

/* PHILOSOPHY / SIGNATURE STRIP */
.strip{
  background: var(--paper);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:100px 0;
}
.strip-inner{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:center;
}
.strip-mark{ display:flex; justify-content:center; }
.strip h2{ font-size: clamp(26px,3.4vw,36px); margin-bottom:20px; color:var(--navy); }
.strip p{ font-size:15.5px; line-height:1.75; color:var(--muted); max-width:480px; }
.strip .rule{ width:64px; height:2px; background:var(--gold); margin:26px 0; }
@media (max-width:900px){ .strip-inner{ grid-template-columns:1fr; } }

/* PROCESS */
.process{ padding:110px 0; }
.process-head{ max-width:560px; margin-bottom:64px; }
.process-list{ display:flex; flex-direction:column; }
.process-row{
  display:grid; grid-template-columns: 90px 1fr 1fr; gap:32px;
  padding:32px 0; border-top:1px solid var(--line);
  align-items:baseline;
}
.process-row:last-child{ border-bottom:1px solid var(--line); }
.process-mark{ font-family:'Fraunces', serif; font-size:22px; color:var(--gold); }
.process-row h3{ font-size:19px; font-weight:500; color:var(--navy); }
.process-row p{ font-size:14.5px; line-height:1.65; color:var(--muted); }
@media (max-width:760px){
  .process-row{ grid-template-columns:1fr; gap:8px; }
}

/* GENERIC CONTENT SECTION */
.section{ padding:100px 0; }
.section-head{ max-width:600px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(28px,4vw,38px); color:var(--navy); }
.section-head p{ font-size:15.5px; line-height:1.7; color:var(--muted); margin-top:16px; }

/* TWO COLUMN */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; } }

/* VALUE LIST */
.value-list{ display:flex; flex-direction:column; gap:28px; }
.value-item{ display:flex; gap:18px; }
.value-mark{ flex:none; width:6px; background:var(--gold); border-radius:1px; margin-top:4px; }
.value-item h3{ font-size:17px; color:var(--navy); font-weight:600; margin-bottom:6px; }
.value-item p{ font-size:14.5px; line-height:1.6; color:var(--muted); }

/* PRICING / SERVICE DETAIL CARDS */
.detail-grid{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); }
.detail-row{
  background:var(--white); padding:40px 36px;
  display:grid; grid-template-columns:220px 1fr; gap:36px;
}
.detail-row h3{ font-size:22px; color:var(--navy); font-weight:500; }
.detail-row .tag{
  font-size:10.5px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold); margin-top:8px; display:block;
}
.detail-row p{ font-size:14.5px; line-height:1.7; color:var(--muted); margin-bottom:14px; }
.detail-row ul{ list-style:none; display:flex; flex-direction:column; gap:8px; }
.detail-row li{ font-size:14px; color:var(--ink); display:flex; align-items:baseline; gap:10px; }
.detail-row li::before{ content:""; width:5px; height:5px; background:var(--gold); flex:none; }
@media (max-width:760px){ .detail-row{ grid-template-columns:1fr; gap:16px; } }

/* CTA */
.cta{
  background:var(--navy); color:var(--white);
  padding:100px 0; text-align:center; position:relative; overflow:hidden;
}
.cta::before{
  content:"";
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:640px; height:640px; border-radius:50%;
  background: radial-gradient(circle, rgba(198,164,92,0.10), transparent 70%);
}
.cta-inner{ position:relative; max-width:600px; margin:0 auto; }
.cta h2{ font-size:clamp(28px,4vw,42px); margin-bottom:20px; }
.cta p{ color:rgba(250,248,244,0.68); font-size:16px; margin-bottom:36px; }

/* CONTACT FORM */
.contact-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:64px; }
@media (max-width:900px){ .contact-wrap{ grid-template-columns:1fr; } }
.contact-info h3{ font-size:14px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.contact-info .block{ margin-bottom:32px; }
.contact-info p, .contact-info a{ font-size:15px; color:var(--ink); line-height:1.7; }
.contact-info a:hover{ color:var(--navy); }

form.contact-form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:flex; flex-direction:column; gap:8px; }
.form-row label{ font-size:12.5px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; color:var(--navy); opacity:0.7; }
.form-row input, .form-row textarea, .form-row select{
  border:1px solid var(--line); border-radius:2px; padding:13px 14px;
  font-family:'Manrope', sans-serif; font-size:14.5px; color:var(--ink);
  background:var(--paper);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{
  outline:2px solid var(--gold); outline-offset:1px; background:var(--white);
}
.form-row textarea{ resize:vertical; min-height:120px; }
.form-submit{
  align-self:flex-start; background:var(--navy); color:var(--white); font-weight:700; font-size:14px;
  padding:15px 32px; border:none; border-radius:2px; cursor:pointer; letter-spacing:0.02em;
  transition:background 0.2s;
}
.form-submit:hover{ background:var(--navy-deep); }

/* FOOTER */
footer{ background: var(--navy-deep); color:rgba(250,248,244,0.6); padding:56px 0 40px; }
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.1);
  flex-wrap:wrap; gap:24px;
}
.footer-logo .top{ font-size:13px; font-weight:700; letter-spacing:0.3em; color:var(--white); }
.footer-logo .rule{ width:100%; height:1.5px; background:var(--gold); margin:6px 0; }
.footer-logo .bottom{ font-size:9px; font-weight:600; letter-spacing:0.2em; color:var(--gold-soft); }
.footer-links{ display:flex; gap:48px; font-size:13.5px; }
.footer-col h4{ color:rgba(250,248,244,0.4); font-size:11px; letter-spacing:0.16em; text-transform:uppercase; margin-bottom:14px; font-weight:700;}
.footer-col a{ display:block; margin-bottom:10px; color:rgba(250,248,244,0.7); }
.footer-bottom{ padding-top:28px; font-size:12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
