:root{
  --bg:#f6f2ec;
  --sand:#e8dfd6;
  --taupe:#8f827a;
  --sage:#9faa96;
  --green:#4c5a53;
  --green-soft:rgba(76,90,83,.08);
  --text:#403a36;
  --muted:#706762;
  --white:#fffdf9;
  --border:rgba(64,58,54,.11);
  --border-strong:rgba(64,58,54,.19);
  --shadow:0 20px 60px rgba(64,58,54,.08);
  --shadow-soft:0 14px 36px rgba(64,58,54,.055);
  --radius:0px;
  --radius-sm:0px;
  --container:min(1360px, calc(100vw - 72px));
  --content-wide:1240px;
  --header-height:84px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#f5f1ec;
  color:var(--text);
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:300;
  line-height:1.72;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
body.menu-open{overflow:hidden}
img{max-width:100%;display:block;border-radius:0}
a{color:inherit;text-decoration:none}
p{margin:0 0 1rem;color:var(--muted)}
p:last-child{margin-bottom:0}
h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  line-height:1.08;
  margin:0 0 1rem;
  color:var(--text);
  letter-spacing:.015em;
}
h1{font-size:clamp(2.8rem,5.4vw,4.9rem);max-width:22ch}
h2{font-size:clamp(2.15rem,3.8vw,3.3rem);max-width:24ch}
h3{font-size:clamp(1.1rem,1.8vw,1.45rem)}
ul{padding-left:1.15rem;margin:1rem 0 0;color:var(--muted)}
li+li{margin-top:.5rem}
.container{width:var(--container);margin:auto}
.narrow{max-width:1040px}
.center{text-align:center}
.eyebrow{
  display:inline-block;
  font-size:.73rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--taupe);
  margin-bottom:1.1rem;
}
.lead{font-size:1.1rem;color:var(--green);font-weight:400}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(248,244,239,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(58,53,50,.08);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background:rgba(248,244,239,.97);
  box-shadow:0 8px 26px rgba(58,53,50,.06);
  border-bottom-color:rgba(58,53,50,.12);
}
.header-inner{
  min-height:var(--header-height);
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:18px;
}
.brand{display:flex;flex-direction:column;gap:9px;min-width:340px;padding:12px 0}
.brand-mark{
  font-family:'Cormorant SC','Cormorant Garamond',serif;
  font-size:clamp(1.9rem,2.4vw,2.95rem);
  line-height:1;
  letter-spacing:.035em;
}
.brand-sub{
  font-size:.66rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--taupe);
  white-space:nowrap;
}
.main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(10px,1.05vw,18px);
  min-width:0;
  font-size:.78rem;
  letter-spacing:.04em;
  text-transform:none;
  white-space:nowrap;
}
.main-nav a{position:relative;color:var(--text)}
.main-nav a:not(.btn):not(.lang-switch)::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:1px;
  background:#9f9184;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{transform:scaleX(1)}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--border);
  background:rgba(255,253,249,.9);
  color:var(--text);
  font-size:1.2rem;
}
.lang-switch{
  padding:.34rem .62rem;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:.78rem;
  background:rgba(255,253,249,.8);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.35rem;
  border-radius:999px;
  background:#9f9184;
  color:var(--white);
  border:1px solid #9f9184;
  font-size:.86rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:400;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft)}
.btn-outline{background:transparent;color:var(--text);border-color:var(--border-strong)}
.btn-outline:hover{background:rgba(255,255,255,.45)}
.btn-sm{padding:.66rem .92rem;font-size:.72rem}
.hero-home{
  min-height:calc(92vh - 84px);
  background-size:cover;
  background-position:center center;
  display:grid;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero-home::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(245,241,236,.82) 6%, rgba(245,241,236,.54) 44%, rgba(245,241,236,.24) 72%, rgba(245,241,236,.12) 100%);
}
.hero-content{position:relative;z-index:1;padding:92px 0 118px;max-width:1280px;width:100%;text-align:center;margin:0 auto}
.hero-copy{font-size:1rem;max-width:980px;margin:0 auto 2rem;color:#5b534e;letter-spacing:.06em;text-transform:uppercase}
.overlap-cards{margin-top:-68px;position:relative;z-index:4}
.card-grid{display:grid;gap:24px}
.card-grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.card-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.intro-card,.benefit-card,.fee-card,.service-group,.service-detail,.contact-form,.timeline-item,.step{
  background:rgba(255,253,249,.74);
  border:1px solid rgba(58,53,50,.08);
  border-radius:0;
  padding:30px;
  box-shadow:none;
  backdrop-filter:none;
}
.intro-card{min-height:100%}
.intro-card h3,.benefit-card h3,.service-item h3,.fee-card h2{margin-bottom:.35rem}
.section{padding:110px 0;position:relative}
.section::before{content:'';position:absolute;left:0;right:0;top:0;height:1px;background:linear-gradient(90deg, transparent, rgba(58,53,50,.08), transparent)}
.soft{background:linear-gradient(180deg, rgba(232,223,214,.36), rgba(232,223,214,0))}
.accent{background:linear-gradient(180deg, rgba(159,170,150,.14), rgba(159,170,150,0))}
.benefits-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.benefit-card{padding:26px;min-height:180px}
.split{display:grid;grid-template-columns:1.08fr .92fr;gap:72px;align-items:center}
.split-visual{grid-template-columns:1fr 1.08fr}
.split img{box-shadow:none}
.service-groups,.service-stack,.timeline{display:grid;gap:20px}
 .service-group{
  display:grid;
  grid-template-columns:250px 1.2fr 1.1fr;
  gap:26px;
  align-items:start;
  padding:38px 32px;
}
.service-group-head{padding-top:6px}
.service-item{padding-left:30px;border-left:1px solid var(--border);min-width:0}
.service-detail{display:grid;grid-template-columns:210px 1fr;gap:40px}
.service-label,.timeline-number,.step span{
  font-size:.74rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--taupe);
  display:block;
  margin-bottom:12px;
}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:24px}
.steps-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.step h3{margin-bottom:.55rem}
.timeline-item{display:grid;grid-template-columns:100px 1fr;gap:24px}
.actions{margin-top:28px}
.hero-page{padding:130px 0 42px}
.prose{max-width:740px}
.contact-form{padding:34px}
.field{display:grid;gap:8px;margin-bottom:18px}
.field label{font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;color:var(--taupe)}
.field input,.field select,.field textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid rgba(58,53,50,.12);
  background:#fffefb;
  color:var(--text);
  font:inherit;
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:rgba(47,93,80,.45);
  box-shadow:0 0 0 4px rgba(47,93,80,.08);
}
.field textarea{min-height:170px;resize:vertical}
.contact-aside{display:grid;gap:18px}
.form-note{font-size:.9rem;color:var(--taupe);margin-top:12px}
.text-link{color:var(--green);font-weight:500;letter-spacing:.06em;text-transform:uppercase;font-size:.82rem}
.text-link:hover{text-decoration:underline}
.hp{position:absolute;left:-9999px;opacity:0;pointer-events:none}
.cta-band{background:linear-gradient(180deg, rgba(232,223,214,.86), rgba(232,223,214,.62))}
.site-footer{padding:38px 0 62px;border-top:1px solid var(--border);background:#f5f1ec}
.footer-grid{display:flex;justify-content:space-between;gap:18px;align-items:flex-end}
.footer-brand{font-size:1.7rem}

[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .75s ease, transform .75s ease}
[data-reveal].visible{opacity:1;transform:translateY(0)}
[data-reveal="left"]{transform:translateX(-26px)}
[data-reveal="right"]{transform:translateX(26px)}
[data-reveal="left"].visible,[data-reveal="right"].visible{transform:translateX(0)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important;animation:none !important}
  [data-reveal]{opacity:1;transform:none}
}

@media (max-width: 1160px){
  .header-inner{grid-template-columns:auto auto;justify-content:space-between}
  .main-nav{grid-column:1/-1;justify-content:flex-start;padding-bottom:16px}
}
@media (max-width: 1080px){
  .benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .steps-grid,.card-grid.three,.split,.split-visual,.service-group,.service-detail{grid-template-columns:1fr}
  .service-item{padding-left:0;border-left:none;border-top:1px solid var(--border);padding-top:18px}
  .service-group{gap:12px}
}
@media (max-width: 820px){
  :root{--container:min(100vw - 28px, 100vw - 28px)}
  .brand{min-width:auto}
  .brand-sub{display:none}
  .header-inner{grid-template-columns:1fr auto auto;gap:14px}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .main-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(251,248,244,.97);
    border-bottom:1px solid var(--border);
    padding:18px 22px 24px;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    white-space:normal;
  }
  .main-nav.open{display:flex}
  .main-nav .btn{margin-top:4px}
  .hero-content{padding:82px 0 104px}
  .overlap-cards{margin-top:-40px}
  .section{padding:88px 0}
  .footer-grid,.timeline-item{display:grid;grid-template-columns:1fr}
  .timeline-item{gap:10px}
}
@media (max-width: 640px){
  h1{font-size:clamp(2.55rem,12vw,3.6rem)}
  h2{font-size:clamp(2rem,10vw,2.8rem)}
  .benefits-grid,.card-grid.two,.steps-grid{grid-template-columns:1fr}
  .intro-card,.benefit-card,.fee-card,.service-group,.service-detail,.contact-form,.timeline-item,.step{padding:24px}
  .hero-home::before{background:linear-gradient(180deg, rgba(246,242,236,.84) 0%, rgba(246,242,236,.52) 62%, rgba(246,242,236,.18) 100%)}
}


.site-header .container{position:relative}
.brand-sub{position:relative;padding-top:8px}
.brand-sub::before{content:'';position:absolute;left:50%;top:0;transform:translateX(-50%);width:min(520px,100%);height:1px;background:rgba(64,58,54,.12)}
.main-nav{align-self:start;padding-top:8px}
.main-nav .btn{margin-left:8px}
.hero-home{border-top:1px solid rgba(64,58,54,.08)}
.hero-content h1{margin:0 auto 1.25rem;max-width:15.6ch;font-size:clamp(3.25rem,6vw,5.6rem);line-height:.98;text-wrap:balance}
.hero-content .eyebrow{display:none}
.hero-home .btn{background:#9d9084;border-color:#9d9084}
.hero-home .btn:hover{background:#8d8177;color:var(--white)}
.card-grid.three{gap:0;border-top:1px solid rgba(64,58,54,.08);border-left:1px solid rgba(64,58,54,.08);border-right:1px solid rgba(64,58,54,.08);background:rgba(255,253,249,.56)}
.intro-card{padding:34px 30px;position:relative;min-height:188px;text-align:center;border-right:1px solid rgba(64,58,54,.08);border-bottom:1px solid rgba(64,58,54,.08)}
.intro-card::before{display:block;font-size:2rem;line-height:1;margin-bottom:16px;color:#a3978d}
.intro-card:nth-child(1)::before{content:'◌'}
.intro-card:nth-child(2)::before{content:'⟡'}
.intro-card:nth-child(3)::before{content:'⌘'}
.intro-card h3{font-size:1.35rem;letter-spacing:.03em}
.intro-card p{font-size:.95rem}
.section::before{background:linear-gradient(90deg, transparent, rgba(64,58,54,.06), transparent)}
.benefit-card,.fee-card,.service-group,.service-detail,.contact-form,.timeline-item,.step{background:rgba(255,253,249,.42)}
.btn-outline{background:transparent;border-color:rgba(64,58,54,.18)}
.btn-outline:hover{background:rgba(159,145,132,.08)}
.text-link{color:#6d635c}
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .8s ease, transform .8s ease}
[data-reveal="left"]{transform:translateX(-18px)}
[data-reveal="right"]{transform:translateX(18px)}
.hero-home::after{content:'';position:absolute;inset:0;background:rgba(255,255,255,.06);animation:heroBreath 9s ease-in-out infinite}
@keyframes heroBreath{0%,100%{opacity:.25}50%{opacity:.08}}
@media (max-width: 1180px){
  .header-inner{grid-template-columns:auto auto;gap:14px}
  .brand{min-width:270px}
  .main-nav{gap:10px;font-size:.74rem}
  .main-nav .btn{display:none}
}
@media (max-width: 900px){
  :root{--header-height:74px;--container:min(100vw - 28px, 100%)}
  .header-inner{grid-template-columns:1fr auto}
  .brand{min-width:0;gap:5px;padding:10px 0}
  .brand-mark{font-size:2.05rem}
  .brand-sub{font-size:.56rem;letter-spacing:.22em}
  .brand-sub::before{width:100%}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .main-nav{position:fixed;inset:74px 14px auto 14px;display:grid;gap:14px;padding:18px;background:rgba(248,244,239,.98);border:1px solid rgba(64,58,54,.1);box-shadow:0 16px 34px rgba(64,58,54,.09);transform:translateY(-10px);opacity:0;pointer-events:none;transition:opacity .25s ease,transform .25s ease}
  .main-nav.open{opacity:1;transform:translateY(0);pointer-events:auto}
  .main-nav .btn{display:inline-flex;margin-left:0}
  .hero-content{padding:82px 0 104px}
  .card-grid.three,.benefits-grid,.steps-grid,.split,.split-visual,.service-group,.service-detail,.timeline-item,.footer-grid{grid-template-columns:1fr;display:grid}
  .intro-card{border-right:none}
}


.hero-content h1{max-width:16ch;font-size:clamp(3.2rem,6vw,5.4rem);line-height:.98;margin:0 auto 1.4rem;}
.section .container, .cta-band .container{max-width:var(--content-wide);}
.section .container.narrow, .cta-band .container.narrow{max-width:920px;}
.split > div, .service-group, .benefits-grid, .steps-grid{min-width:0;}
.benefit-card p, .step p, .service-item p, .intro-card p{max-width:none;}
.benefits-grid{grid-template-columns:repeat(4,minmax(220px,1fr));gap:22px;}
.steps-grid{grid-template-columns:repeat(3,minmax(240px,1fr));gap:28px;}
.hero-home .btn{margin-top:.35rem;}
@media (max-width: 1280px){
  :root{--container:min(100vw - 48px, 1240px);--content-wide:min(1080px, calc(100vw - 48px));}
}
@media (max-width: 1024px){
  .hero-content{max-width:860px;padding:96px 0 122px;}
  .hero-content h1{font-size:clamp(2.9rem,5vw,4.5rem);max-width:17ch;}
  .benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .steps-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

.hero-content > *{position:relative;z-index:1}
.section .center h2,
.section .narrow.center h2{max-width:15ch;margin-left:auto;margin-right:auto;text-wrap:balance}
.section .center p,
.section .narrow.center p{max-width:980px;margin-left:auto;margin-right:auto}
.section .center p + p{margin-top:1.15rem}
.split-visual > div:last-child > h2{max-width:14ch}
.service-group-head .eyebrow{margin-bottom:0;line-height:1.8}
.service-item h3{font-size:clamp(1.7rem,2.25vw,2.25rem);line-height:1.02;margin-bottom:.55rem}
.service-item p{font-size:1.06rem;line-height:1.75;max-width:34ch}
.cta-band .narrow{max-width:1120px}
.cta-band h2{max-width:none;font-size:clamp(3rem,4.8vw,4.5rem);margin:0 auto 1rem;text-wrap:balance}
.cta-band p{max-width:980px;margin:0 auto 2rem;font-size:1.04rem;line-height:1.9}
.cta-band .btn{min-width:312px}
@media (min-width: 1081px){
  .split-visual{grid-template-columns:minmax(420px,.9fr) minmax(680px,1.2fr);gap:70px}
  .split-visual > div:first-child img{width:100%;min-height:760px;object-fit:cover}
}

/* V6 refinements */
.desktop-break{display:block}
.hero-content h1{
  max-width:20ch;
  font-size:clamp(3.3rem,5.7vw,5.35rem);
  line-height:.95;
  margin:0 auto 1.5rem;
}
.hero-copy{
  max-width:880px;
  font-size:1rem;
  line-height:1.75;
}
.intro-statement h2,
.section .narrow.center.intro-statement h2{
  max-width:18.5ch;
  font-size:clamp(2.55rem,4.4vw,4.2rem);
  line-height:1.02;
  margin-bottom:1.55rem;
}
.intro-statement p{
  max-width:1060px;
  font-size:1.02rem;
  line-height:1.9;
}

.section-services-home .container{max-width:1280px}
.services-home-layout{
  grid-template-columns:minmax(420px,.88fr) minmax(700px,1.12fr);
  gap:74px;
  align-items:start;
}
.services-home-image img{
  width:100%;
  min-height:820px;
  object-fit:cover;
}
.services-home-copy h2{
  max-width:15ch;
  font-size:clamp(2.8rem,4.7vw,4.55rem);
  line-height:1.03;
  margin-bottom:2rem;
}
.services-home-panels{
  display:grid;
  gap:20px;
}
.services-home-panel{
  display:grid;
  grid-template-columns:240px 1fr;
  border:1px solid rgba(64,58,54,.08);
  background:rgba(255,253,249,.48);
}
.services-home-label{
  padding:34px 28px;
  border-right:1px solid rgba(64,58,54,.08);
  display:flex;
  align-items:flex-start;
}
.services-home-label span{
  display:block;
  font-size:.76rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--taupe);
  line-height:1.7;
}
.services-home-items{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.service-card-home{
  padding:34px 30px 32px;
  min-width:0;
}
.service-card-home + .service-card-home{
  border-left:1px solid rgba(64,58,54,.08);
}
.service-card-home h3{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(1.95rem,2.2vw,2.45rem);
  line-height:1.02;
  margin:0 0 .8rem;
  max-width:9.8ch;
}
.service-card-home p{
  margin:0;
  max-width:none;
  font-size:1rem;
  line-height:1.85;
}
.section-services-home .actions{margin-top:30px}

.cta-band .narrow{max-width:1200px}
.cta-band h2{
  max-width:11ch;
  font-size:clamp(3rem,4.6vw,4.35rem);
  line-height:1.02;
}
.cta-band p{
  max-width:1120px;
}

@media (max-width: 1180px){
  .hero-content h1{max-width:18ch;font-size:clamp(3rem,5vw,4.6rem)}
  .services-home-layout{grid-template-columns:1fr;gap:40px}
  .services-home-image img{min-height:540px;max-height:640px}
  .services-home-copy h2{max-width:none}
}
@media (max-width: 980px){
  .desktop-break{display:none}
  .hero-content h1{max-width:15ch;font-size:clamp(2.8rem,7vw,4.2rem);line-height:.98}
  .intro-statement h2,
  .section .narrow.center.intro-statement h2{max-width:12ch;font-size:clamp(2.3rem,6vw,3.4rem)}
  .services-home-panel{grid-template-columns:1fr}
  .services-home-label{border-right:none;border-bottom:1px solid rgba(64,58,54,.08);padding:24px 24px 18px}
  .services-home-items{grid-template-columns:1fr}
  .service-card-home + .service-card-home{border-left:none;border-top:1px solid rgba(64,58,54,.08)}
}
@media (max-width: 640px){
  .hero-copy{font-size:.92rem;letter-spacing:.05em}
  .services-home-image img{min-height:420px}
  .service-card-home{padding:26px 22px}
  .service-card-home h3{max-width:none;font-size:clamp(1.7rem,8vw,2.15rem)}
  .cta-band .btn{min-width:0;width:100%}
}


/* v8 home services redesign */
.container-wide{max-width:1460px}
.section-services-home{overflow:hidden}
.section-services-home .container{max-width:1460px}
.services-home-intro{max-width:1240px;margin:0 0 42px}
.services-home-intro h2{max-width:22ch;font-size:clamp(2.65rem,3.75vw,4.6rem);line-height:1.04;margin-bottom:1rem}
.services-home-lead{max-width:78ch;font-size:1.03rem;line-height:1.9;margin:0;color:var(--taupe)}
.services-home-rows{display:grid;gap:18px}
.services-row{display:grid;grid-template-columns:minmax(240px,280px) minmax(0,1fr);border:1px solid rgba(64,58,54,.08);background:rgba(255,253,249,.6)}
.services-row-label{padding:34px 30px;border-right:1px solid rgba(64,58,54,.08);display:flex;align-items:flex-start}
.services-row-label span{display:block;font-size:.76rem;letter-spacing:.32em;text-transform:uppercase;color:var(--taupe);line-height:1.8}
.services-row-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.section-services-home .service-card-home{padding:34px 36px 34px;min-width:0}
.section-services-home .service-card-home + .service-card-home{border-left:1px solid rgba(64,58,54,.08)}
.section-services-home .service-card-home h3{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,2.1vw,2.55rem);line-height:1.02;margin:0 0 .75rem;max-width:12ch}
.section-services-home .service-card-home p{margin:0;max-width:34ch;font-size:1.01rem;line-height:1.82}
.section-services-home .actions{margin-top:30px}
@media (max-width: 1180px){
  .services-home-intro h2{max-width:none}
  .services-row{grid-template-columns:220px minmax(0,1fr)}
  .section-services-home .service-card-home{padding:30px 28px}
}
@media (max-width: 980px){
  .services-home-intro{margin-bottom:30px}
  .services-row{grid-template-columns:1fr}
  .services-row-label{border-right:none;border-bottom:1px solid rgba(64,58,54,.08);padding:24px 24px 18px}
  .services-row-grid{grid-template-columns:1fr}
  .section-services-home .service-card-home + .service-card-home{border-left:none;border-top:1px solid rgba(64,58,54,.08)}
}
@media (max-width: 640px){
  .section-services-home .service-card-home{padding:24px 22px}
  .section-services-home .service-card-home h3{max-width:none;font-size:clamp(1.75rem,8vw,2.15rem)}
  .services-home-lead{font-size:.98rem;line-height:1.8}
}


/* V9 home services refinement */
.section-services-home{overflow:hidden}
.section-services-home .container{max-width:1360px}
.services-home-shell{display:grid;grid-template-columns:minmax(380px,.88fr) minmax(0,1.12fr);gap:56px;align-items:start}
.services-home-visual img{width:100%;display:block;min-height:760px;object-fit:cover;border-radius:0}
.services-home-content{min-width:0;padding-top:16px}
.services-home-content h2{max-width:13ch;font-size:clamp(2.9rem,4.7vw,4.85rem);line-height:1.02;margin:0 0 1.1rem}
.services-home-lead{max-width:66ch;font-size:1.02rem;line-height:1.9;margin:0 0 2rem;color:var(--taupe)}
.service-family{border:1px solid rgba(64,58,54,.08);background:rgba(255,253,249,.56);margin-bottom:16px}
.service-family-head{padding:18px 24px;border-bottom:1px solid rgba(64,58,54,.08)}
.service-family-head span{font-size:.75rem;letter-spacing:.32em;text-transform:uppercase;color:var(--taupe);line-height:1.8}
.service-family-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.section-services-home .service-card-home{padding:28px 28px 30px;min-width:0}
.section-services-home .service-card-home + .service-card-home{border-left:1px solid rgba(64,58,54,.08)}
.section-services-home .service-card-home h3{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,2.2vw,2.55rem);line-height:1.02;margin:0 0 .8rem;max-width:11ch}
.section-services-home .service-card-home p{margin:0;max-width:30ch;font-size:1rem;line-height:1.8;color:var(--taupe-dark)}
.section-services-home .actions{margin-top:28px}
@media (max-width:1180px){
  .services-home-shell{grid-template-columns:1fr;gap:32px}
  .services-home-visual img{min-height:500px;max-height:640px}
  .services-home-content h2{max-width:none}
  .services-home-lead{max-width:none}
}
@media (max-width:760px){
  .service-family-grid{grid-template-columns:1fr}
  .section-services-home .service-card-home + .service-card-home{border-left:none;border-top:1px solid rgba(64,58,54,.08)}
  .section-services-home .service-card-home p{max-width:none}
}
