:root{
  --bg: #F6F3EC;
  --bg-alt: #EAE6DA;
  --ink: #1F2C2E;
  --ink-soft: #566361;
  --sage: #5E8482;
  --sage-deep: #2C4143;
  --sage-pale: #C7D6D3;
  --sand: #C4A47C;
  --sand-deep: #A9875E;
  --line: #DDD7C8;
  --radius: 2px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  font-weight:400;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3, .display{
  font-family:'Lora', serif;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--ink);
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 32px;}

/* Top bar */
.topbar{
  background:var(--sage-deep);
  color:#EDE9DC;
  font-size:14.5px;
  letter-spacing:0.02em;
}
.topbar .wrap{
  display:flex; justify-content:flex-end; gap:28px;
  padding-top:9px; padding-bottom:9px;
}
.topbar a{opacity:0.92; display:inline-flex; align-items:center; gap:6px;}
.topbar a:hover{opacity:1; text-decoration:underline;}
.contact-icon{width:14px; height:14px; flex-shrink:0; display:inline-block;}

/* Nav */
nav.site-nav{
  background:var(--bg);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:20;
}
nav.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; padding-bottom:16px;
}
.brand{display:flex; align-items:center; gap:16px;}
.brand-mark{width:66px; height:auto; flex-shrink:0;}
.brand-text .name{font-family:'Lora', serif; font-size:25px; font-weight:500; letter-spacing:0.01em;}
.brand-text .tag{font-size:15px; color:var(--sage); letter-spacing:0.01em;}

.nav-links{display:flex; gap:26px; font-size:15.5px; align-items:center;}
.nav-links > a{color:var(--ink-soft); padding:4px 0; border-bottom:1px solid transparent; transition:border-color .2s, color .2s;}
.nav-links > a:hover, .nav-links > a.active{color:var(--sage-deep); border-color:var(--sage);}

.nav-dropdown{position:relative;}
.nav-dropdown > .dd-trigger{
  color:var(--ink-soft); padding:4px 0; border-bottom:1px solid transparent;
  cursor:pointer; display:inline-flex; align-items:center; gap:5px; background:none; border-top:none; border-left:none; border-right:none;
  font-family:'Work Sans', sans-serif; font-size:15.5px;
}
.nav-dropdown > .dd-trigger:after{content:"⌄"; font-size:13px; position:relative; top:-1px;}
.nav-dropdown:hover > .dd-trigger, .nav-dropdown.active > .dd-trigger{color:var(--sage-deep); border-color:var(--sage);}
.dd-menu{
  position:absolute; top:100%; left:0; margin-top:12px;
  background:var(--bg); border:1px solid var(--line); min-width:190px;
  box-shadow:0 12px 28px rgba(31,44,46,0.08);
  opacity:0; visibility:hidden; transform:translateY(-4px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:30;
}
.nav-dropdown:hover .dd-menu, .nav-dropdown:focus-within .dd-menu{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dd-menu a{display:block; padding:12px 18px; font-size:15.5px; color:var(--ink-soft);}
.dd-menu a:hover{background:var(--bg-alt); color:var(--sage-deep);}

.nav-links a.nav-cta{
  background:var(--sage-deep); color:#F6F3EC !important; padding:14px 32px;
  border-radius:var(--radius); font-size:16px; letter-spacing:0.03em;
  line-height:1; display:inline-flex; align-items:center; border-bottom:none;
}
.nav-links a.nav-cta:hover{background:var(--ink); border-color:transparent;}

/* Mobile nav toggle */
.nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px;}
.nav-toggle svg{width:26px; height:26px; color:var(--ink);}

/* Hero */
.hero{
  position:relative; min-height:78vh; display:flex; align-items:flex-end; overflow:hidden; background:#101a17;
}
.hero img.hero-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 40%;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(16,26,23,0.02) 0%, rgba(16,26,23,0.08) 40%, rgba(16,26,23,0.55) 100%);
}
.hero-inner{position:relative; z-index:2; width:100%; padding-bottom:72px;}
.eyebrow{
  display:inline-block; color:#FCFBF5; font-size:14.5px; letter-spacing:0.14em; text-transform:uppercase;
  margin-bottom:22px; background:rgba(16,26,23,0.55); padding:8px 16px; border-radius:2px;
}
.hero h1{
  color:#FCFBF5; font-size:57px; font-weight:500; max-width:15ch; line-height:1.1;
  text-shadow:0 2px 18px rgba(8,14,12,0.4), 0 1px 3px rgba(8,14,12,0.45);
}
.hero h1 em{font-style:italic; font-weight:500; color:#EFE8D2;}
.hero p{
  color:#FCFBF5; font-size:19px; max-width:44ch; margin-top:22px;
  text-shadow:0 1px 12px rgba(8,14,12,0.45), 0 1px 2px rgba(8,14,12,0.5);
}
.hero-ctas{margin-top:34px; display:flex; gap:16px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 34px; font-size:16px; letter-spacing:0.03em; line-height:1;
  border-radius:var(--radius); transition:transform .2s ease, background .2s ease;
}
.btn-primary{background:#FCFBF5; color:var(--sage-deep);}
.btn-primary:hover{background:#fff; transform:translateY(-1px);}
.btn-ghost{border:1px solid rgba(255,255,255,0.6); color:#FCFBF5;}
.btn-ghost:hover{background:rgba(255,255,255,0.12);}

/* Simple page header (non-home pages) */
.page-hero{
  position:relative; min-height:38vh; display:flex; align-items:center; overflow:hidden; background:var(--sage-deep);
}
.page-hero img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.35;}
.page-hero .wrap{position:relative; z-index:2;}
.page-hero .kicker{color:#CFE0DE; font-size:14.5px; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:16px;}
.page-hero h1{color:#FCFBF5; font-size:46px; font-weight:500;}
.page-hero p{color:#E6EEEC; font-size:18px; max-width:56ch; margin-top:16px;}

/* Brand band */
.brand-band{background:var(--bg); padding:76px 0; text-align:center;}
.brand-band img{width:64px; margin:0 auto 20px;}
.brand-band .name{font-family:'Lora', serif; font-size:33px; font-weight:500;}
.brand-band .tag{font-size:17.5px; color:var(--sage); margin-top:6px;}
.brand-band hr{width:64px; border:none; border-top:1px solid var(--line); margin:28px auto;}
.brand-band p{max-width:560px; margin:0 auto; color:var(--ink-soft); font-size:17px;}

/* Brand signature — the client's real logo lockup as a standalone moment */
.brand-signature{padding:64px 0 20px; text-align:center;}
.brand-signature img{max-width:340px; width:100%; margin:0 auto; height:auto;}

/* Mission teaser / generic centered text section */
.mission-teaser{background:var(--bg-alt); padding:88px 0; text-align:center;}
.mission-teaser .wrap{max-width:680px;}
.kicker{font-size:14.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--sage); margin-bottom:20px; display:block;}
.mission-teaser blockquote{
  font-family:'Lora', serif; font-style:italic; font-weight:500; font-size:27.5px;
  color:var(--sage-deep); line-height:1.5; margin-bottom:24px;
}
.mission-teaser p{color:var(--ink-soft); font-size:17px; margin-bottom:24px;}
.text-link{font-size:15.5px; color:var(--sage-deep); border-bottom:1px solid var(--sage); padding-bottom:2px;}

/* Quick links band */
.quick-links{background:var(--sage-deep); padding:56px 0;}
.quick-links .wrap{display:flex; justify-content:center; gap:64px; flex-wrap:wrap;}
.quick-links a{color:#F6F3EC; text-align:center;}
.quick-links .ql-label{font-size:13px; letter-spacing:0.1em; text-transform:uppercase; color:#B9C7C5; margin-bottom:8px; display:block;}
.quick-links .ql-title{font-family:'Lora', serif; font-size:21px; font-weight:500; border-bottom:1px solid rgba(246,243,236,0.35); padding-bottom:4px;}
.quick-links a:hover .ql-title{border-color:#F6F3EC;}

/* Generic content section */
.content-section{padding:88px 0;}
.content-section.alt{background:var(--bg-alt);}
.content-section .wrap.narrow{max-width:720px;}
.content-section h2{font-size:32px; font-weight:500; margin-bottom:22px; line-height:1.35;}
.content-section p{color:var(--ink-soft); font-size:17.5px; margin-bottom:16px;}
.content-section p:last-child{margin-bottom:0;}
.content-section ul{margin:0 0 20px 0; padding-left:0; list-style:none;}
.content-section ul li{
  color:var(--ink-soft); font-size:17.5px; padding:10px 0 10px 26px; position:relative;
  border-bottom:1px solid var(--line);
}
.content-section ul li:before{
  content:"–"; position:absolute; left:0; color:var(--sand-deep);
}
.content-section ul li:last-child{border-bottom:none;}

/* Team member card */
.team-member{
  display:grid; grid-template-columns:220px 1fr; gap:40px; padding:56px 0; border-bottom:1px solid var(--line);
  align-items:start;
}
.team-member:last-child{border-bottom:none;}
.team-member .photo{
  width:220px; height:220px; background:var(--bg-alt); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--ink-soft); font-size:14.5px; text-align:center; padding:16px;
}
.team-member h3{font-size:26.5px; margin-bottom:6px;}
.team-member .role{font-size:14.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage); margin-bottom:18px;}
.team-member p{color:var(--ink-soft); font-size:16.5px; margin-bottom:14px;}

/* Specializations grid */
.specs{padding:88px 0 96px;}
.specs-head{max-width:600px; margin-bottom:52px;}
.specs-head h2{font-size:32px; font-weight:500;}
.spec-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
.spec-card{background:var(--bg-alt); padding:38px 32px; transition:background .25s ease;}
.spec-card:hover{background:var(--bg);}
.spec-num{font-family:'Lora', serif; font-style:italic; font-size:16.5px; color:var(--sand-deep); margin-bottom:22px; display:block;}
.spec-card h3{font-size:21px; font-weight:500; margin-bottom:12px;}
.spec-card p{font-size:16px; color:var(--ink-soft);}

/* Quote card */
.quote-section{background:var(--bg-alt); padding:80px 0;}
.quote-card{display:grid; grid-template-columns:340px 1fr; align-items:stretch; background:var(--bg); border:1px solid var(--line);}
.quote-card .thumb{position:relative; overflow:hidden; min-height:260px;}
.quote-card .thumb img{width:100%; height:100%; object-fit:cover; position:absolute; inset:0;}
.quote-card .body{padding:48px 52px; display:flex; flex-direction:column; justify-content:center;}
.quote-card blockquote{font-family:'Lora', serif; font-style:italic; font-weight:500; font-size:28.5px; color:var(--sage-deep); line-height:1.5;}
.quote-card cite{display:block; margin-top:18px; font-style:normal; font-size:14.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft);}

/* Resource card */
.resources{background:var(--bg); padding:88px 0;}
.resources.alt{background:var(--bg-alt);}
.resources-head{max-width:600px; margin-bottom:40px;}
.resources-head h2{font-size:32px; font-weight:500;}
.resource-card{display:grid; grid-template-columns:220px 1fr; gap:32px; background:var(--bg); border:1px solid var(--line); align-items:stretch;}
.resources.alt .resource-card{background:var(--bg);}
.resource-card .thumb{position:relative; overflow:hidden;}
.resource-card .thumb img{width:100%; height:100%; object-fit:cover; min-height:180px;}
.resource-card .body{padding:32px 32px 32px 0; display:flex; flex-direction:column; justify-content:center;}
.resource-card .tag{font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color:var(--sand-deep); margin-bottom:10px;}
.resource-card h3{font-family:'Lora', serif; font-size:23px; font-weight:500; margin-bottom:10px;}
.resource-card p{font-size:16px; color:var(--ink-soft); margin-bottom:16px;}
.resource-card a{font-size:15.5px; color:var(--sage-deep); border-bottom:1px solid var(--sage); padding-bottom:2px; align-self:flex-start;}

/* Journey photo band */
.journey{position:relative; min-height:56vh; display:flex; align-items:center; overflow:hidden;}
.journey img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%;}
.journey::after{content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(16,26,23,0.2) 0%, rgba(16,26,23,0.08) 40%, rgba(16,26,23,0) 65%);}
.journey-inner{position:relative; z-index:2; max-width:460px; padding:80px 0;}
.journey-inner .kicker{
  display:inline-block; color:#FCFBF5; font-size:14.5px; letter-spacing:0.14em; text-transform:uppercase;
  margin-bottom:18px; background:rgba(16,26,23,0.55); padding:8px 16px; border-radius:2px;
}
.journey-inner h2{color:#FCFBF5; font-size:33px; font-weight:500; line-height:1.35; margin-bottom:18px; text-shadow:0 2px 16px rgba(8,14,12,0.4), 0 1px 3px rgba(8,14,12,0.45);}
.journey-inner p{color:#FCFBF5; font-size:17px; text-shadow:0 1px 12px rgba(8,14,12,0.45), 0 1px 2px rgba(8,14,12,0.5);}

/* FAQ */
.faq{padding:96px 0;}
.faq-top{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap;}
.faq-top h2{font-size:32px; font-weight:500;}
.faq-list{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line); padding:26px 0;}
.faq-item summary{
  display:flex; justify-content:space-between; align-items:center; gap:20px; cursor:pointer;
  font-family:'Lora', serif; font-size:20.5px; font-weight:500; list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .icon{font-size:22px; color:var(--sage); flex-shrink:0; transition:transform .25s ease;}
.faq-item[open] summary .icon{transform:rotate(45deg);}
.faq-item .a{font-size:16.5px; color:var(--ink-soft); padding-right:60px; margin-top:16px;}

/* CTA band */
.cta-band{background:var(--sage-deep); color:#F6F3EC; padding:80px 0; text-align:center;}
.cta-band h2{font-size:32px; font-weight:500; color:#FCFBF5; margin-bottom:16px;}
.cta-band p{color:#DDE4D2; font-size:17px; margin-bottom:32px; max-width:640px; margin-left:auto; margin-right:auto;}

/* Footer */
footer{background:var(--ink); color:#C7CBBD; padding:56px 0 32px; font-size:15.5px;}
.foot-grid{display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.1);}
.foot-grid .brand{gap:16px;}
.foot-grid .brand-mark{filter:invert(1) brightness(1.6); width:58px;}
.foot-grid .brand-text .name{color:#F6F3EC;}
.foot-grid .brand-text .tag{color:#9FC7C4; margin-top:4px;}
.foot-col h4{font-size:13px; letter-spacing:0.1em; text-transform:uppercase; color:#8C9480; margin-bottom:16px; font-weight:500;}
.foot-col a{display:flex; align-items:flex-start; gap:8px; color:#C7CBBD; margin-bottom:10px;}
.foot-col a .contact-icon{margin-top:3px;}
.foot-col a:hover{color:#fff;}
.foot-col a.foot-cta{
  display:inline-flex; align-items:center; margin-top:8px; padding:9px 22px;
  border:1px solid rgba(255,255,255,0.3); border-radius:var(--radius); color:#F6F3EC;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.foot-col a.foot-cta:hover{background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.5); color:#fff;}
.foot-bottom{display:flex; justify-content:space-between; padding-top:24px; font-size:14px; color:#7D8570; flex-wrap:wrap; gap:10px;}

@media (max-width: 860px){
  .nav-links{
    display:none; position:absolute; top:100%; left:0; right:0; background:var(--bg);
    flex-direction:column; align-items:flex-start; gap:0; border-bottom:1px solid var(--line);
    box-shadow:0 12px 20px rgba(31,44,46,0.06);
  }
  .nav-links.open{display:flex;}
  .nav-links > a, .nav-dropdown{width:100%;}
  .nav-links > a{padding:16px 32px; border-bottom:1px solid var(--line);}
  .nav-dropdown > .dd-trigger{width:100%; padding:16px 32px; border-bottom:1px solid var(--line); justify-content:space-between;}
  .dd-menu{position:static; opacity:1; visibility:visible; transform:none; border:none; box-shadow:none; margin-top:0; display:none;}
  .nav-dropdown.open .dd-menu{display:block;}
  .dd-menu a{padding:14px 44px; background:var(--bg-alt);}
  .nav-links a.nav-cta{margin:16px 32px;}
  .nav-toggle{display:block;}

  .hero h1{font-size:37.5px;}
  .page-hero h1{font-size:33px;}
  .spec-grid{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr; gap:28px;}
  .resource-card, .team-member{grid-template-columns:1fr;}
  .resource-card .body{padding:0 24px 24px;}
  .resource-card .thumb img{min-height:160px;}
  .team-member .photo{width:100%; height:200px;}
  .quote-card{grid-template-columns:1fr;}
  .quote-card blockquote{font-size:24px;}
  .journey-inner h2{font-size:26.5px;}
}
