:root{
  --bg:        #F2EFE6;
  --bg-alt:    #E8E4D6;
  --ink:       #22251F;
  --ink-soft:  #4B4F49;
  --teal:      #1E3B37;
  --teal-mid:  #2F5C55;
  --teal-soft: #4C6E67;
  --plum:      #6E3B49;
  --gold:      #C48A3F;
  --line:      rgba(30,59,55,0.14);
  --card:      #FBFAF5;
  --max:       1240px;
  --header-h:  72px;
  --util-h:    38px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important;}
}

body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Work Sans',sans-serif; line-height:1.62;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;}
a{color:inherit;}
h1,h2,h3,h4{font-family:'Fraunces',serif; font-weight:400; letter-spacing:-0.015em; color:var(--teal); margin:0; line-height:1.14;}

:focus-visible{outline:2px solid var(--gold); outline-offset:3px; border-radius:4px;}

.shell{max-width:var(--max); margin:0 auto; padding:0 clamp(20px,4vw,44px);}
.eyebrow{
  font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--teal-soft); font-weight:600; margin:0;
}

/* ============ UTILITY BAR ============ */
.utility{
  position:sticky; top:0; z-index:70;
  background:var(--teal); color:#C9D8D3;
  font-size:.8rem; height:var(--util-h);
  display:flex; align-items:center;
  transform:translateZ(0);
}
.utility .shell{display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%;}
.utility-left{display:flex; gap:22px; align-items:center;}
.utility a{text-decoration:none; color:#C9D8D3; transition:color .18s;}
.utility a:hover{color:#F2EFE6;}
.utility .sep{opacity:.35;}
.quick-exit{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22);
  padding:5px 13px; border-radius:999px; color:#F0E7E4; font-weight:500;
  text-decoration:none; transition:background .18s, border-color .18s;
}
.quick-exit:hover{background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.4); color:#fff;}
.quick-exit svg{width:13px; height:13px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;}

/* ============ HEADER (seam-proof) ============
   No border-bottom by default and no translucency: a hairline border or a
   semi-transparent layer on a sticky element renders on fractional pixel
   boundaries while scrolling, which is what produced the visible marks.
   Instead: opaque background, own compositing layer, and a shadow that
   only appears once the page has scrolled past the hero top. */
.site-header{
  position:sticky; top:var(--util-h); z-index:60;
  background:var(--bg);
  height:var(--header-h);
  display:flex; align-items:center;
  transform:translateZ(0);
  transition:box-shadow .25s ease, background .25s ease;
}
.site-header.stuck{box-shadow:0 6px 24px -12px rgba(30,59,55,.45);}
.site-header .shell{display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%;}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
.brand .mark{
  width:40px; height:40px; border-radius:50%; background:var(--teal);
  display:grid; place-items:center; flex-shrink:0;
}
.brand .mark svg{width:20px; height:20px; stroke:var(--bg); fill:none; stroke-width:1.4; stroke-linecap:round;}
.brand .name{font-family:'Fraunces',serif; font-size:1.06rem; color:var(--teal); line-height:1.2;}
.brand .role{font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--teal-soft);}

.mainnav{display:flex; gap:30px; font-size:.93rem; margin-left:auto;}
.mainnav a{
  text-decoration:none; color:var(--ink-soft); position:relative;
  padding:6px 0; transition:color .18s; white-space:nowrap;
}
.mainnav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:var(--gold); transition:right .25s ease;
}
.mainnav a:hover{color:var(--teal);}
.mainnav a:hover::after{right:0;}
.mainnav a.active{color:var(--teal); font-weight:500;}
.mainnav a.active::after{right:0; background:var(--teal);}

.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  padding:12px 24px; border-radius:4px; font-size:.92rem; font-weight:500;
  text-decoration:none; border:1px solid transparent; cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
  font-family:'Work Sans',sans-serif;
}
.btn-primary{background:var(--teal); color:var(--bg);}
.btn-primary:hover{background:var(--teal-mid);}
.btn-outline{border-color:var(--teal); color:var(--teal);}
.btn-outline:hover{background:var(--teal); color:var(--bg);}
.btn-light{border-color:rgba(255,255,255,.5); color:#F7F1EB;}
.btn-light:hover{background:#F7F1EB; color:var(--plum);}
.btn-gold{background:var(--gold); color:#22251F;}
.btn-gold:hover{background:#B37B33;}

.menu-toggle{
  display:none; width:44px; height:44px; border:1px solid var(--line);
  border-radius:4px; background:transparent; cursor:pointer;
  align-items:center; justify-content:center; margin-left:auto;
}
.menu-toggle span,.menu-toggle span::before,.menu-toggle span::after{
  content:""; display:block; width:18px; height:1.5px; background:var(--teal);
  position:relative; transition:transform .22s, opacity .22s;
}
.menu-toggle span::before{position:absolute; top:-6px;}
.menu-toggle span::after{position:absolute; top:6px;}
.menu-toggle[aria-expanded="true"] span{background:transparent;}
.menu-toggle[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg);}
.menu-toggle[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg);}

/* ============ HERO ============ */
.hero{
  position:relative; min-height:calc(100svh - var(--header-h) - var(--util-h));
  display:flex; align-items:center;
  background:var(--bg); overflow:hidden;
  padding:72px 0 96px;
}
.hero-bg{position:absolute; inset:0; z-index:0;}
.hero-bg svg{width:100%; height:100%;}
.hero .shell{position:relative; z-index:2; width:100%;}
.hero-grid{display:grid; grid-template-columns:minmax(0,1fr) minmax(0,.82fr); gap:clamp(32px,6vw,80px); align-items:center;}

.hero h1{
  font-size:clamp(2.6rem,6vw,4.6rem); font-weight:300;
  margin:20px 0 0; max-width:14ch;
}
.hero h1 em{font-style:normal; font-weight:500; color:var(--teal-mid);}
.hero .lead{font-size:clamp(1.02rem,1.5vw,1.18rem); color:var(--ink-soft); max-width:48ch; margin:26px 0 0;}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap; margin-top:36px;}
.hero-meta{
  display:flex; gap:28px; flex-wrap:wrap; margin-top:48px;
  padding-top:24px; border-top:1px solid var(--line);
  font-size:.85rem; color:var(--teal-soft);
}
.hero-meta div strong{display:block; font-family:'Fraunces',serif; font-size:1.02rem; color:var(--teal); font-weight:500;}

.hero-portrait{
  position:relative; aspect-ratio:4/5; border-radius:2px; overflow:hidden;
  background:linear-gradient(165deg,#2F5C55,#1E3B37);
}
.hero-portrait img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.hero-portrait .ph{
  position:absolute; inset:0; display:grid; place-items:center;
  color:rgba(242,239,230,.5); font-size:.85rem; letter-spacing:.1em; text-transform:uppercase;
}
.hero-portrait .tag{
  position:absolute; left:0; bottom:28px; background:var(--bg);
  padding:14px 22px 14px 26px; max-width:82%;
}
.hero-portrait .tag .eyebrow{margin-bottom:4px;}
.hero-portrait .tag-row{display:flex; align-items:center; gap:10px;}
.hero-portrait .tag p{margin:0; font-family:'Fraunces',serif; color:var(--teal); font-size:1rem;}
.tag-social{display:inline-flex; color:var(--teal-soft); transition:color .18s;}
.tag-social:hover{color:var(--gold);}
.tag-social svg{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round;}

.ig-badge{
  position:absolute; top:18px; right:18px; z-index:3;
  width:52px; height:52px; border-radius:14px; overflow:hidden;
  box-shadow:0 8px 20px -6px rgba(20,20,20,.4);
  transition:transform .22s ease;
}
.ig-badge:hover{transform:scale(1.07);}
.ig-badge svg{width:100%; height:100%; display:block;}
@media (max-width:640px){.ig-badge{width:44px; height:44px; top:12px; right:12px;}}

.scroll-hint{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--teal-soft);
  text-decoration:none;
}
.scroll-hint .bar{width:1px; height:34px; background:var(--teal-soft); opacity:.45; animation:pulse 2.6s ease-in-out infinite;}
@keyframes pulse{0%,100%{opacity:.2; transform:scaleY(.6); transform-origin:top;}50%{opacity:.6; transform:scaleY(1);}}

/* ============ SECTIONS (full-bleed, alternating) ============ */
.band{padding:clamp(72px,9vw,120px) 0; scroll-margin-top:calc(var(--header-h) + var(--util-h) + 8px);}
.band-alt{background:var(--bg-alt);}
.band-dark{background:var(--teal); color:#D6E2DE;}
.band-dark h2,.band-dark h3{color:#F4F0E7;}
.band-dark .eyebrow{color:#93AFA8;}

.head{max-width:660px; margin-bottom:clamp(40px,5vw,64px);}
.head h2{font-size:clamp(1.9rem,3.4vw,2.9rem); font-weight:300; margin-top:14px;}
.head p{color:var(--ink-soft); margin:18px 0 0; font-size:1.04rem;}
.band-dark .head p{color:#B6C8C3;}

/* --- studio / profile --- */
.studio{display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(32px,5vw,72px); align-items:start;}
.studio-img{aspect-ratio:3/4; background:linear-gradient(155deg,#D7DFD5,#BCC9BE); display:grid; place-items:center; color:var(--teal-soft); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; overflow:hidden;}
.studio-img img{width:100%; height:100%; object-fit:cover;}
.studio-body h2{font-size:clamp(1.7rem,3vw,2.5rem); font-weight:300; margin:14px 0 22px;}
.studio-body p{color:var(--ink-soft); margin:0 0 18px; max-width:60ch;}
.creds{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); margin-top:32px;}
.creds div{background:var(--bg); padding:20px 22px;}
.band-alt .creds div{background:var(--bg-alt);}
.creds dt{font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--teal-soft); margin:0 0 6px;}
.creds dd{margin:0; font-family:'Fraunces',serif; color:var(--teal); font-size:1rem;}

/* --- practice areas: editorial rows, not floating cards --- */
.areas{border-top:1px solid var(--line);}
.area{
  display:grid; grid-template-columns:auto 1fr auto; gap:clamp(20px,4vw,56px);
  align-items:center; padding:38px 0; border-bottom:1px solid var(--line);
  text-decoration:none; color:inherit; transition:padding-left .28s ease;
}
.area:hover{padding-left:14px;}
.area-ic{width:52px; height:52px; display:grid; place-items:center; flex-shrink:0;}
.area-ic svg{width:30px; height:30px; stroke:var(--teal-mid); fill:none; stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round;}
.area-txt h3{font-size:clamp(1.3rem,2.2vw,1.75rem); font-weight:400;}
.area-txt p{margin:8px 0 0; color:var(--ink-soft); max-width:62ch; font-size:.98rem;}
.area-go{
  display:inline-flex; align-items:center; gap:10px; font-size:.85rem;
  color:var(--teal-soft); white-space:nowrap; font-weight:500;
}
.area-go svg{width:22px; height:22px; stroke:var(--teal-soft); fill:none; stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round; transition:transform .28s ease;}
.area:hover .area-go svg{transform:translateX(6px);}

/* --- support / anti-violence --- */
.support{background:var(--plum); color:#F1E6E4;}
.support h2,.support h3{color:#FBF4F0;}
.support .eyebrow{color:#DDB7A4;}
.support-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(36px,6vw,80px); align-items:center;}
.support p{color:#E4D2CE; max-width:56ch; font-size:1.04rem;}
.support .lead-lg{font-size:clamp(1.6rem,2.8vw,2.3rem); font-family:'Fraunces',serif; font-weight:300; color:#FBF4F0; line-height:1.2; margin:14px 0 22px;}
.hotline{border-top:1px solid rgba(255,255,255,.22);}
.hotline-row{display:flex; align-items:baseline; gap:20px; padding:22px 0; border-bottom:1px solid rgba(255,255,255,.22);}
.hotline-row .num{font-family:'Fraunces',serif; font-size:2.4rem; font-weight:400; color:#F7E4C9; line-height:1; min-width:92px;}
.hotline-row .desc{font-size:.9rem; color:#E0CBC6;}

/* --- method: numbered? no. typographic list --- */
.method{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.14);}
.method-item{background:var(--teal); padding:32px 26px 34px;}
.method-item .m-ic svg{width:26px; height:26px; stroke:#8FB0A8; fill:none; stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round; margin-bottom:18px;}
.method-item h3{font-size:1.15rem; font-weight:400; margin-bottom:10px;}
.method-item p{margin:0; font-size:.92rem; color:#AFC4BF;}

/* --- process: real sequence, so numbers earn their place --- */
.process{counter-reset:s; display:grid; grid-template-columns:repeat(5,1fr); gap:0; border-top:1px solid var(--line);}
.p-step{padding:30px 24px 34px 0; border-right:1px solid var(--line); position:relative;}
.p-step:last-child{border-right:none;}
.p-step::before{
  counter-increment:s; content:counter(s,decimal-leading-zero);
  font-family:'Fraunces',serif; font-size:.95rem; color:var(--gold);
  display:block; margin-bottom:14px; letter-spacing:.05em;
}
.p-step p{margin:0; font-size:.95rem; color:var(--ink-soft);}

/* --- FAQ accordion: a working interface element --- */
.faq{border-top:1px solid var(--line); max-width:860px;}
.faq details{border-bottom:1px solid var(--line);}
.faq summary{
  list-style:none; cursor:pointer; padding:24px 44px 24px 0; position:relative;
  font-family:'Fraunces',serif; font-size:clamp(1.02rem,1.6vw,1.22rem); color:var(--teal);
}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{
  content:""; position:absolute; right:8px; top:50%; width:11px; height:11px;
  border-right:1.5px solid var(--teal-soft); border-bottom:1.5px solid var(--teal-soft);
  transform:translateY(-70%) rotate(45deg); transition:transform .25s ease;
}
.faq details[open] summary::after{transform:translateY(-30%) rotate(-135deg);}
.faq .ans{padding:0 40px 26px 0; color:var(--ink-soft); font-size:.98rem; max-width:66ch;}
.faq .ans p{margin:0 0 12px;}
.faq .ans p:last-child{margin-bottom:0;}

/* --- appointments split --- */
.appt{display:grid; grid-template-columns:1fr 1fr; min-height:440px;}
.appt-left{background:var(--teal); color:#D6E2DE; padding:clamp(40px,5vw,72px); display:flex; flex-direction:column; justify-content:center;}
.appt-left h2{color:#F4F0E7; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; margin:14px 0 20px;}
.appt-left p{color:#B6C8C3; max-width:44ch; margin:0 0 30px;}
.appt-left .eyebrow{color:#93AFA8;}
.appt-right{background:var(--card); padding:clamp(40px,5vw,72px); display:flex; flex-direction:column; justify-content:center;}
.appt-row{display:flex; justify-content:space-between; gap:20px; padding:18px 0; border-bottom:1px solid var(--line); font-size:.95rem; color:var(--ink-soft);}
.appt-row:last-of-type{border-bottom:none;}
.appt-row strong{font-family:'Fraunces',serif; color:var(--teal); font-weight:500;}
.appt-note{margin-top:26px; font-size:.85rem; color:var(--teal-soft);}
.appt-left .appt-note{color:#93AFA8;}

.appt-facts{list-style:none; margin:30px 0 0; padding:0; border-top:1px solid rgba(255,255,255,.18);}
.appt-facts li{display:flex; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.18); font-size:.92rem; color:#B6C8C3;}
.appt-facts li strong{font-family:'Fraunces',serif; color:#F4F0E7; font-weight:500;}

/* --- contact --- */
.contact{display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,5vw,72px);}
.cdl{margin:0; border-top:1px solid var(--line);}
.cdl .r{display:grid; grid-template-columns:150px 1fr; gap:20px; padding:18px 0; border-bottom:1px solid var(--line);}
.cdl dt{font-size:.75rem; letter-spacing:.11em; text-transform:uppercase; color:var(--teal-soft); padding-top:3px;}
.cdl dd{margin:0; font-size:1rem;}
.cdl dd a{text-decoration:none; border-bottom:1px solid var(--line);}
.cdl dd a:hover{border-color:var(--teal);}
.map{background:var(--card); border:1px solid var(--line); border-radius:4px; min-height:100%; min-height:340px; display:grid; place-items:center; color:var(--teal-soft); font-size:.85rem; letter-spacing:.08em; text-transform:uppercase;}
.map-card{text-transform:none; letter-spacing:normal; text-align:center; padding:40px 30px; max-width:360px;}
.map-card svg{width:34px; height:34px; margin:0 auto 20px; stroke:var(--teal-mid); fill:none; stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round;}
.map-addr{font-family:'Fraunces',serif; font-size:1.18rem; color:var(--teal); margin:0 0 24px; line-height:1.35;}
.map-note{font-size:.78rem; color:var(--teal-soft); margin:22px 0 0; line-height:1.55;}

/* --- forms (contatti / appuntamenti) --- */
/* Campo esca anti-spam: invisibile e fuori dal flusso di tastiera e screen
   reader, ma presente nel DOM. I bot che compilano tutti i campi lo riempiono,
   e l'API scarta silenziosamente l'invio. */
.hp-field{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;}

.form-field{margin-bottom:20px;}
.form-field label{display:block; font-size:.82rem; letter-spacing:.04em; color:var(--teal-soft); margin-bottom:8px; font-weight:500;}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%; padding:13px 14px; border:1px solid var(--line); border-radius:4px;
  background:var(--card); color:var(--ink); font-family:'Work Sans',sans-serif; font-size:.95rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{outline:2px solid var(--gold); outline-offset:1px; border-color:var(--teal-mid);}
.form-field textarea{resize:vertical; min-height:110px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.form-consent{display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color:var(--ink-soft); margin-bottom:24px;}
.form-consent input{width:auto; margin-top:3px; flex-shrink:0;}
.form-consent a{text-decoration:underline;}
.form-status{margin-top:16px; font-size:.9rem; padding:12px 16px; border-radius:4px; display:none;}
.form-status.ok{display:block; background:rgba(30,59,55,.08); color:var(--teal);}
.form-status.err{display:block; background:rgba(110,59,73,.1); color:var(--plum);}
@media (max-width:640px){.form-row{grid-template-columns:1fr;}}

/* --- generic inner page hero (area/legal pages) --- */
.page-hero{padding:clamp(56px,8vw,96px) 0 clamp(40px,6vw,64px); background:var(--bg);}
.page-hero .eyebrow{margin-bottom:14px;}
.page-hero h1{font-size:clamp(2.2rem,4.6vw,3.4rem); font-weight:300; max-width:20ch;}
.page-hero .lead{font-size:clamp(1rem,1.4vw,1.12rem); color:var(--ink-soft); max-width:60ch; margin:22px 0 0;}
.breadcrumb{font-size:.8rem; color:var(--teal-soft); margin-bottom:18px;}
.breadcrumb a{text-decoration:none; border-bottom:1px solid var(--line);}
.breadcrumb a:hover{border-color:var(--teal-soft);}

/* --- legal/topic list used in area pages --- */
.topics{border-top:1px solid var(--line); max-width:820px;}
.topics li{list-style:none; padding:20px 0; border-bottom:1px solid var(--line); display:flex; gap:16px; align-items:flex-start;}
.topics li svg{width:18px; height:18px; stroke:var(--teal-mid); fill:none; stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; margin-top:3px;}
.topics ul{margin:0; padding:0;}

/* --- flat matter list (practice-area subjects): a typographic bullet, not an icon --- */
.matter-list{list-style:none; margin:0; padding:0; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr;}
.matter-list li{
  padding:22px 28px 22px 0; border-bottom:1px solid var(--line);
  display:flex; align-items:flex-start; gap:14px; font-size:1.02rem; color:var(--ink);
}
.matter-list li::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--gold); margin-top:9px; flex-shrink:0;}
@media (max-width:640px){.matter-list{grid-template-columns:1fr;}}

/* --- legal prose (privacy / cookie) --- */
.prose{max-width:760px;}
.prose h2{font-size:1.3rem; font-weight:500; margin:44px 0 14px;}
.prose h2:first-child{margin-top:0;}
.prose p{color:var(--ink-soft); font-size:.98rem; margin:0 0 14px; max-width:70ch;}
.prose ul{margin:0 0 14px; padding-left:20px;}
.prose li{color:var(--ink-soft); font-size:.98rem; margin:0 0 8px;}
.prose strong{color:var(--teal); font-weight:500;}
.prose .updated{font-size:.82rem; color:var(--teal-soft); margin-bottom:36px;}

/* --- inline CTA band on inner pages --- */
.inner-cta{background:var(--teal); color:#D6E2DE; padding:clamp(44px,6vw,68px) clamp(28px,5vw,60px); text-align:center; border-radius:2px;}
.inner-cta h2{color:#F4F0E7; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:300; max-width:26ch; margin:0 auto;}
.inner-cta p{color:#B6C8C3; max-width:52ch; margin:18px auto 30px; font-size:1rem;}
.inner-cta .hero-cta{justify-content:center;}

/* --- sticky hotline bar (sostegno-donne) --- */
.hotline-sticky{
  position:sticky; top:calc(var(--util-h) + var(--header-h)); z-index:50;
  background:var(--plum); color:#FBF4F0;
}
.hotline-sticky .shell{display:flex; align-items:center; justify-content:center; gap:clamp(16px,4vw,40px); flex-wrap:wrap; padding:10px 0;}
.hotline-sticky .hs-item{display:flex; align-items:baseline; gap:8px; font-size:.88rem;}
.hotline-sticky .hs-item strong{font-family:'Fraunces',serif; font-size:1.2rem; color:#F7E4C9;}
.hotline-sticky a{text-decoration:none;}

/* ============ FOOTER ============ */
.site-footer{background:var(--teal); color:#A9C0BA; padding:clamp(56px,7vw,84px) 0 0; font-size:.92rem;}
.f-top{display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; padding-bottom:52px;}
.site-footer h4{font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:#7E9C95; margin:0 0 16px; font-family:'Work Sans',sans-serif; font-weight:600;}
.site-footer a{text-decoration:none; color:#C3D5D0; display:block; margin-bottom:10px; transition:color .18s;}
.site-footer a:hover{color:#fff;}
.f-brand .name{font-family:'Fraunces',serif; font-size:1.2rem; color:#F4F0E7;}
.f-brand p{max-width:34ch; margin:14px 0 0; color:#94ADA7; font-size:.88rem;}
.f-bottom{
  border-top:1px solid rgba(255,255,255,.13); padding:22px 0 28px;
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  font-size:.8rem; color:#7E9C95;
}
.f-bottom a{display:inline; margin:0 0 0 18px;}
.footer-social{display:inline-flex; vertical-align:middle; margin-left:10px; color:#7E9C95; transition:color .18s;}
.footer-social:hover{color:#fff;}
.footer-social svg{width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round;}

/* ============ REVEAL ============ */
.rv{opacity:0; transform:translateY(18px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);}
.rv.in{opacity:1; transform:none;}

/* ============ RESPONSIVE ============ */
@media (max-width:1024px){
  .f-top{grid-template-columns:1fr 1fr;}
  .method{grid-template-columns:repeat(2,1fr);}
  .process{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:900px){
  .menu-toggle{display:flex;}
  .mainnav{
    position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0;
    background:var(--bg); padding:0 clamp(20px,4vw,44px);
    max-height:0; overflow:hidden; transition:max-height .32s ease;
    box-shadow:0 14px 30px -16px rgba(30,59,55,.5); margin-left:0;
  }
  .mainnav.open{max-height:420px; padding-bottom:20px;}
  .mainnav a{padding:15px 0; border-bottom:1px solid var(--line);}
  .mainnav a::after{display:none;}
  .header-cta{display:none;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-portrait{aspect-ratio:16/11; order:-1; margin-bottom:8px;}
  .hero-portrait img{object-position:50% 10%;}
  .hero-portrait .tag{bottom:14px; padding:9px 14px 9px 16px;}
  .hero-portrait .tag .eyebrow{font-size:.62rem; margin-bottom:2px;}
  .hero-portrait .tag p{font-size:.85rem;}
  .hero{min-height:0; padding:56px 0 72px;}
  .scroll-hint{display:none;}
  .studio{grid-template-columns:1fr;}
  .studio-img{aspect-ratio:16/10;}
  .studio-img img{object-position:50% 10%;}
  .support-grid{grid-template-columns:1fr;}
  .area{grid-template-columns:auto 1fr; gap:20px;}
  .area-go{grid-column:2; margin-top:6px;}
  .appt{grid-template-columns:1fr;}
  .contact{grid-template-columns:1fr;}
  .process{grid-template-columns:repeat(2,1fr);}
  .p-step{padding-right:20px;}
}
@media (max-width:640px){
  .utility-left .hide-s{display:none;}
  .creds{grid-template-columns:1fr;}
  .method{grid-template-columns:1fr;}
  .process{grid-template-columns:1fr;}
  .p-step{border-right:none; border-bottom:1px solid var(--line); padding:24px 0;}
  .p-step:last-child{border-bottom:none;}
  .cdl .r{grid-template-columns:1fr; gap:4px;}
  .f-top{grid-template-columns:1fr;}
  .hotline-sticky .shell{gap:14px;}
}
