/* =========================================================
   PRIMEKEY MANAGEMENT — DESIGN SYSTEM
   Editorial, cinematic, "clean boujee" home-care brand
   ========================================================= */

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

:root{
  /* ---- color tokens ---- */
  --ivory:        #F6F2EA;
  --ivory-deep:    #EFE9DC;
  --charcoal:      #20241F;
  --sage:          #6E7B5C;
  --sage-deep:     #4B5740;
  --taupe:         #C9BFA3;
  --white:         #FFFEFB;
  --line:          rgba(32,36,31,0.12);

  /* ---- type tokens ---- */
  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;

  --fs-hero:   clamp(2.8rem, 7vw, 6.4rem);
  --fs-h1:     clamp(2.2rem, 4.5vw, 3.6rem);
  --fs-h2:     clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3:     clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:   clamp(0.98rem, 1.1vw, 1.05rem);
  --fs-small:  0.82rem;

  --maxw: 1320px;
  --pad: clamp(1.25rem, 4vw, 4rem);

  --ease: cubic-bezier(.22,.7,.2,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ivory);
  color:var(--charcoal);
  font-family:var(--body);
  font-size:var(--fs-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;border:none;background:none;cursor:pointer;}
h1,h2,h3,h4{font-family:var(--display);font-weight:500;margin:0;line-height:1.05;letter-spacing:-0.01em;}
p{margin:0;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}
}

:focus-visible{outline:2px solid var(--sage-deep);outline-offset:3px;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad);}
.eyebrow{
  font-family:var(--body);
  font-size:var(--fs-small);
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--sage-deep);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.eyebrow::before{content:'';width:18px;height:1px;background:var(--sage-deep);display:inline-block;}

.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:0.95rem 1.85rem;
  border-radius:100px;
  font-size:0.92rem;font-weight:600;
  font-family:var(--body);
  letter-spacing:0.02em;
  transition:transform .45s var(--ease), background .3s, color .3s;
  position:relative;
}
.btn-primary{background:var(--charcoal);color:var(--ivory);}
.btn-primary:hover{background:var(--sage-deep);}
.btn-ghost{border:1px solid var(--line);color:var(--charcoal);}
.btn-ghost:hover{border-color:var(--charcoal);}
.btn-light{background:var(--ivory);color:var(--charcoal);}
.btn-light:hover{background:var(--white);}
.magnetic{will-change:transform;}

/* ===================== HEADER ===================== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.4rem var(--pad);
  transition:background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
  mix-blend-mode:normal;
}
.site-header.scrolled{
  background:rgba(246,242,234,0.86);
  backdrop-filter:blur(14px);
  padding:0.9rem var(--pad);
  border-bottom:1px solid var(--line);
}
.logo{
  font-family:var(--display);
  font-size:1.3rem;
  letter-spacing:0.01em;
  font-weight:500;
  display:flex;align-items:center;
}
.logo-img{height:42px;width:auto;display:block;transition:height .4s var(--ease);}
.site-header.scrolled .logo-img{height:34px;}
.footer-logo-img{height:48px;width:auto;display:block;margin-bottom:1rem;}
.logo span{color:var(--sage-deep);font-style:italic;}
.nav-desktop{display:flex;gap:2.4rem;align-items:center;}
.nav-desktop a{
  font-size:0.92rem;font-weight:500;position:relative;padding:.3rem 0;
}
.nav-desktop a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--charcoal);
  transition:width .35s var(--ease);
}
.nav-desktop a:hover::after,.nav-desktop a.active::after{width:100%;}
.header-actions{display:flex;align-items:center;gap:1rem;}
.menu-toggle{display:none;width:26px;height:18px;flex-direction:column;justify-content:space-between;}
.menu-toggle span{display:block;height:1.5px;background:var(--charcoal);width:100%;}

.mobile-nav{
  position:fixed;inset:0;background:var(--charcoal);color:var(--ivory);
  z-index:999;display:flex;flex-direction:column;justify-content:center;gap:1.8rem;padding:2rem var(--pad);
  transform:translateY(-100%);transition:transform .55s var(--ease);
}
.mobile-nav.open{transform:translateY(0);}
.mobile-nav a{font-family:var(--display);font-size:2.2rem;}
.mobile-nav .close-mobile{position:absolute;top:1.4rem;right:var(--pad);font-size:1.6rem;color:var(--ivory);}

@media (max-width:880px){
  .nav-desktop{display:none;}
  .menu-toggle{display:flex;}
  .header-actions .btn-ghost{display:none;}
}

/* ===================== HERO ===================== */
.hero{
  position:relative;min-height:100vh;display:flex;flex-direction:column;justify-content:flex-end;
  padding:8rem var(--pad) 4rem;
  overflow:hidden;
  background:var(--charcoal);
}
.hero-media{position:absolute;inset:0;z-index:0;}
.hero-media img{width:100%;height:100%;object-fit:cover;opacity:0.78;transform:scale(1.06);}
.hero-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(20,24,18,0.25) 0%, rgba(20,24,18,0.15) 40%, rgba(18,21,16,0.85) 100%);
}
.hero-content{position:relative;z-index:2;color:var(--ivory);max-width:1100px;}
.hero-eyebrow{color:var(--taupe);}
.hero-eyebrow::before{background:var(--taupe);}
.hero h1{
  font-size:var(--fs-hero);color:var(--ivory);margin:1.1rem 0 1.4rem;
  max-width:14ch;
}
.hero h1 em{font-style:italic;color:var(--taupe);font-weight:400;}
.hero-sub{max-width:46ch;color:rgba(246,242,234,0.86);font-size:1.08rem;margin-bottom:2.2rem;}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;}
.hero-scroll{
  position:absolute;right:var(--pad);bottom:2.2rem;z-index:2;color:var(--ivory);
  display:flex;align-items:center;gap:.6rem;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;
  writing-mode:vertical-rl;
}
.hero-line{width:1px;height:60px;background:rgba(246,242,234,.5);position:relative;overflow:hidden;}
.hero-line::after{content:'';position:absolute;top:0;left:0;width:100%;height:30%;background:var(--ivory);animation:lineDrop 2.6s var(--ease) infinite;}
@keyframes lineDrop{0%{transform:translateY(-100%);}100%{transform:translateY(330%);}}

/* ===================== GENERIC SECTION ===================== */
section{padding:7.5rem 0;position:relative;}
.section-head{max-width:740px;margin-bottom:3.5rem;}
.section-head h2{margin-top:1rem;}
.section-head p{margin-top:1.2rem;color:rgba(32,36,31,0.72);max-width:54ch;}
.split{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap;margin-bottom:3.5rem;}

.dark{background:var(--charcoal);color:var(--ivory);}
.dark .eyebrow, .dark .eyebrow::before{color:var(--taupe);background:var(--taupe);}
.dark h2,.dark h3{color:var(--ivory);}
.dark .section-head p{color:rgba(246,242,234,0.7);}

/* ===================== STATEMENT ===================== */
.statement{padding:6rem 0;}
.statement .wrap{max-width:1100px;}
.statement p{
  font-family:var(--display);font-weight:400;font-size:clamp(1.6rem,3.4vw,2.6rem);
  line-height:1.3;color:var(--charcoal);
}
.statement em{font-style:italic;color:var(--sage-deep);}

/* ===================== SERVICES GRID ===================== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);}
.service-card{
  background:var(--ivory);padding:2.6rem 2rem;position:relative;overflow:hidden;
  transition:background .4s;
}
.service-card:hover{background:var(--white);}
.service-card .num{font-family:var(--display);font-style:italic;color:var(--taupe);font-size:1.1rem;}
.service-card h3{margin-top:1.4rem;font-size:1.3rem;}
.service-card p{margin-top:.8rem;color:rgba(32,36,31,0.68);font-size:0.92rem;}
.service-card .arrow{position:absolute;right:1.6rem;top:2.6rem;font-size:1.2rem;opacity:0;transform:translate(-6px,6px);transition:all .35s var(--ease);}
.service-card:hover .arrow{opacity:1;transform:translate(0,0);}
@media (max-width:980px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:620px){.services-grid{grid-template-columns:1fr;}}

/* ===================== WHY / FEATURE LIST ===================== */
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.feature-list li{
  display:flex;gap:1.4rem;padding:1.6rem 0;border-top:1px solid var(--line);
}
.feature-list li:last-child{border-bottom:1px solid var(--line);}
.feature-list .tag{font-family:var(--display);font-style:italic;color:var(--sage-deep);min-width:2.4rem;}
.feature-list h4{font-size:1.1rem;margin-bottom:.4rem;}
.feature-list p{color:rgba(32,36,31,0.68);font-size:0.92rem;max-width:42ch;}
.feature-media{position:relative;border-radius:4px;overflow:hidden;}
.feature-media img{height:600px;object-fit:cover;}
@media (max-width:900px){.feature-row{grid-template-columns:1fr;}.feature-media img{height:380px;}}

/* ===================== BEFORE / AFTER SLIDER (SIGNATURE) ===================== */
.reveal-block{position:relative;width:100%;aspect-ratio:16/9;max-height:640px;overflow:hidden;border-radius:4px;cursor:grab;user-select:none;}
.reveal-block:active{cursor:grabbing;}
.reveal-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.reveal-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.reveal-img img{width:100%;height:100%;object-fit:cover;display:block;}
.reveal-before{z-index:1;}
.reveal-after{z-index:2;clip-path:inset(0 50% 0 0);}
.reveal-label{position:absolute;bottom:1.4rem;z-index:3;color:var(--ivory);font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;padding:.5rem 1rem;background:rgba(20,24,18,0.55);border-radius:100px;}
.reveal-label.before-l{left:1.4rem;}
.reveal-label.after-l{right:1.4rem;}
.reveal-handle{
  position:absolute;top:0;bottom:0;left:50%;z-index:4;width:2px;background:var(--ivory);
  transform:translateX(-1px);box-shadow:0 0 18px rgba(0,0,0,0.3);
}
.reveal-handle::after{
  content:'⟷';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:48px;height:48px;border-radius:50%;background:var(--ivory);color:var(--charcoal);
  display:flex;align-items:center;justify-content:center;font-size:1.1rem;
}
.before-after-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2.4rem;margin-top:3rem;}
.ba-caption{display:flex;justify-content:space-between;margin-top:1rem;font-size:.85rem;}
.ba-caption .room{font-weight:600;}
.ba-caption .loc{color:rgba(32,36,31,0.55);}

/* ===================== PROCESS ===================== */
.process-row{display:flex;gap:0;border-top:1px solid var(--line);}
.process-step{flex:1;padding:2.4rem 2rem 2.4rem 0;border-right:1px solid var(--line);position:relative;}
.process-step:last-child{border-right:none;}
.process-step .pnum{font-family:var(--display);font-style:italic;font-size:2.2rem;color:var(--taupe);}
.process-step h4{margin-top:1rem;font-size:1.1rem;}
.process-step p{margin-top:.6rem;font-size:.88rem;color:rgba(32,36,31,0.68);}
@media (max-width:900px){.process-row{flex-direction:column;}.process-step{border-right:none;border-bottom:1px solid var(--line);padding:2rem 0;}}

/* ===================== TESTIMONIALS ===================== */
.testi-track{display:flex;gap:2rem;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:1rem;}
.testi-track::-webkit-scrollbar{display:none;}
.testi-card{
  scroll-snap-align:start;min-width:min(440px,82vw);background:var(--white);border:1px solid var(--line);
  padding:2.4rem;border-radius:4px;
}
.testi-card .stars{color:var(--sage-deep);letter-spacing:.2em;font-size:.9rem;}
.testi-card p{margin-top:1.2rem;font-size:1.05rem;font-family:var(--display);font-weight:400;line-height:1.5;}
.testi-card .who{margin-top:1.4rem;font-size:.85rem;color:rgba(32,36,31,0.6);}

/* ===================== SERVICE AREAS ===================== */
.areas-list{display:flex;flex-wrap:wrap;gap:0.9rem;margin-top:2rem;}
.areas-list span{
  padding:.6rem 1.2rem;border:1px solid var(--line);border-radius:100px;font-size:.88rem;
}

/* ===================== FAQ ===================== */
.faq-item{border-top:1px solid var(--line);}
.faq-item:last-child{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;width:100%;text-align:left;
  padding:1.6rem 0;font-family:var(--display);font-size:1.1rem;color:var(--charcoal);
}
.faq-q .plus{font-size:1.4rem;font-family:var(--body);transition:transform .35s var(--ease);}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);}
.faq-a p{padding:0 0 1.6rem;color:rgba(32,36,31,0.7);max-width:60ch;}

/* ===================== FINAL CTA ===================== */
.final-cta{
  background:var(--charcoal);color:var(--ivory);padding:7rem var(--pad);text-align:center;border-radius:0;
}
.final-cta h2{color:var(--ivory);font-size:clamp(2rem,5vw,3.4rem);max-width:18ch;margin:0 auto 1.4rem;}
.final-cta p{color:rgba(246,242,234,0.75);max-width:42ch;margin:0 auto 2.2rem;}
.final-cta .ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}

/* ===================== FOOTER ===================== */
footer{background:var(--ivory-deep);padding:4.5rem var(--pad) 2rem;border-top:1px solid var(--line);}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:3rem;}
.footer-grid h5{font-family:var(--body);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--sage-deep);margin-bottom:1.1rem;font-weight:600;}
.footer-grid li{margin-bottom:.65rem;font-size:.92rem;}
.footer-grid li a:hover{color:var(--sage-deep);}
.footer-logo{font-family:var(--display);font-size:1.5rem;margin-bottom:1rem;}
.footer-tag{color:rgba(32,36,31,0.65);font-size:.9rem;max-width:30ch;margin-top:1rem;}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;margin-top:3.5rem;padding-top:1.6rem;
  border-top:1px solid var(--line);font-size:.8rem;color:rgba(32,36,31,0.55);
}
@media (max-width:880px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr;}}

/* ===================== WHATSAPP STICKY ===================== */
.sticky-actions{
  position:fixed;bottom:1.4rem;right:1.4rem;z-index:900;display:flex;flex-direction:column;gap:.8rem;align-items:flex-end;
}
.fab{
  width:54px;height:54px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.18);font-size:1.5rem;transition:transform .3s var(--ease);
}
.fab:hover{transform:scale(1.08);}
.sticky-quote{
  display:none;
}
@media (max-width:760px){
  .sticky-quote{
    display:flex;position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:899;
    background:var(--charcoal);color:var(--ivory);padding:1rem;border-radius:100px;justify-content:center;
    font-size:.92rem;font-weight:600;box-shadow:0 10px 30px rgba(0,0,0,0.25);
  }
}

/* ===================== PLACEHOLDER IMAGERY ===================== */
/* Swap any .ph element's background-image (or replace with <img>) for real brand photography. */
.ph{
  position:relative;width:100%;height:100%;overflow:hidden;
  background:linear-gradient(135deg, var(--ivory-deep) 0%, var(--taupe) 55%, var(--sage) 100%);
  display:flex;align-items:flex-end;
}
.ph::before{
  content:'';position:absolute;inset:0;z-index:1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.0), transparent 40%),
    linear-gradient(180deg, rgba(20,24,18,0) 50%, rgba(20,24,18,0.55) 100%);
}
.ph img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.ph .ph-label{
  position:relative;z-index:2;padding:1rem 1.2rem;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.92);
}
.ph.dark-ph{background:linear-gradient(135deg, #2b3025 0%, var(--sage-deep) 70%, #1b1f17 100%);}
.ph.dark-ph .ph-label{color:rgba(246,242,234,0.55);}

/* ===================== REVEAL ON SCROLL ===================== */
[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .9s var(--ease), transform .9s var(--ease);}
[data-reveal].in-view{opacity:1;transform:translateY(0);}

/* ===================== PAGE HERO (sub pages) ===================== */
.page-hero{
  padding:9.5rem var(--pad) 4rem;background:var(--ivory-deep);
}
.page-hero h1{font-size:var(--fs-h1);max-width:18ch;}
.page-hero p{margin-top:1.2rem;max-width:50ch;color:rgba(32,36,31,0.7);}
.breadcrumb{font-size:.82rem;color:rgba(32,36,31,0.55);margin-bottom:1rem;}
.breadcrumb a:hover{color:var(--sage-deep);}

/* ===================== GALLERY MASONRY ===================== */
.masonry{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;}
.masonry .item{position:relative;border-radius:4px;overflow:hidden;cursor:pointer;}
.masonry .item img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease);}
.masonry .item:hover img{transform:scale(1.06);}
.masonry .item.tall{grid-row:span 2;}
.masonry .item .tag{
  position:absolute;bottom:1rem;left:1rem;background:rgba(20,24,18,0.6);color:var(--ivory);
  padding:.45rem .9rem;border-radius:100px;font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
}
@media (max-width:900px){.masonry{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.masonry{grid-template-columns:1fr;}.masonry .item.tall{grid-row:auto;}}

.filter-bar{display:flex;gap:.7rem;flex-wrap:wrap;margin-bottom:2.6rem;}
.filter-btn{
  padding:.55rem 1.2rem;border:1px solid var(--line);border-radius:100px;font-size:.85rem;font-weight:500;
  transition:all .3s;
}
.filter-btn.active,.filter-btn:hover{background:var(--charcoal);color:var(--ivory);border-color:var(--charcoal);}

/* ===================== FORM (contact) ===================== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;}
.form-field{margin-bottom:1.4rem;}
.form-field label{display:block;font-size:.82rem;letter-spacing:.04em;margin-bottom:.5rem;color:rgba(32,36,31,0.7);}
.form-field input,.form-field select,.form-field textarea{
  width:100%;padding:.9rem 1rem;border:1px solid var(--line);background:var(--white);border-radius:3px;
  font-family:var(--body);font-size:0.95rem;color:var(--charcoal);transition:border-color .3s;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--sage-deep);outline:none;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;}
.contact-info-card{background:var(--charcoal);color:var(--ivory);padding:2.6rem;border-radius:4px;}
.contact-info-card h3{color:var(--ivory);}
.contact-info-card .row{display:flex;gap:1rem;padding:1.1rem 0;border-top:1px solid rgba(246,242,234,0.15);}
.contact-info-card .row:first-of-type{border-top:none;margin-top:1.6rem;}
.contact-info-card .row .lbl{min-width:6.5rem;color:var(--taupe);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;}
.map-embed{margin-top:2rem;border-radius:4px;overflow:hidden;border:1px solid var(--line);}
.map-embed iframe{width:100%;height:280px;border:0;display:block;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}.form-row{grid-template-columns:1fr;}}

/* ===================== ABOUT PAGE EXTRAS ===================== */
.value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;}
.value-card .num{font-family:var(--display);font-style:italic;font-size:1.6rem;color:var(--sage-deep);}
.value-card h4{margin-top:1rem;font-size:1.05rem;}
.value-card p{margin-top:.6rem;font-size:.88rem;color:rgba(32,36,31,0.68);}
@media (max-width:900px){.value-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.value-grid{grid-template-columns:1fr;}}

.team-strip{display:flex;gap:1.6rem;overflow-x:auto;padding-bottom:1rem;}
.team-card{min-width:240px;}
.team-card img{height:300px;width:100%;object-fit:cover;border-radius:4px;display:block;}
.team-card h4{margin-top:1rem;font-size:1rem;}
.team-card span{font-size:.82rem;color:rgba(32,36,31,0.6);}

.stat-row{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.stat-row .stat{padding:2.4rem 1.5rem;border-right:1px solid var(--line);}
.stat-row .stat:last-child{border-right:none;}
.stat-row .stat .big{font-family:var(--display);font-size:2.6rem;color:var(--charcoal);}
.stat-row .stat .lbl{margin-top:.5rem;font-size:.82rem;color:rgba(32,36,31,0.6);}
@media (max-width:760px){.stat-row{grid-template-columns:1fr 1fr;}.stat-row .stat:nth-child(2){border-right:none;}}

/* ===================== SERVICES PAGE DETAIL LIST ===================== */
.service-detail{
  display:grid;grid-template-columns:0.9fr 1.1fr;gap:3.5rem;align-items:center;
  padding:4.5rem 0;border-top:1px solid var(--line);
}
.service-detail:first-of-type{border-top:none;}
.service-detail:nth-of-type(even){direction:rtl;}
.service-detail:nth-of-type(even) > *{direction:ltr;}
.service-detail img{height:420px;object-fit:cover;border-radius:4px;}
.service-detail .eyebrow{margin-bottom:1rem;}
.service-detail h3{font-size:clamp(1.6rem,2.6vw,2.2rem);}
.service-detail p{margin-top:1.1rem;color:rgba(32,36,31,0.7);max-width:46ch;}
.service-detail ul{margin-top:1.4rem;display:flex;flex-direction:column;gap:.6rem;}
.service-detail li{font-size:.92rem;display:flex;gap:.6rem;}
.service-detail li::before{content:'—';color:var(--sage-deep);}
@media (max-width:880px){.service-detail{grid-template-columns:1fr;}.service-detail:nth-of-type(even){direction:ltr;}.service-detail img{height:300px;}}

.compare-table{width:100%;border-collapse:collapse;margin-top:2.5rem;}
.compare-table th,.compare-table td{padding:1rem 1.2rem;border:1px solid var(--line);text-align:left;font-size:.9rem;}
.compare-table th{background:var(--ivory-deep);font-weight:600;}
.compare-table td:first-child{font-weight:600;}
.compare-table .yes{color:var(--sage-deep);font-weight:700;}
.compare-table-wrap{overflow-x:auto;}
