/* ===================================================================
   Kent Independent Autism and ADHD Service — shared design system
   =================================================================== */
:root{
  --navy:#0B2140;
  --navy-deep:#0A1E38;
  --teal:#1B9C86;
  --teal-dark:#157A6A;
  --teal-tint:#E6F5F2;
  --lavender-tint:#EFEDF9;
  --lavender-text:#5B4FA0;
  --bg:#F6F8F9;
  --grey:#5B6472;
  --line:#E4E7EC;
  --display:'DM Sans', sans-serif;
  --body:'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
*{box-sizing:border-box; margin:0;}
body{background:#fff; color:var(--navy); font-family:var(--body); font-size:16.5px; line-height:1.65;}
a{color:var(--navy);}
a:focus-visible, button:focus-visible{outline:3px solid var(--teal); outline-offset:2px;}
.wrap{max-width:1120px; margin:0 auto; padding:0 24px;}
.narrow{max-width:720px;}
img{max-width:100%; display:block;}
svg{display:block;}

/* ---------- Nav ---------- */
nav{position:sticky; top:0; z-index:20; background:rgba(255,255,255,0.97); border-bottom:1px solid var(--line);}
.nav-inner{display:flex; align-items:center; justify-content:space-between; height:74px;}
.logo{font-family:var(--display); font-weight:700; font-size:21px; letter-spacing:.01em; color:var(--navy); text-decoration:none; line-height:1.1; display:flex; align-items:baseline; gap:10px;}
.logo small{font-family:var(--body); font-weight:400; font-size:11.5px; letter-spacing:.03em; color:var(--grey); border-left:1px solid var(--line); padding-left:10px;}
.nav-links{display:flex; align-items:center; gap:24px; list-style:none; flex-wrap:wrap;}
.nav-links a{text-decoration:none; color:var(--navy); font-size:14px; font-weight:500;}
.nav-links a:hover, .nav-links a.active{color:var(--teal-dark);}
.btn{display:inline-flex; align-items:center; gap:8px; background:var(--teal); color:#fff; font-family:var(--body); font-weight:700; font-size:15px; padding:13px 26px; border-radius:8px; text-decoration:none; border:none; cursor:pointer;}
.btn:hover{background:var(--teal-dark);}
.btn-ghost{background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.7);}
.btn-ghost:hover{background:rgba(255,255,255,.12);}
.btn-outline-navy{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
.btn-outline-navy:hover{background:var(--navy); color:#fff;}
@media (max-width:900px){ .nav-links li:not(.nav-cta){display:none;} }

/* ---------- Page head (sub-pages) ---------- */
.page-head{padding:60px 0 48px; border-bottom:1px solid var(--line); background:var(--bg);}
.page-head-grid{display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:center;}
@media (max-width:820px){ .page-head-grid{grid-template-columns:1fr;} .page-head-image{order:-1;} }
.page-head-image{aspect-ratio:4/5; border-radius:14px; overflow:hidden; background:linear-gradient(160deg,#DCEAE6,#B9D6CE); display:flex; align-items:center; justify-content:center; color:var(--grey); font-size:14px; text-align:center; padding:20px;}
.page-head-image img{width:100%; height:100%; object-fit:cover;}
.crumb{font-size:14px; color:var(--grey); margin-bottom:16px;}
.crumb a{color:var(--grey); text-decoration:none;}
.crumb a:hover{text-decoration:underline;}
h1{font-family:var(--display); font-weight:700; font-size:clamp(32px, 4.6vw, 46px); line-height:1.16; letter-spacing:-.01em; margin-bottom:16px;}
.page-head .lede{color:var(--grey); font-size:18px; max-width:58ch; margin-bottom:26px;}
.price-tag{display:inline-block; background:var(--teal-tint); color:var(--teal-dark); font-weight:700; font-size:16px; padding:9px 16px; border-radius:8px; margin-right:14px;}

/* ---------- Generic sections ---------- */
section{padding:56px 0;}
h2{font-family:var(--display); font-weight:700; font-size:clamp(26px,3.2vw,34px); letter-spacing:-.01em; margin-bottom:20px;}
p{max-width:62ch;}
.muted{color:var(--grey);}
.section-eyebrow{font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-dark); margin-bottom:12px;}
.section-head{text-align:center; max-width:640px; margin:0 auto 48px;}
.section-head p{color:var(--grey); margin:0 auto;}

/* ---------- Included / checklist ---------- */
.included{list-style:none; margin-top:8px;}
.included li{padding:14px 44px 14px 34px; border-bottom:1px solid var(--line); position:relative; font-size:16px;}
.included li::before{content:"✓"; position:absolute; left:4px; top:14px; color:var(--teal-dark); font-weight:700;}

/* ---------- Timeline ---------- */
.timeline{list-style:none; counter-reset:tstep; margin-top:12px;}
.timeline li{counter-increment:tstep; position:relative; padding:0 0 36px 58px;}
.timeline li::before{content:counter(tstep); position:absolute; left:0; top:0; width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:var(--teal-tint); color:var(--teal-dark); font-weight:700; font-size:15px;}
.timeline li::after{content:""; position:absolute; left:17px; top:42px; bottom:6px; width:1.5px; background:var(--line);}
.timeline li:last-child::after{display:none;}
.timeline strong{display:block; font-size:17px; margin-bottom:5px;}
.timeline p{font-size:15.5px; color:var(--grey);}
.timeline .duration{display:inline-block; font-size:12.5px; font-weight:700; color:var(--teal-dark); margin-top:6px; letter-spacing:.08em; text-transform:uppercase;}

/* ---------- Callout ---------- */
.callout{background:var(--lavender-tint); border-radius:12px; padding:22px 26px; margin-top:32px; max-width:760px;}
.callout strong{display:block; margin-bottom:8px; font-size:17px; color:var(--navy); font-family:var(--display);}
.callout p{font-size:15.5px; color:var(--grey);}

/* ---------- For-grid (who it's for) ---------- */
.for-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:8px;}
@media (max-width:720px){ .for-grid{grid-template-columns:1fr;} }
.for-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px; border-top:3px solid var(--teal);}
.for-card:last-child{border-top-color:var(--lavender-text);}
.for-card h3{font-size:16px; margin-bottom:10px; font-family:var(--display); font-weight:700;}
.for-card ul{padding-left:20px; font-size:15px; color:var(--grey);}
.for-card li{margin-bottom:8px;}

/* ---------- CTA ---------- */
.cta{background:var(--navy-deep); color:#fff; text-align:center; border-radius:0;}
.cta h2{color:#fff; margin-bottom:12px;}
.cta p{color:#C3CBD7; max-width:52ch; margin:0 auto 30px;}
.cta .btn{background:var(--teal);}
.cta .btn:hover{background:var(--teal-dark);}

/* ---------- Footer ---------- */
footer{padding:40px 0; font-size:14px; color:var(--grey); background:var(--bg); border-top:1px solid var(--line);}
.foot-grid{display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap;}
footer a{color:var(--grey); text-decoration:none;}
footer a:hover{color:var(--teal-dark);}

/* ---------- About ---------- */
.about-grid{display:grid; grid-template-columns:1fr 1.6fr; gap:48px; align-items:start;}
@media (max-width:720px){ .about-grid{grid-template-columns:1fr;} }
.portrait{aspect-ratio:4/5; border-radius:14px; overflow:hidden; background:linear-gradient(160deg,#DCEAE6,#B9D6CE); display:flex; align-items:center; justify-content:center; color:var(--grey); font-size:14px;}
.portrait img{width:100%; height:100%; object-fit:cover;}
.portrait-brand{padding:15%;}
.portrait-brand img{width:100%; height:100%; object-fit:contain;}
.about-copy p{color:var(--grey); margin-bottom:16px; max-width:60ch;}
.credential{font-size:14px; color:var(--navy); border-left:3px solid var(--teal); padding-left:14px; margin-top:20px;}
.partner{background:#fff; border:1px solid var(--line); border-radius:12px; padding:28px; margin-top:16px; display:flex; gap:20px; align-items:flex-start;}
.partner .badge{flex-shrink:0; width:44px; height:44px; border-radius:50%; background:var(--teal-tint); color:var(--teal-dark); font-weight:700; display:flex; align-items:center; justify-content:center; font-family:var(--display);}
.partner h3{font-size:16px; margin-bottom:6px;}
.partner p{font-size:15px; color:var(--grey); margin:0;}
.values{list-style:none; margin-top:8px; display:grid; grid-template-columns:1fr 1fr; gap:22px;}
@media (max-width:720px){ .values{grid-template-columns:1fr;} }
.values li{background:#fff; border:1px solid var(--line); border-radius:12px; padding:22px;}
.values strong{display:block; margin-bottom:8px; font-size:16px; font-family:var(--display);}
.values span{font-size:15px; color:var(--grey);}

/* ---------- Pricing cards (pricing.html) ---------- */
.price-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px;}
@media (max-width:820px){ .price-cards{grid-template-columns:1fr;} }
.price-card{background:#fff; border:1px solid var(--line); border-radius:14px; padding:30px 26px; display:flex; flex-direction:column; border-top:4px solid var(--teal);}
.price-card:nth-child(2){border-top-color:var(--lavender-text); box-shadow:0 20px 40px -28px rgba(27,156,134,.4);}
.price-card:nth-child(3){border-top-color:var(--navy);}
.price-card h3{font-family:var(--display); font-weight:700; font-size:20px; margin-bottom:6px;}
.price-card .amount{font-family:var(--display); font-weight:700; font-size:34px; color:var(--navy); margin:6px 0 2px;}
.price-card .sub{font-size:13px; color:var(--grey); text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px;}
.price-card ul{list-style:none; padding:0; margin:0 0 22px; flex:1;}
.price-card li{font-size:14.5px; color:var(--grey); padding:8px 0 8px 22px; position:relative; border-bottom:1px solid var(--line);}
.price-card li::before{content:"✓"; position:absolute; left:0; color:var(--teal-dark); font-weight:700;}
.price-card li:last-child{border-bottom:none;}
.price-card a{font-weight:700; font-size:15px; text-decoration:none; color:var(--teal-dark);}
.price-card a:hover{text-decoration:underline;}
.notes{margin-top:8px;}
.notes h3{font-size:17px; margin-bottom:8px; margin-top:28px; font-family:var(--display); font-weight:700;}
.notes p{color:var(--grey); font-size:15px;}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line); padding:20px 0;}
.faq-item summary{cursor:pointer; list-style:none; font-weight:700; font-size:16.5px; display:flex; justify-content:space-between; align-items:center; gap:16px;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; flex-shrink:0; font-size:20px; color:var(--teal-dark); font-weight:400; transition:transform .15s ease;}
.faq-item[open] summary::after{content:"–";}
.faq-item p{margin-top:14px; color:var(--grey); font-size:15.5px; max-width:66ch;}

/* ---------- Forms (intake forms) ---------- */
.form-field{margin-bottom:20px;}
.form-field label{display:block; font-weight:600; font-size:14.5px; margin-bottom:6px;}
.form-field .required{color:var(--lavender-text);}
.form-field input[type="text"], .form-field input[type="email"], .form-field textarea{
  width:100%; padding:11px 14px; border:1px solid var(--line); border-radius:8px;
  font-family:var(--body); font-size:15px; color:var(--navy); background:#fff;
}
.form-field textarea{min-height:100px; resize:vertical;}
.form-field input[type="file"]{width:100%; padding:14px; border:1.5px dashed var(--line); border-radius:8px; font-family:var(--body); font-size:14px; background:#fff;}
.form-hint{font-size:13px; color:var(--grey); margin-top:6px;}
.form-status{margin-top:18px; font-size:14.5px; font-weight:600; min-height:20px;}
.form-status.success{color:var(--teal-dark);}
.form-status.error{color:#b3413e;}
.form-submit{margin-top:8px;}

/* ---------- Portal ---------- */
.portal-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:26px; margin-bottom:18px;}
.portal-card h3{font-size:18px; margin-bottom:6px; font-family:var(--display); font-weight:700;}
.portal-card p{font-size:15px; color:var(--grey); margin-bottom:16px;}
.portal-card .btn{font-size:14.5px; padding:10px 20px;}
.portal-tag{display:inline-block; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--teal-dark); margin-bottom:10px;}

/* ---------- Coming soon ---------- */
.coming-soon-card{background:#fff; border:1px dashed var(--line); border-radius:14px; padding:34px 30px; text-align:center; max-width:640px; margin:0 auto;}
.coming-soon-pill{display:inline-block; background:var(--lavender-tint); color:var(--lavender-text); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:7px 16px; border-radius:999px; margin-bottom:16px;}
.coming-soon-card h3{font-family:var(--display); font-weight:700; font-size:22px; margin-bottom:10px;}
.coming-soon-card p{color:var(--grey); margin:0 auto;}

/* ---------- Homepage-only sections ---------- */
.hero{position:relative; min-height:560px; display:flex; align-items:center; background:linear-gradient(rgba(10,25,45,.72),rgba(10,25,45,.72)), url('https://images.unsplash.com/photo-1573497491208-6b1acb260507?q=80&w=1600&auto=format&fit=crop') center/cover; color:#fff; text-align:center; padding:100px 0;}
.hero-eyebrow{font-size:12.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:#8FD6C6; margin-bottom:20px;}
.hero h1{max-width:20ch; margin:0 auto 22px;}
.hero p{max-width:60ch; margin:0 auto 34px; font-size:18px; color:#DCE3EC;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; justify-content:center;}
.hero-note{margin-top:16px; font-size:14px; color:#B9C2D2;}

.features{padding:80px 0; background:var(--bg);}
.feature-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media (max-width:960px){ .feature-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .feature-grid{grid-template-columns:1fr;} }
.feature-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:28px 24px;}
.icon-box{width:46px; height:46px; border-radius:10px; background:var(--teal-tint); display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:var(--teal-dark);}
.feature-card h3{font-family:var(--display); font-weight:700; font-size:17px; margin-bottom:8px;}
.feature-card p{font-size:14.5px; color:var(--grey);}

.split{padding:84px 0;}
.split-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media (max-width:820px){ .split-grid{grid-template-columns:1fr;} }
.split-grid.reverse .media{order:2;}
@media (max-width:820px){ .split-grid.reverse .media{order:-1;} }
.split h2{margin-bottom:18px;}
.split .lead{color:var(--grey); margin-bottom:16px; max-width:56ch;}
.arrow-list{list-style:none; margin-top:22px; display:flex; flex-direction:column; gap:12px;}
.arrow-list li{display:flex; gap:12px; align-items:flex-start; font-size:15.5px;}
.arrow-list svg{flex-shrink:0; margin-top:3px; color:var(--teal-dark);}
.media{aspect-ratio:4/3; border-radius:14px; overflow:hidden; background:linear-gradient(160deg,#DCEAE6,#B9D6CE);}
.media img{width:100%; height:100%; object-fit:cover;}
.icon-panel{background:#fff; border:1px solid var(--line); border-radius:14px; padding:36px 28px; box-shadow:0 20px 40px -24px rgba(11,33,64,.25);}
.icon-panel h4{text-align:center; font-family:var(--display); font-weight:700; letter-spacing:.08em; font-size:14px; margin-bottom:24px; text-transform:uppercase; color:var(--navy);}
.icon-panel-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:14px; text-align:center;}
@media (max-width:520px){ .icon-panel-grid{grid-template-columns:repeat(2,1fr);} }
.icon-panel-grid div svg{margin:0 auto 8px;}
.icon-panel-grid span{font-size:10.5px; font-weight:700; letter-spacing:.03em; color:var(--grey); text-transform:uppercase; line-height:1.3; display:block;}

.why-now-banner{background:linear-gradient(rgba(10,25,45,.78),rgba(10,25,45,.78)), url('https://images.unsplash.com/photo-1516575150278-77136aed6920?q=80&w=1600&auto=format&fit=crop') center/cover; height:120px;}
.why-now{background:#fff; padding:0 0 84px;}
.why-now .inner{padding-top:60px;}
.why-now h2{max-width:22ch;}
.why-now .lead{color:var(--grey); max-width:70ch; margin-bottom:36px;}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:14px;}
@media (max-width:860px){ .stats-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .stats-grid{grid-template-columns:1fr;} }
.stat-card{background:#fff; border:1px solid var(--line); border-radius:12px; padding:22px 20px;}
.stat-card svg{color:var(--grey); margin-bottom:14px;}
.stat-num{font-family:var(--display); font-weight:700; font-size:30px; color:var(--navy); line-height:1; margin-bottom:8px;}
.stat-label{font-size:13.5px; color:var(--grey); line-height:1.5;}
.stats-source{font-size:12.5px; color:var(--grey); margin:14px 0 36px; max-width:80ch;}

.why-now .callout-head{display:flex; align-items:center; gap:10px; margin-bottom:12px;}
.why-now .callout-head svg{color:var(--lavender-text); flex-shrink:0;}

.compare-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
@media (max-width:760px){ .compare-grid{grid-template-columns:1fr;} }
.compare-card{border-radius:12px; padding:28px 26px;}
.compare-card.bad{background:#fff; border:1px solid var(--line);}
.compare-card.good{background:var(--teal-tint); border:1px solid #CDECE5;}
.compare-card h3{font-family:var(--display); font-weight:700; font-size:19px; margin-bottom:18px;}
.compare-card.good h3{color:var(--teal-dark);}
.compare-card ul{list-style:none; display:flex; flex-direction:column; gap:14px;}
.compare-card li{display:flex; gap:10px; align-items:flex-start; font-size:15px; color:var(--navy);}
.compare-card.bad li svg{color:#B5493F;}
.compare-card.good li svg{color:var(--teal-dark);}
.compare-card li svg{flex-shrink:0; margin-top:3px;}

.dark-panel-wrap{padding:0 0 84px;}
.dark-panel{background:var(--navy-deep); border-radius:16px; padding:44px 40px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;}
.dark-panel-text{max-width:640px;}
.tag-pill{display:inline-block; background:rgba(27,156,134,.18); color:#8FD6C6; font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:7px 14px; border-radius:999px; margin-bottom:16px;}
.dark-panel h3{font-family:var(--display); color:#fff; font-weight:700; font-size:clamp(24px,3vw,30px); margin-bottom:14px;}
.dark-panel p{color:#C3CBD7; font-size:15.5px; max-width:60ch;}

.services{padding:0 0 40px; background:var(--bg);}
.services .inner{padding-top:84px;}
.limited-pill{display:block; width:max-content; margin:0 auto 20px; background:var(--teal-tint); color:var(--teal-dark); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:8px 16px; border-radius:999px;}
.limited-pill svg{display:inline-block; vertical-align:-2px; margin-right:6px;}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:44px;}
@media (max-width:920px){ .cards{grid-template-columns:1fr;} }
.card{background:#fff; border:1px solid var(--line); border-radius:14px; padding:32px 28px; display:flex; flex-direction:column; position:relative;}
.card.popular{border-color:var(--teal); box-shadow:0 20px 40px -28px rgba(27,156,134,.5);}
.badge{position:absolute; top:0; right:24px; transform:translateY(-50%); background:var(--teal); color:#fff; font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:6px 12px; border-radius:999px;}
.card-icon{width:40px; height:40px; border-radius:9px; background:var(--teal-tint); display:flex; align-items:center; justify-content:center; color:var(--teal-dark); margin-bottom:16px;}
.card h3{font-family:var(--display); font-weight:700; font-size:19px; margin-bottom:16px;}
.price-row{display:flex; align-items:baseline; gap:10px; margin-bottom:10px;}
.price-now{font-family:var(--display); font-weight:700; font-size:34px; color:var(--navy);}
.price-was{font-size:16px; color:#A6AEBB; text-decoration:line-through;}
.save-pill{display:inline-block; background:var(--teal-tint); color:var(--teal-dark); font-size:12.5px; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:18px; width:max-content;}
.card p.desc{font-size:14.5px; color:var(--grey); margin-bottom:18px;}
.card ul{list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:24px; flex:1;}
.card ul li{display:flex; gap:8px; align-items:center; font-size:14px; color:var(--navy);}
.card ul li svg{color:var(--teal-dark); flex-shrink:0;}
.card .btn{justify-content:center; width:100%;}
.card .btn-outline-navy{background:var(--navy); color:#fff; border-color:var(--navy);}
.card.popular .btn{background:var(--teal);}

.savings-box{background:#fff; border:1px solid var(--line); border-radius:14px; padding:32px 28px;}
.savings-head{display:flex; align-items:center; gap:10px; margin-bottom:6px;}
.savings-head svg{color:var(--teal-dark);}
.savings-head strong{font-family:var(--display); font-size:18px;}
.savings-box>p{color:var(--grey); font-size:14.5px; margin-bottom:20px;}
table{width:100%; border-collapse:collapse;}
thead th{text-align:left; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--grey); padding:0 0 12px; border-bottom:1px solid var(--line); font-weight:700;}
tbody td{padding:16px 0; border-bottom:1px solid var(--line); font-size:15px;}
tbody tr:last-child td{border-bottom:none;}
.td-name{display:flex; align-items:center; gap:10px; font-weight:700;}
.td-name svg{color:var(--teal-dark);}
.was{color:#A6AEBB; text-decoration:line-through;}
.now{font-weight:700;}
.savings-tag{background:var(--teal-tint); color:var(--teal-dark); font-size:13px; font-weight:700; padding:4px 10px; border-radius:999px;}

.trust{background:var(--navy); padding:56px 0;}
.trust-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}
@media (max-width:820px){ .trust-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .trust-grid{grid-template-columns:1fr;} }
.trust-item strong{display:block; font-size:15.5px; margin-bottom:6px; color:#fff;}
.trust-item span{font-size:14px; color:#B9C2D2; line-height:1.55;}
.trust-item strong::before{content:""; display:block; width:26px; height:3px; background:var(--teal); margin-bottom:12px;}

.about{padding:84px 0;}

/* ---------- Full footer (homepage) ---------- */
.foot-grid-full{display:grid; grid-template-columns:1.4fr 1fr 1.2fr; gap:40px;}
@media (max-width:720px){ .foot-grid-full{grid-template-columns:1fr; gap:32px;} }
.foot-logo{font-family:var(--display); font-weight:700; font-size:20px; margin-bottom:14px;}
.foot-col p{color:var(--grey); font-size:14.5px; max-width:34ch;}
.foot-col h5{font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--navy); margin-bottom:16px;}
.foot-col ul{list-style:none; display:flex; flex-direction:column; gap:11px;}
.foot-col a{color:var(--grey); text-decoration:none; font-size:14.5px;}
.foot-col a:hover{color:var(--teal-dark);}
.foot-contact{list-style:none; display:flex; flex-direction:column; gap:14px;}
.foot-contact li{display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--grey);}
.foot-contact svg{color:var(--teal-dark); flex-shrink:0; margin-top:2px;}
.foot-bottom{border-top:1px solid var(--line); margin-top:40px; padding-top:24px; font-size:13.5px; color:var(--grey); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;}
.foot-bottom a{color:var(--grey);}
