:root {
  --green-950:#0b3028;
  --green-900:#11463b;
  --green-800:#155b4d;
  --green-700:#1f6b5b;
  --green-500:#6f9d8e;
  --green-200:#dbe9e4;
  --green-100:#edf5f2;
  --ink:#172522;
  --muted:#64736f;
  --gold:#d29a2e;
  --white:#fff;
  --line:#dbe3e0;
  --shadow:0 18px 45px rgba(18,48,40,.10);
  --radius:20px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#f5f8f7;color:var(--ink);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;line-height:1.55}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.site-shell{min-height:100vh;background:#fff}
.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}

.utility-header{border-bottom:1px solid var(--line);background:#fff}
.utility-inner{min-height:92px;display:grid;grid-template-columns:minmax(250px,1fr) auto;align-items:center;gap:24px}
.logo{display:inline-flex;align-items:center;max-width:330px}
.logo img{width:100%;height:auto}
.utility-meta{display:flex;gap:28px;align-items:center;font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:#53655f;font-weight:700}
.utility-meta span{display:flex;align-items:center;gap:8px;white-space:nowrap}
.utility-meta svg{width:16px;height:16px;stroke:var(--green-800)}

.primary-nav{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50}
.nav-inner{height:58px;display:flex;align-items:center;justify-content:center;position:relative}
.nav-links{display:flex;gap:72px;align-items:center}
.nav-links a{font-size:13px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;color:#485853;position:relative;padding:20px 0 17px}
.nav-links a::after{content:"";position:absolute;height:2px;left:0;right:100%;bottom:11px;background:var(--green-800);transition:right .2s ease}
.nav-links a:hover::after,.nav-links a.active::after{right:0}
.nav-links a.active{color:var(--ink)}
.menu-toggle{display:none;position:absolute;right:0;border:0;background:transparent;padding:10px;color:var(--green-900)}
.menu-toggle svg{width:28px;height:28px}

.hero{position:relative;overflow:hidden;isolation:isolate;background-size:cover;background-position:center;min-height:540px;color:#fff;display:flex;align-items:center}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,37,31,.78) 0%,rgba(8,49,40,.48) 42%,rgba(8,49,40,.10) 72%);z-index:-1}
.hero-home{background-image:url('../images/home-hero.jpg')}
.hero-contact{background-image:url('../images/hero-contact.jpg');min-height:430px}
.hero-content{padding:80px 0 112px;width:min(600px,75%)}
.hero-eyebrow{font-size:12px;letter-spacing:.18em;text-transform:uppercase;font-weight:800;color:#dfeee9;margin-bottom:16px}
.hero h1{font-family:Georgia,"Times New Roman",serif;font-size:clamp(44px,6vw,74px);line-height:.98;margin:0 0 24px;font-weight:700;letter-spacing:-.02em}
.hero h1 .accent{color:#a9dfd0}
.hero p{max-width:520px;font-size:17px;color:rgba(255,255,255,.88);margin:0 0 30px}
.button{display:inline-flex;align-items:center;justify-content:center;gap:12px;border-radius:3px;background:var(--green-800);color:#fff;padding:14px 22px;font-size:12px;text-transform:uppercase;letter-spacing:.08em;font-weight:800;border:1px solid var(--green-800);transition:.2s ease;cursor:pointer}
.button:hover{background:var(--green-950);border-color:var(--green-950);transform:translateY(-1px)}
.button.outline{background:transparent;border-color:rgba(255,255,255,.6)}
.button.gold{background:var(--gold);border-color:var(--gold);color:#18382f}
.hero-swoop{position:absolute;left:-4%;right:-4%;bottom:-48px;height:105px;background:var(--green-800);border-radius:50% 50% 0 0/48% 48% 0 0;border-top:3px solid var(--gold);z-index:2}

.section{padding:86px 0}
.section.soft{background:linear-gradient(180deg,#fff,#f7faf9)}
.section-kicker{color:var(--green-700);text-transform:uppercase;letter-spacing:.18em;font-weight:800;font-size:11px;text-align:center;margin-bottom:12px}
.section-title{font-family:Georgia,"Times New Roman",serif;font-size:clamp(32px,4vw,48px);line-height:1.08;text-align:center;margin:0 0 18px}
.section-copy{max-width:850px;margin:0 auto 44px;text-align:center;color:#54645f;font-size:17px}
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line);border-radius:22px;overflow:hidden;background:#fff;box-shadow:var(--shadow)}
.approach-card{padding:34px 28px;text-align:left;position:relative}
.approach-card + .approach-card{border-left:1px solid var(--line)}
.icon-bubble{width:54px;height:54px;border-radius:50%;background:var(--green-100);display:grid;place-items:center;margin-bottom:18px}
.icon-bubble svg{width:28px;height:28px;stroke:var(--green-800);fill:none;stroke-width:1.8}
.approach-card h3{font-size:15px;text-transform:uppercase;letter-spacing:.06em;margin:0 0 10px}
.approach-card p{font-size:14px;color:#66736f;margin:0}

.quote-band{padding:54px 0;background:linear-gradient(120deg,#eef6f3,#dcebe6);text-align:center}
.quote-band blockquote{margin:0 auto;max-width:900px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(24px,3vw,36px);font-style:italic;color:#21463d}
.quote-band .rule{width:38px;height:2px;background:var(--gold);margin:24px auto 0}

.services-hero{min-height:480px;background:#f7f8f7;position:relative;overflow:hidden;display:flex;align-items:center;border-bottom:1px solid var(--line)}
.services-hero::after{content:"";position:absolute;inset:0;background:url('../images/hero-services.jpg') center/cover no-repeat;opacity:.95}
.services-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.85) 42%,rgba(255,255,255,.12) 72%);z-index:1}
.services-hero .container{position:relative;z-index:2}
.services-hero-copy{max-width:620px;padding:70px 0}
.services-hero h1{font-family:Georgia,"Times New Roman",serif;font-size:clamp(42px,5.5vw,68px);line-height:1.02;margin:0 0 22px;color:#172522}
.services-hero p{max-width:480px;color:#52625d;font-size:17px}
.gold-rule{width:42px;height:2px;background:var(--gold);margin-top:22px}

.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{border:1px solid var(--line);border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 12px 30px rgba(13,58,48,.07);display:flex;flex-direction:column;min-height:100%}
.service-card img{width:100%;height:240px;object-fit:cover}
.service-card-body{padding:26px 24px 28px;display:flex;flex-direction:column;flex:1}
.service-card .service-icon{width:48px;height:48px;border-radius:50%;background:var(--green-100);border:5px solid #fff;box-shadow:0 2px 8px rgba(0,0,0,.08);margin-top:-50px;margin-bottom:16px;display:grid;place-items:center;position:relative}
.service-card .service-icon svg{width:24px;height:24px;stroke:var(--green-800);fill:none;stroke-width:1.9}
.service-card h2{font-family:Georgia,"Times New Roman",serif;font-size:25px;line-height:1.15;margin:0 0 12px}
.service-card p{font-size:14px;color:#66736f;margin:0 0 20px}
.service-card ul{margin:0 0 24px;padding-left:18px;color:#66736f;font-size:14px}
.service-card a{margin-top:auto;color:var(--green-800);font-weight:800;font-size:12px;text-transform:uppercase;letter-spacing:.07em}

.cta-band{position:relative;background:linear-gradient(110deg,var(--green-950),var(--green-800));color:#fff;padding:52px 0;overflow:hidden}
.cta-band::after{content:"";position:absolute;right:-80px;top:-130px;width:420px;height:420px;border:1px solid rgba(255,255,255,.08);border-radius:50%;box-shadow:0 0 0 45px rgba(255,255,255,.025),0 0 0 90px rgba(255,255,255,.02)}
.cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:30px}
.cta-inner h2{font-family:Georgia,"Times New Roman",serif;font-size:35px;margin:0 0 5px}
.cta-inner p{margin:0;color:rgba(255,255,255,.72)}

.contact-hero .hero-content{padding-bottom:75px}
.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:72px;align-items:start}
.contact-copy h2{font-family:Georgia,"Times New Roman",serif;font-size:36px;margin:0 0 16px}
.contact-copy p{color:#66736f;margin-bottom:28px}
.contact-list{display:grid;gap:18px;margin-top:34px}
.contact-item{display:flex;gap:14px;align-items:flex-start;color:#42524d;font-size:14px}
.contact-item svg{width:20px;height:20px;stroke:var(--green-800);flex:0 0 auto}
.contact-form{display:grid;grid-template-columns:1fr 1fr;gap:18px 16px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);padding:32px;border-radius:14px}
.field{display:grid;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-size:12px;font-weight:800;color:#53635e;text-transform:uppercase;letter-spacing:.04em}
.field input,.field textarea{width:100%;border:1px solid #cfd9d5;background:#fbfdfc;padding:13px 14px;border-radius:4px;color:var(--ink);outline:none;transition:.2s}
.field textarea{min-height:155px;resize:vertical}
.field input:focus,.field textarea:focus{border-color:var(--green-700);box-shadow:0 0 0 3px rgba(31,107,91,.10)}
.form-actions{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:18px}
.form-status{font-size:13px;color:var(--green-700);min-height:20px}
.form-status.is-error{color:#b3261e}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
/* Lets the hills meet the footer: the section's bottom padding would otherwise
   leave a white band beneath them. Double class beats the mobile .section rule. */
.section.section-flush{padding-bottom:0}
.contact-hills{height:160px;background:#f6faf8 url('../images/hills.svg') center bottom/cover no-repeat;margin-top:36px}

.site-footer{background:var(--green-900);color:#fff}
.footer-inner{min-height:94px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.footer-brand{display:flex;align-items:center;gap:12px;font-size:12px;color:rgba(255,255,255,.8)}
.footer-mark{width:34px;height:34px;border:1px solid rgba(255,255,255,.6);border-radius:50%;display:grid;place-items:center}
.footer-mark svg{width:19px;height:19px;stroke:#fff}
.socials{display:flex;gap:12px}
.socials a{width:34px;height:34px;border:1px solid rgba(255,255,255,.3);border-radius:50%;display:grid;place-items:center;transition:.2s}
.socials a:hover{background:#fff;color:var(--green-900)}
.socials svg{width:16px;height:16px;fill:currentColor}
.footer-credit{border-top:1px solid rgba(255,255,255,.10)}
.footer-credit-inner{padding:13px 0;text-align:center;font-size:11px;letter-spacing:.03em;color:rgba(255,255,255,.42)}
.footer-credit a{color:rgba(255,255,255,.6);border-bottom:1px solid rgba(255,255,255,.18);transition:color .2s ease,border-color .2s ease}
.footer-credit a:hover{color:#fff;border-bottom-color:rgba(255,255,255,.5)}


.detail-hero{background:linear-gradient(180deg,var(--green-100),#fff);border-bottom:1px solid var(--line);padding:58px 0 62px}
.detail-hero-inner{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:56px;align-items:center}
.detail-hero figure{margin:0;border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.detail-hero img{width:100%;height:340px;object-fit:cover}
.detail-hero h1{font-family:Georgia,"Times New Roman",serif;font-size:clamp(34px,4.4vw,54px);line-height:1.05;margin:0 0 20px;letter-spacing:-.01em}
.detail-hero .lede{color:#54645f;font-size:17px;margin:0}
.breadcrumb{display:flex;align-items:center;gap:9px;font-size:11px;text-transform:uppercase;letter-spacing:.16em;font-weight:800;color:var(--green-700);margin-bottom:16px}
.breadcrumb span{color:var(--muted)}
.breadcrumb a:hover{color:var(--green-950)}

.detail-body{padding:72px 0 64px}
.detail-prose{max-width:840px}
.detail-prose p{font-size:17px;color:#4c5b56;margin:0 0 24px}
.detail-prose p:last-child{margin-bottom:0}
.detail-prose h2{font-family:Georgia,"Times New Roman",serif;font-size:26px;margin:0 0 20px}
.detail-list{list-style:none;margin:0 0 30px;padding:0;display:grid;gap:15px;max-width:840px}
.detail-list li{position:relative;padding-left:36px;color:#4c5b56;font-size:16px}
.detail-list li::before{content:"";position:absolute;left:0;top:4px;width:18px;height:18px;border-radius:50%;background:var(--green-100);border:1px solid var(--green-200)}
.detail-list li::after{content:"";position:absolute;left:6px;top:8px;width:5px;height:9px;border:solid var(--green-700);border-width:0 2px 2px 0;transform:rotate(45deg)}

.detail-pager{border-top:1px solid var(--line)}
.detail-pager-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:26px 0;font-size:12px;text-transform:uppercase;letter-spacing:.08em;font-weight:800}
.detail-pager a{color:var(--green-800);transition:color .2s ease}
.detail-pager a:hover{color:var(--green-950)}
.pager-links{display:flex;align-items:center;gap:10px;color:#b8c4c0}
@media (max-width:900px){
  .detail-hero-inner{grid-template-columns:1fr;gap:32px}.detail-hero img{height:280px}.detail-hero{padding:42px 0 48px}
  .utility-inner{grid-template-columns:1fr;gap:6px;padding:16px 0}.logo{max-width:290px}.utility-meta{justify-content:flex-start;flex-wrap:wrap;gap:12px 24px}.nav-inner{justify-content:flex-start}.menu-toggle{display:block}.nav-links{position:absolute;top:58px;left:-20px;right:-20px;background:#fff;box-shadow:0 16px 28px rgba(18,48,40,.12);display:none;flex-direction:column;gap:0;padding:6px 20px 14px}.nav-links.open{display:flex}.nav-links a{width:100%;padding:16px 0;border-bottom:1px solid var(--line)}
  .hero{min-height:500px}.hero-content{width:min(610px,92%)}.hero::before{background:linear-gradient(90deg,rgba(7,37,31,.85),rgba(8,49,40,.32))}
  .approach-grid,.service-grid{grid-template-columns:1fr}.approach-card + .approach-card{border-left:0;border-top:1px solid var(--line)}.service-card{display:grid;grid-template-columns:240px 1fr}.service-card img{height:100%;min-height:260px}.service-card .service-icon{margin-top:0}
  .contact-layout{grid-template-columns:1fr;gap:42px}.cta-inner{align-items:flex-start;flex-direction:column}
}

@media (max-width:620px){
  .hero-contact{background-image:url('../images/hero-contact-mobile.jpg')}
  .services-hero::after{background-image:url('../images/hero-services-mobile.jpg')}
  .detail-hero img{height:210px}.detail-body{padding:52px 0 44px}.detail-prose p,.detail-list li{font-size:15px}.detail-pager-inner{align-items:flex-start;flex-direction:column;gap:12px}
  .hero-home{background-image:url('../images/home-hero-mobile.jpg')}
  .container{width:min(100% - 28px,var(--max))}.utility-meta{font-size:10px}.utility-meta span:first-child{display:none}.logo{max-width:250px}.hero{min-height:470px}.hero-content{padding:66px 0 95px}.hero h1{font-size:47px}.hero p{font-size:15px}.hero-swoop{height:80px;bottom:-42px}.section{padding:64px 0}.section-copy{font-size:15px}.service-card{display:block}.service-card img{height:210px}.contact-form{grid-template-columns:1fr;padding:22px}.field.full,.form-actions{grid-column:auto}.form-actions{align-items:flex-start;flex-direction:column}.services-hero{min-height:420px}.services-hero::before{background:rgba(255,255,255,.82)}.footer-inner{padding:22px 0;align-items:flex-start;flex-direction:column}.contact-hills{height:110px}
}
