:root {
  --navy: #1a2e4a;
  --navy-light: #243d62;
  --gold: #b08d57;
  --gold-light: #c9a96e;
  --grey-bg: #f5f5f3;
  --grey-mid: #ebebea;
  --grey-line: #dddbd8;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-mid: #5c5c5c;
  --text-light: #999;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Mulish',sans-serif; font-weight:300; background:var(--white); color:var(--text); overflow-x:hidden; }

/* ─── NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 60px; height:76px;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--grey-line);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-logo img { height:58px; width:auto; object-fit:contain; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a {
  font-size:12px; font-weight:400; letter-spacing:1.8px; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none; cursor:pointer; transition:color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color:var(--navy); }
.nav-cta {
  font-size:11px !important; letter-spacing:2px !important;
  color:var(--white) !important;
  background:var(--navy);
  padding:11px 24px !important;
  transition:background 0.25s !important;
}
.nav-cta:hover { background:var(--navy-light) !important; }
.mob-btn { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.mob-btn span { display:block; width:22px; height:1px; background:var(--text); margin:5px 0; }

/* ─── PAGES ─── */
.page { display:none; padding-top:76px; }
.page.active { display:block; }

/* ─── HERO ─── */
.hero {
  position:relative; height:92vh; min-height:580px;
  overflow:hidden; display:flex; align-items:flex-end;
}
.hero-img {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1800&q=80');
  background-size:cover; background-position:center 30%;
}
.hero-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(10,18,30,0.08) 0%,
    rgba(10,18,30,0.18) 40%,
    rgba(10,18,30,0.72) 100%
  );
}
.hero-content {
  position:relative; z-index:2;
  padding:0 80px 72px;
  max-width:820px;
}
.hero-tag {
  font-size:11px; font-weight:400; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:20px; display:block;
}
.hero-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(40px,5.5vw,72px); font-weight:400; line-height:1.08;
  color:var(--white); margin-bottom:24px;
}
.hero-title em { font-style:italic; }
.hero-sub {
  font-size:16px; font-weight:300; line-height:1.75;
  color:rgba(255,255,255,0.78); max-width:520px; margin-bottom:44px;
}
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.btn-light {
  font-size:11px; font-weight:400; letter-spacing:2px; text-transform:uppercase;
  color:var(--white); background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.45);
  padding:14px 30px; cursor:pointer; text-decoration:none; display:inline-block;
  backdrop-filter:blur(4px); transition:all 0.25s;
}
.btn-light:hover { background:rgba(255,255,255,0.25); }
.btn-gold {
  font-size:11px; font-weight:400; letter-spacing:2px; text-transform:uppercase;
  color:var(--navy); background:var(--gold-light);
  border:1px solid transparent;
  padding:14px 30px; cursor:pointer; text-decoration:none; display:inline-block;
  transition:all 0.25s;
}
.btn-gold:hover { background:var(--gold); }

/* ─── INTRO STRIP ─── */
.intro-strip {
  background:var(--navy); padding:52px 80px;
  display:grid; grid-template-columns:1fr 2px 1fr 2px 1fr;
  gap:0; align-items:center;
}
.intro-strip-div { background:rgba(255,255,255,0.12); height:48px; }
.intro-item { text-align:center; padding:0 48px; }
.intro-item-num {
  font-family:'Playfair Display', serif; font-size:38px; font-weight:400;
  color:var(--white); line-height:1;
}
.intro-item-label {
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,0.45); margin-top:8px;
}

/* ─── GENERIC SECTION ─── */
.sec { padding:112px 80px; }
.sec-sm { padding:80px 80px; }
.sec-grey { background:var(--grey-bg); }
.sec-navy { background:var(--navy); color:var(--white); }
.sec-white { background:var(--white); }
.tag {
  font-size:10px; font-weight:500; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px; display:block;
}
.tag-light { color:rgba(176,141,87,0.8); }
.h2 {
  font-family:'Playfair Display', serif; font-size:clamp(32px,3.2vw,50px);
  font-weight:400; line-height:1.15; color:var(--text); margin-bottom:20px;
}
.h2 em { font-style:italic; }
.h2-light { color:var(--white); }
.rule { width:36px; height:1px; background:var(--gold); margin:28px 0; }
.body-text { font-size:15px; line-height:1.85; color:var(--text-mid); max-width:600px; }
.body-text-light { color:rgba(255,255,255,0.62); }

/* ─── PROMISE GRID (homepage) ─── */
.promise-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  background:var(--grey-line); margin-top:64px;
}
.promise-card {
  background:var(--white); padding:52px 44px;
  display:flex; flex-direction:column; gap:20px;
  transition:background 0.25s;
}
.promise-card:hover { background:var(--grey-bg); }
.promise-card-icon { width:36px; height:36px; }
.promise-card-title {
  font-family:'Playfair Display', serif; font-size:20px; font-weight:400;
  color:var(--navy); line-height:1.2;
}
.promise-card-text { font-size:13.5px; line-height:1.8; color:var(--text-mid); }

/* ─── SPLIT IMAGE SECTION ─── */
.split { display:grid; grid-template-columns:1fr 1fr; }
.split-img { position:relative; overflow:hidden; min-height:520px; }
.split-img img { width:100%; height:100%; object-fit:cover; display:block; }
.split-content { padding:88px 72px; display:flex; flex-direction:column; justify-content:center; }

/* ─── SERVICES ─── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  background:var(--grey-line); margin-top:64px;
}
.service-card { background:var(--white); padding:48px 40px; transition:background 0.25s; }
.service-card:hover { background:var(--grey-bg); }
.service-title {
  font-family:'Playfair Display', serif; font-size:19px; font-weight:400;
  color:var(--navy); margin-bottom:14px; line-height:1.25;
}
.service-text { font-size:13px; line-height:1.8; color:var(--text-mid); margin-bottom:20px; }
.service-list { list-style:none; display:flex; flex-direction:column; gap:7px; }
.service-list li {
  font-size:12px; color:var(--text-mid); padding-left:14px; position:relative; letter-spacing:0.3px;
}
.service-list li::before {
  content:''; position:absolute; left:0; top:7px; width:5px; height:1px; background:var(--gold);
}

/* ─── WHO WE SERVE ─── */
.serve-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
  background:var(--grey-line); margin-top:64px;
}
.serve-card {
  background:var(--white); padding:56px 52px;
  position:relative; overflow:hidden; transition:background 0.25s;
}
.serve-card:hover { background:var(--grey-bg); }
.serve-num {
  font-family:'Playfair Display', serif; font-size:72px; font-weight:400;
  color:rgba(26,46,74,0.05); position:absolute; top:20px; right:32px; line-height:1;
}
.serve-card-title {
  font-family:'Playfair Display', serif; font-size:22px; font-weight:400;
  color:var(--navy); margin-bottom:14px;
}
.serve-card-text { font-size:13.5px; line-height:1.8; color:var(--text-mid); margin-bottom:22px; }
.serve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.serve-tag {
  font-size:10px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--gold); border:1px solid rgba(176,141,87,0.35); padding:5px 12px;
}

/* ─── JOHN SECTION ─── */
.john-wrap { display:grid; grid-template-columns:420px 1fr; }
.john-photo { overflow:hidden; position:relative; }
.john-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.john-info { padding:88px 72px; background:var(--grey-bg); }
.john-quote {
  font-family:'Playfair Display', serif; font-size:24px; font-weight:400; font-style:italic;
  color:var(--navy); line-height:1.55; margin-bottom:36px;
  padding-left:24px; border-left:2px solid var(--gold);
}
.john-bio { font-size:14px; line-height:1.9; color:var(--text-mid); margin-bottom:18px; }
.milestone-row { display:flex; gap:20px; padding:16px 0; border-bottom:1px solid var(--grey-mid); }
.milestone-row:last-child { border-bottom:none; }
.m-year { font-size:11px; letter-spacing:1.5px; color:var(--gold); min-width:68px; padding-top:2px; font-weight:400; }
.m-text { font-size:13px; line-height:1.7; color:var(--text-mid); }

/* ─── TESTIMONIAL ─── */
.testimonial-band {
  background:var(--navy); padding:72px 80px;
  display:flex; flex-direction:column; align-items:flex-start; gap:20px;
}
.t-quote {
  font-family:'Playfair Display',serif; font-size:clamp(28px,3.2vw,48px);
  font-weight:400; font-style:italic; line-height:1.4; color:var(--white);
  width:100%; margin:0;
}
.t-attr {
  font-size:11px; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,0.5); border-left:2px solid var(--gold); padding-left:18px;
}
.t-quote {
  font-family:'Playfair Display', serif; font-size:clamp(22px,2.5vw,34px);
  font-weight:400; font-style:italic; line-height:1.45;
  color:var(--white); width:100%; margin-bottom:0;
}
.t-attr { font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.38); }

/* ─── IMAGE ROW (3 lifestyle shots) ─── */
.img-row { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.img-row-item { position:relative; overflow:hidden; aspect-ratio:4/3; }
.img-row-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s; }
.img-row-item:hover img { transform:scale(1.04); }
.img-row-caption {
  position:absolute; bottom:0; left:0; right:0; padding:20px 24px;
  background:linear-gradient(to top, rgba(10,18,30,0.65) 0%, transparent 100%);
  font-family:'Playfair Display', serif; font-size:16px; color:var(--white); font-style:italic;
}

/* ─── VRG ─── */
.vrg-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.vrg-left { padding:80px 72px 80px 80px; background:var(--grey-bg); }
.vrg-right { background:var(--navy); padding:80px 72px; }
.vrg-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:rgba(255,255,255,0.08); margin-top:48px; }
.vrg-stat { background:rgba(255,255,255,0.04); padding:40px 32px; }
.vrg-stat-num {
  font-family:'Playfair Display', serif; font-size:42px; font-weight:400;
  color:var(--white); line-height:1;
}
.vrg-stat-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.38); margin-top:8px; }

/* ─── CTA BAND ─── */
.cta-band {
  background:var(--grey-bg); padding:80px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
}
.cta-title {
  font-family:'Playfair Display', serif; font-size:clamp(26px,2.8vw,38px);
  font-weight:400; line-height:1.2; color:var(--navy);
}
.cta-title em { font-style:italic; }
.btn-navy {
  font-size:11px; font-weight:400; letter-spacing:2px; text-transform:uppercase;
  color:var(--white); background:var(--navy); border:none;
  padding:16px 36px; cursor:pointer; white-space:nowrap;
  text-decoration:none; display:inline-block; transition:background 0.25s;
  flex-shrink:0;
}
.btn-navy:hover { background:var(--navy-light); }

/* ─── PAGE HERO ─── */
.page-hero {
  position:relative; height:52vh; min-height:380px;
  overflow:hidden; display:flex; align-items:flex-end;
}
.page-hero-img {
  position:absolute; inset:0; background-size:cover; background-position:center;
}
.page-hero-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(10,18,30,0.1) 0%, rgba(10,18,30,0.68) 100%);
}
.page-hero-content { position:relative; z-index:2; padding:0 80px 60px; max-width:700px; }
.page-eyebrow { font-size:10px; letter-spacing:3.5px; text-transform:uppercase; color:var(--gold-light); margin-bottom:16px; display:block; }
.page-title {
  font-family:'Playfair Display', serif; font-size:clamp(36px,4.5vw,60px);
  font-weight:400; line-height:1.08; color:var(--white);
}
.page-title em { font-style:italic; }

/* ─── DIFF LIST ─── */
.diff-grid { display:grid; grid-template-columns:3fr 2fr; gap:80px; margin-top:64px; align-items:start; }
.diff-list { display:flex; flex-direction:column; }
.diff-item {
  display:flex; gap:28px; padding:36px 0;
  border-bottom:1px solid var(--grey-mid);
}
.diff-item:first-child { padding-top:0; }
.diff-item:last-child { border-bottom:none; }
.diff-num {
  font-family:'Playfair Display', serif; font-size:40px; font-weight:400;
  color:rgba(176,141,87,0.3); line-height:1; min-width:46px;
}
.diff-title {
  font-family:'Playfair Display', serif; font-size:19px; font-weight:400;
  color:var(--navy); margin-bottom:8px;
}
.diff-text { font-size:13.5px; line-height:1.8; color:var(--text-mid); }
.diff-aside { position:sticky; top:100px; }
.diff-aside-img { width:100%; aspect-ratio:4/5; object-fit:cover; display:block; margin-bottom:2px; }
.diff-aside-caption {
  background:var(--navy); padding:36px 32px;
}
.diff-aside-caption p {
  font-family:'Playfair Display', serif; font-size:18px; font-style:italic;
  color:var(--white); line-height:1.55; margin-bottom:16px;
}
.diff-aside-caption span { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.38); }

/* ─── CONTACT ─── */
.contact-wrap { display:grid; grid-template-columns:1fr 1fr; }
.contact-left { background:var(--navy); padding:96px 72px; }
.contact-right { background:var(--grey-bg); padding:96px 72px; }
.contact-detail-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.contact-detail-val {
  font-family:'Playfair Display', serif; font-size:19px; font-weight:400;
  color:var(--white); line-height:1.4; margin-bottom:44px;
}
.form-group { margin-bottom:22px; }
.form-group label { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--text-mid); display:block; margin-bottom:8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; font-family:'Mulish',sans-serif; font-size:14px; font-weight:300;
  color:var(--text); background:var(--white); border:1px solid var(--grey-line);
  padding:13px 16px; outline:none; transition:border-color 0.25s; -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.btn-submit {
  font-family:'Mulish',sans-serif; font-size:11px; font-weight:400;
  letter-spacing:2px; text-transform:uppercase;
  color:var(--white); background:var(--navy); border:none;
  padding:16px 36px; cursor:pointer; transition:background 0.25s;
}
.btn-submit:hover { background:var(--navy-light); }

/* ─── FOOTER ─── */
footer { background:var(--navy); padding:64px 80px 40px; border-top:1px solid rgba(255,255,255,0.06); }
.footer-top {
  display:grid; grid-template-columns:1fr auto auto auto;
  gap:72px; padding-bottom:52px;
  border-bottom:1px solid rgba(255,255,255,0.07); margin-bottom:28px;
}
.footer-logo img { height:28px; filter:brightness(0) invert(1); opacity:0.7; margin-bottom:18px; }
.footer-tagline {
  font-family:'Playfair Display', serif; font-size:14px; font-style:italic;
  color:rgba(255,255,255,0.35); line-height:1.65; max-width:220px;
}
.footer-col-title { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.42); text-decoration:none; cursor:pointer; transition:color 0.25s; }
.footer-links a:hover { color:rgba(255,255,255,0.8); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.22); }
.footer-reg { font-size:11px; color:rgba(255,255,255,0.18); max-width:420px; text-align:right; line-height:1.6; }

/* ─── FADE ─── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.show { opacity:1; transform:none; }
.reveal-d1 { transition-delay:0.12s; }
.reveal-d2 { transition-delay:0.24s; }
.reveal-d3 { transition-delay:0.36s; }

/* ─── MOBILE ─── */
@media(max-width:1024px){
  nav { padding:0 28px; }
  .mob-btn { display:block; }
  .nav-links { display:none; position:fixed; top:76px; left:0; right:0; bottom:0;
    background:var(--white); flex-direction:column; gap:0; padding:0; overflow-y:auto;
    border-top:1px solid var(--grey-line); z-index:999; }
  .nav-links.open { display:flex; }
  .nav-links li { border-bottom:1px solid var(--grey-line); }
  .nav-links a { display:block; padding:18px 28px; font-size:13px; letter-spacing:1.5px; }
  .nav-cta { background:var(--navy); margin:20px 28px; border-radius:0; text-align:center; }
  .hero-content { padding:0 28px 52px; }
  .intro-strip { grid-template-columns:1fr; gap:28px; padding:40px 28px; }
  .intro-strip-div { display:none; }
  .sec,.sec-sm { padding:72px 28px; }
  .promise-grid { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; }
  .split-img { min-height:300px; }
  .split-content { padding:56px 28px; }
  .services-grid { grid-template-columns:1fr; }
  .serve-grid { grid-template-columns:1fr; }
  .john-wrap { grid-template-columns:1fr; }
  .john-photo { height:380px; }
  .john-info { padding:56px 28px; }
  .vrg-grid { grid-template-columns:1fr; }
  .vrg-left,.vrg-right { padding:64px 28px; }
  .img-row { grid-template-columns:1fr; }
  .img-row-item { aspect-ratio:3/2; }
  .cta-band { flex-direction:column; align-items:flex-start; padding:56px 28px; }
  .page-hero-content { padding:0 28px 44px; }
  .diff-grid { grid-template-columns:1fr; }
  .diff-aside { position:static; }
  .contact-wrap { grid-template-columns:1fr; }
  .contact-left,.contact-right { padding:64px 28px; }
  footer { padding:48px 28px 32px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
  .footer-reg { text-align:center; max-width:100%; }
  .form-row { grid-template-columns:1fr; }
  .testimonial-band { padding:64px 28px; }
}

/* ─── BIO SECTIONS ─── */
.bio-section { display:grid; grid-template-columns:420px 1fr; min-height:560px; }
.bio-reverse { direction:rtl; }
.bio-reverse > * { direction:ltr; }
.bio-photo-col { overflow:hidden; position:relative; }
.bio-photo { width:100%; height:100%; object-fit:cover; object-position:top; display:block; min-height:560px; }
.bio-content-col { padding:80px 72px; display:flex; flex-direction:column; justify-content:center; }
.bio-bg-cream { background:var(--grey-bg); }
.bio-bg-navy { background:var(--navy); }
.bio-name { font-family:'Playfair Display',serif; font-size:clamp(26px,2.8vw,38px); font-weight:400; color:var(--navy); margin-bottom:2px; line-height:1.15; }
.bio-name-light { color:var(--white); }
.bio-cred { font-family:'Mulish',sans-serif; font-size:12px; font-weight:300; letter-spacing:2px; color:var(--gold); vertical-align:middle; margin-left:10px; }
.bio-cred-light { color:rgba(176,141,87,0.85); }
.bio-text { font-size:14px; line-height:1.9; color:var(--text-mid); margin-bottom:16px; }
.bio-text:last-child { margin-bottom:0; }
.bio-text-light { color:rgba(255,255,255,0.62); }
.bio-intro-band { background:var(--white); padding:80px; border-bottom:1px solid var(--grey-line); }
/* footer logo text */
.footer-logo-text { font-family:'Playfair Display',serif; font-size:13px; font-weight:400; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.72); margin-bottom:18px; display:block; line-height:1; }
@media(max-width:1024px){
  .bio-section { grid-template-columns:1fr; direction:ltr !important; }
  .bio-reverse { direction:ltr; }
  .bio-photo-col { min-height:360px; }
  .bio-photo { min-height:360px; }
  .bio-content-col { padding:56px 28px; }
  .bio-intro-band { padding:56px 28px; }
}