:root{
  --ink:#182A3D;
  --ink-2:#101E2C;
  --paper:#FAF6EF;
  --paper-alt:#F1E9DB;
  --sage:#6E8F76;
  --sage-deep:#4C6753;
  --clay:#B5654A;
  --clay-deep:#93513B;
  --line:#E3D9C7;
  --text-muted:#5C6B70;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}

.serif{font-family:'Newsreader',serif;}
.mono{font-family:'IBM Plex Mono',monospace; letter-spacing:0.09em;}

.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.7rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--clay-deep);
  font-weight:600;
}

.eyebrow-light{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.7rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#9FB8A5;
  font-weight:600;
}

.squiggle{position:relative; white-space:nowrap;}
.squiggle svg{position:absolute; left:0; bottom:-0.14em; width:100%; height:0.4em;}

.grain{position:relative;}
.grain::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity:0.06;
  pointer-events:none;
  mix-blend-mode:overlay;
}

.frame{position:relative;}
.frame::before{
  content:"";
  position:absolute;
  inset:14px -14px -14px 14px;
  border:1.5px solid var(--clay);
  border-radius:1.1rem;
  z-index:0;
}
.frame .frame-img{
  position:relative;
  z-index:1;
  border-radius:1.1rem;
  overflow:hidden;
}
.frame-alt::before{ inset:14px 14px -14px -14px; border-color:var(--sage); }

.duotone{position:relative;}
.duotone::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(24,42,61,0.28), rgba(110,143,118,0.22));
  mix-blend-mode:multiply;
}
.duotone img{filter:saturate(0.92) contrast(1.03);}

.btn-clay{
  background:var(--clay);
  color:#fff;
  border-radius:0.6rem;
  padding:0.85rem 1.6rem;
  font-weight:600;
  font-size:0.94rem;
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow:0 10px 24px -10px rgba(147,81,59,0.55);
}
.btn-clay:hover{background:var(--clay-deep); transform:translateY(-2px); color:#fff;}

.btn-outline-ink{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--ink);
  border-radius:0.6rem;
  padding:0.82rem 1.55rem;
  font-weight:600;
  font-size:0.94rem;
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  transition:all .25s ease;
}
.btn-outline-ink:hover{background:var(--ink); color:#fff;}

.btn-outline-paper{
  background:transparent;
  color:var(--paper);
  border:1.5px solid rgba(250,246,239,0.5);
  border-radius:0.6rem;
  padding:0.82rem 1.55rem;
  font-weight:600;
  font-size:0.94rem;
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  transition:all .25s ease;
}
.btn-outline-paper:hover{background:var(--paper); color:var(--ink); border-color:var(--paper);}

.btn-sage{
  background:var(--sage);
  color:#fff;
  border-radius:0.6rem;
  padding:0.85rem 1.6rem;
  font-weight:600;
  font-size:0.94rem;
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  transition:all .25s ease;
}
.btn-sage:hover{background:var(--sage-deep); transform:translateY(-2px); color:#fff;}

.icon-circle{
  width:52px;
  height:52px;
  border-radius:16px;
  background:rgba(110,143,118,0.14);
  color:var(--sage-deep);
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-circle-lg{
  width:64px;
  height:64px;
  border-radius:20px;
  background:var(--ink);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
}

.approach-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:1.2rem;
  padding:1.9rem;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.approach-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 40px -20px rgba(22,40,61,0.16);
  border-color:transparent;
}

.cert-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:1.2rem;
  padding:2.2rem 1.5rem;
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
}
.cert-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 40px -20px rgba(22,40,61,0.16);
}

.service-card{
  border-radius:1rem;
  overflow:hidden;
  position:relative;
}
.service-card img{transition:transform .7s ease;}
.service-card:hover img{transform:scale(1.07);}
.service-card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(16,30,44,0) 42%, rgba(16,30,44,0.9) 100%);
}
.service-card .label{position:absolute; left:0; right:0; bottom:0; padding:1.4rem; z-index:2;}

.program-row{
  border-top:1px solid var(--line);
  transition:background .25s ease;
}
.program-row:hover{background:rgba(110,143,118,0.06);}

.index-num{
  font-family:'Newsreader',serif;
  font-size:2.6rem;
  font-weight:500;
  font-style:italic;
  color:var(--line);
  line-height:1;
  transition:color .25s ease;
}
.program-row:hover .index-num{color:var(--clay);}

.hairline{border-top:1px solid var(--line);}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1; transform:translateY(0);}

.nav-link-custom{
  color:var(--ink);
  font-weight:500;
  font-size:0.94rem;
  position:relative;
  padding-bottom:3px;
  text-decoration:none;
}
.nav-link-custom.active{color:var(--clay-deep);}
.nav-link-custom::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--clay);
  transition:width .25s ease;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after{width:100%;}

.site-header{
  background:rgba(250,246,239,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.site-header__brand-mark{
  width:40px;
  height:40px;
  border-radius:10px;
  background:var(--ink);
}

.site-footer{
  background:var(--ink-2);
  color:#C7D0D7;
}

.site-footer__brand-mark{
  width:38px;
  height:38px;
  border-radius:10px;
  background:var(--sage);
}

.site-footer__bottom{
  border-top:1px solid #263447;
}

.services-page{
  background:var(--paper);
}

.services-hero{
  background:var(--ink);
  color:var(--paper);
  padding:5.2rem 0 5.8rem;
}

.services-hero h1,
.services-hero p{
  color:var(--paper);
}

.services-section{
  padding:5rem 0 5.5rem;
}

.services-intro{
  text-align:center;
  max-width:44rem;
  margin:0 auto;
}

.services-intro h2{
  font-size:clamp(1.95rem,3vw,2.5rem);
  font-weight:700;
  color:var(--ink);
}

.services-intro p{
  margin-top:1rem;
  color:var(--text-muted);
  font-size:1.02rem;
  line-height:1.65;
}

.services-tabs{
  margin:3rem auto 2rem;
  background:var(--paper-alt);
  border-radius:0.85rem;
  padding:0.25rem;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0.2rem;
  border:1px solid var(--line);
}

.services-tab{
  min-height:3.7rem;
  border:none;
  border-radius:0.65rem;
  background:transparent;
  color:var(--text-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.65rem;
  font-weight:600;
  font-size:0.94rem;
  padding:0.9rem 1rem;
  transition:background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
  cursor:pointer;
}

.services-tab:hover{
  color:var(--ink);
}

.services-tab.is-active{
  background:#fff;
  color:var(--ink);
  box-shadow:0 1px 0 rgba(17,24,39,0.05), 0 4px 16px rgba(24,42,61,0.08);
  transform:translateY(-1px);
}

.services-tab svg{
  flex:none;
  color:var(--text-muted);
}
.services-tab.is-active svg{
  color:var(--clay);
}

.services-panel{
  display:block;
}

.services-media{
  width:100%;
  aspect-ratio: 16 / 5;
  overflow:hidden;
  border-radius:0.6rem;
  background:var(--paper-alt);
}

.services-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.services-card{
  margin-top:1rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:0.8rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 4px 14px rgba(24,42,61,0.05);
  padding:1.35rem 1.4rem 1.35rem;
}

.services-card h3{
  color:var(--ink);
  font-size:1.7rem;
  line-height:1.2;
  font-weight:700;
}

.services-card__subtitle{
  margin-top:0.35rem;
  color:var(--text-muted);
  font-size:0.94rem;
  line-height:1.55;
}

.services-block{
  margin-top:1.3rem;
}

.services-block h4{
  color:var(--ink);
  font-weight:700;
  font-size:1.12rem;
  margin-bottom:0.7rem;
}

.services-muted{
  color:var(--text-muted);
  line-height:1.65;
  font-size:0.98rem;
}

.services-check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:0.5rem;
}

.services-check-list li{
  display:flex;
  align-items:flex-start;
  gap:0.55rem;
  color:var(--ink);
  line-height:1.45;
}

.services-check-list li::before{
  content:"";
  width:1.05rem;
  height:1.05rem;
  margin-top:0.12rem;
  flex:none;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.services-subsection{
  margin-top:1.45rem;
}

.services-highlight{
  margin-top:1rem;
  background:rgba(110,143,118,0.08);
  border-radius:0.65rem;
  padding:1.1rem 1.15rem;
}

.services-highlight h5{
  margin:0 0 0.6rem;
  color:var(--ink);
  font-weight:700;
  font-size:0.96rem;
}

.services-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem 3rem;
}

.services-process-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0.9rem 1rem;
}

.services-process-card{
  display:flex;
  align-items:flex-start;
  gap:0.85rem;
  padding:0.95rem 1rem;
  border-radius:0.55rem;
  background:rgba(110,143,118,0.08);
}

.services-process-index{
  width:1.9rem;
  height:1.9rem;
  border-radius:999px;
  background:var(--clay);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
  font-weight:700;
  font-size:0.95rem;
}

.services-process-card h5{
  margin:0;
  color:var(--ink);
  font-size:0.93rem;
  font-weight:700;
}

.services-process-card p{
  margin:0.2rem 0 0;
  color:var(--text-muted);
  font-size:0.86rem;
  line-height:1.35;
}

.services-cta{
  background:var(--ink-2);
  color:var(--paper);
  text-align:center;
  padding:4.2rem 0 4.6rem;
}

.services-cta h2{
  color:var(--paper);
  font-size:clamp(1.9rem,3vw,2.45rem);
  font-weight:700;
}

.services-cta p{
  color:#C7D0D7;
}

.services-cta .btn-clay{
  background:var(--paper);
  color:var(--ink);
  box-shadow:none;
}
.services-cta .btn-clay:hover{
  background:#fff;
  color:var(--ink);
}

.services-cta .btn-outline-paper{
  border-color:rgba(250,246,239,0.5);
  color:var(--paper);
}
.services-cta .btn-outline-paper:hover{
  background:var(--paper);
  color:var(--ink);
  border-color:var(--paper);
}

.referrals-hero{
  background:var(--ink);
  color:var(--paper);
  padding:5.2rem 0 5.8rem;
}

.referrals-hero h1,
.referrals-hero p{
  color:var(--paper);
}

.referrals-section{
  padding:4.75rem 0 5.5rem;
}

.referrals-intro{
  text-align:center;
  max-width:45rem;
  margin:0 auto;
}

.referrals-intro h2{
  font-size:clamp(1.95rem,3vw,2.5rem);
  font-weight:700;
  color:var(--ink);
}

.referrals-intro p{
  margin-top:1rem;
  color:var(--text-muted);
  font-size:1.02rem;
  line-height:1.65;
}

.referrals-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:1rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 10px 28px rgba(24,42,61,0.06);
}

.referrals-form{
  padding:1.35rem;
}

.referrals-form h3{
  font-size:0.98rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:0.15rem;
}

.referrals-form .section-note{
  color:var(--text-muted);
  font-size:0.82rem;
  margin-bottom:0.9rem;
}

.referrals-form label{
  display:block;
  font-size:0.76rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:0.3rem;
}

.referrals-form input,
.referrals-form select,
.referrals-form textarea{
  width:100%;
  border:1px solid #cfd7e4;
  border-radius:0.42rem;
  padding:0.62rem 0.75rem;
  font-size:0.9rem;
  color:var(--ink);
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.referrals-form input::placeholder,
.referrals-form textarea::placeholder{
  color:#97a3b7;
}

.referrals-form input:focus,
.referrals-form select:focus,
.referrals-form textarea:focus{
  outline:none;
  border-color:var(--clay);
  box-shadow:0 0 0 3px rgba(181,101,74,0.12);
}

.referrals-form textarea{
  min-height:6.5rem;
  resize:vertical;
}

.referrals-divider{
  height:1px;
  background:var(--line);
  margin:1rem 0 1rem;
}

.referrals-privacy{
  background:rgba(110,143,118,0.08);
  border:1px solid rgba(110,143,118,0.18);
  border-radius:0.7rem;
  padding:0.9rem 1rem;
  color:var(--text-muted);
  font-size:0.82rem;
  line-height:1.55;
}

.referral-image{
  width:100%;
  overflow:hidden;
  border-radius:1rem;
  box-shadow:0 20px 45px -20px rgba(16,30,44,0.33);
  aspect-ratio:16 / 4.4;
  max-height:240px;
}

.referral-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(1) contrast(1.05);
}

@media (max-width: 767.98px){
  .referral-image{
    aspect-ratio:16 / 5.3;
    max-height:190px;
  }
}

.referrals-process-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.5rem;
}

.referrals-step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:0.8rem;
  padding:1rem 1rem 1.05rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 8px 24px rgba(24,42,61,0.05);
  min-height:8rem;
}

.referrals-step__badge{
  width:1.95rem;
  height:1.95rem;
  border-radius:999px;
  background:var(--clay);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
  font-weight:700;
  flex:none;
}

.referrals-step h4{
  margin:0;
  color:var(--ink);
  font-size:0.95rem;
  font-weight:700;
}

.referrals-step p{
  margin:0.25rem 0 0;
  color:var(--text-muted);
  font-size:0.84rem;
  line-height:1.45;
}

.referrals-note{
  background:rgba(24,42,61,0.04);
  border:1px solid var(--line);
  border-left:4px solid var(--clay);
  border-radius:0.8rem;
  padding:1rem 1.1rem;
}

.referrals-note h4{
  margin:0 0 0.35rem;
  color:var(--ink);
  font-size:0.96rem;
  font-weight:700;
}

.referrals-note p{
  margin:0;
  color:var(--text-muted);
  font-size:0.9rem;
  line-height:1.55;
}

.referrals-docs-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:1rem;
  padding:1.3rem 1.35rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 8px 24px rgba(24,42,61,0.05);
}

.referrals-docs-card .services-check-list li{
  color:var(--ink);
}

.referrals-cta{
  background:var(--ink-2);
  color:var(--paper);
  text-align:center;
  padding:4.2rem 0 4.6rem;
}

.referrals-cta h2{
  color:var(--paper);
  font-size:clamp(1.9rem,3vw,2.45rem);
  font-weight:700;
}

.referrals-cta p{
  color:#C7D0D7;
}

.referrals-cta .btn-clay{
  background:var(--paper);
  color:var(--ink);
  box-shadow:none;
}

.referrals-cta .btn-clay:hover{
  background:#fff;
  color:var(--ink);
}

.faq-hero{
  background:var(--ink);
  color:var(--paper);
  padding:5.2rem 0 5.8rem;
}

.faq-hero h1,
.faq-hero p{
  color:var(--paper);
}

.faq-section{
  padding:4.75rem 0 5.5rem;
}

.faq-list{
  max-width:65rem;
  margin:0 auto;
}

.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:0.85rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 8px 24px rgba(24,42,61,0.05);
  overflow:hidden;
}

.faq-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  text-align:left;
  padding:1.05rem 1.25rem;
  background:#fff;
  border:none;
  color:var(--ink);
  font-weight:700;
  font-size:0.98rem;
  cursor:pointer;
}

.faq-trigger:hover{
  background:rgba(110,143,118,0.04);
}

.faq-icon{
  width:1rem;
  height:1rem;
  color:#2f4b9b;
  flex:none;
  transition:transform .2s ease;
}

.faq-panel{
  padding:0 1.25rem 1.1rem;
  color:var(--text-muted);
  line-height:1.7;
  font-size:0.95rem;
}

.faq-stack{
  display:grid;
  gap:0.75rem;
}

.faq-cta{
  background:#f6f7fb;
  border-top:1px solid rgba(24,42,61,0.06);
  border-bottom:1px solid rgba(24,42,61,0.06);
  padding:4rem 0 4.25rem;
}

.faq-cta h2{
  color:var(--ink);
  font-size:clamp(1.8rem,2.8vw,2.35rem);
  font-weight:700;
}

.faq-cta p{
  color:var(--text-muted);
}

.faq-emergency{
  background:#fff5f5;
  border-top:1px solid #f2cccc;
  color:#8f2b2b;
  padding:1.2rem 0 1.25rem;
  text-align:center;
}

.faq-emergency h3{
  color:#8f2b2b;
  font-size:1.02rem;
  font-weight:700;
  margin:0 0 0.35rem;
}

.faq-emergency p{
  margin:0;
  font-size:0.92rem;
  line-height:1.6;
}

.contact-hero{
  background:var(--ink);
  color:var(--paper);
  padding:5.2rem 0 5.8rem;
}

.contact-hero h1,
.contact-hero p{
  color:var(--paper);
}

.contact-section{
  padding:4.75rem 0 5.5rem;
}

.contact-image{
  width:100%;
  overflow:hidden;
  border-radius:1rem;
  box-shadow:0 20px 45px -20px rgba(16,30,44,0.33);
  aspect-ratio:16 / 4.7;
}

.contact-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(0.9) contrast(1.05);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:1.5rem;
  margin-top:2rem;
}

.contact-stack{
  display:grid;
  gap:1rem;
}

.contact-card,
.contact-form-card,
.contact-map-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:1rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 8px 24px rgba(24,42,61,0.05);
}

.contact-card{
  padding:1.1rem 1.15rem 1.15rem;
}

.contact-card__header{
  display:flex;
  align-items:center;
  gap:0.75rem;
  margin-bottom:1.1rem;
}

.contact-card__icon{
  width:2.1rem;
  height:2.1rem;
  border-radius:0.55rem;
  background:var(--clay);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
}

.contact-card h3{
  margin:0;
  color:var(--ink);
  font-size:0.98rem;
  font-weight:700;
}

.contact-card p{
  margin:0;
  color:var(--text-muted);
  font-size:0.9rem;
  line-height:1.55;
}

.contact-card--highlight{
  background:rgba(110,143,118,0.08);
  border-color:rgba(110,143,118,0.2);
}

.contact-card--highlight .btn-clay{
  width:100%;
  justify-content:center;
  margin-top:1rem;
}

.contact-form-card{
  padding:1.2rem 1.25rem 1.25rem;
}

.contact-form-card h3{
  margin:0;
  color:var(--ink);
  font-size:1.05rem;
  font-weight:700;
}

.contact-form-card .section-note{
  margin-top:0.35rem;
  color:var(--text-muted);
  font-size:0.88rem;
}

.contact-form{
  margin-top:1rem;
}

.contact-form label{
  display:block;
  margin-bottom:0.34rem;
  color:var(--ink);
  font-size:0.76rem;
  font-weight:700;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #cfd7e4;
  border-radius:0.42rem;
  padding:0.62rem 0.75rem;
  font-size:0.9rem;
  color:var(--ink);
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#97a3b7;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--clay);
  box-shadow:0 0 0 3px rgba(181,101,74,0.12);
}

.contact-form textarea{
  min-height:8.6rem;
  resize:vertical;
}

.contact-privacy{
  background:rgba(110,143,118,0.08);
  border:1px solid rgba(110,143,118,0.18);
  border-radius:0.7rem;
  padding:0.9rem 1rem;
  color:var(--text-muted);
  font-size:0.82rem;
  line-height:1.55;
}

.contact-form .btn-clay{
  width:100%;
  justify-content:center;
  margin-top:1rem;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0.85rem;
  margin-top:1rem;
}

.contact-info-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:0.9rem;
  padding:1rem 1rem 1.05rem;
  box-shadow:0 1px 0 rgba(17,24,39,0.03), 0 8px 24px rgba(24,42,61,0.05);
}

.contact-info-box h4{
  margin:0 0 0.35rem;
  color:var(--ink);
  font-size:0.96rem;
  font-weight:700;
}

.contact-info-box p{
  margin:0;
  color:var(--text-muted);
  font-size:0.88rem;
  line-height:1.55;
}

.contact-map-card{
  padding:0;
  overflow:hidden;
}

.contact-map{
  height:26rem;
  border-radius:1rem;
  overflow:hidden;
  background:#f8f9fb;
  display:block;
  padding:0;
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.contact-map strong{
  color:var(--ink);
}

.contact-visit-note{
  text-align:center;
  margin-top:0.95rem;
  color:var(--text-muted);
  font-size:0.88rem;
  line-height:1.55;
}

.contact-emergency{
  background:#fff5f5;
  border-top:1px solid #f2cccc;
  color:#8f2b2b;
  padding:1.2rem 0 1.25rem;
  text-align:center;
}

.contact-emergency h3{
  color:#8f2b2b;
  font-size:1.02rem;
  font-weight:700;
  margin:0 0 0.35rem;
}

.contact-emergency p{
  margin:0;
  font-size:0.92rem;
  line-height:1.6;
}

@media (max-width: 991.98px){
  .services-section{
    padding:4rem 0 4.75rem;
  }

  .services-tabs{
    grid-template-columns:1fr;
  }

  .services-process-grid,
  .services-grid-2{
    grid-template-columns:1fr;
  }

  .services-media{
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 639.98px){
  .services-hero{
    padding:4.8rem 0 5.2rem;
  }

  .services-card{
    padding:1.1rem 1rem 1.15rem;
  }

  .services-card h3{
    font-size:1.4rem;
  }

  .services-tab{
    justify-content:flex-start;
  }

  .referrals-process-grid{
    grid-template-columns:1fr;
  }

  .faq-trigger{
    padding:0.95rem 1rem;
    font-size:0.95rem;
  }

  .faq-panel{
    padding:0 1rem 1rem;
  }

  .contact-grid,
  .contact-info-grid{
    grid-template-columns:1fr;
  }

  .contact-image{
    aspect-ratio:16 / 5.4;
  }

  .contact-map{
    height:18rem;
  }
}

::selection{background:rgba(181,101,74,0.25);}
a:focus-visible, button:focus-visible{outline:2px solid var(--clay); outline-offset:3px;}

#mobileMenu{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
#mobileMenu.open{max-height:26rem;}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .service-card img{transition:none;}
}
