
:root{
    --teal:#0f4c5c;
    --teal-deep:#0a3743;      /* hover / pressed states */
    --teal-tint:#E7F0F3;      /* light section + icon chips */
    --sand:#f97c7a;
    --sand-deep:#e35d5b;
    --ink:#1B2926;
    --ink-soft:#4B5D59;
    --paper:#FCFBF8;
    --line:#D9E5E2;
    --radius:14px;
    --shadow:0 8px 24px rgba(15,76,92,0.10);
}

h1,h2,h3{
    font-weight:600;
    color:var(--teal);
    line-height:1.15;
}
a{color:inherit; text-decoration:none;}

.eyebrow{
    font-size:12.5px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--sand);
    font-weight:700;
    margin-bottom:10px;
    display:inline-block;
}

.btn-outline{
    padding: 12px 18px;
    border-radius: 18px;
    background: var(--teal);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: border-color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.btn-call{
        background: var(--sand)!important;
        color:#fff;
}
.btn-outline:hover {
        background: var(--sand);
        color:#fff;
}
.btn-call:hover {
        background: var(--teal)!important;
        color:#fff;
}
/* ---------- Hero ---------- */
.hero{padding:44px 0 40px; position:relative; overflow:hidden;}
.hero h1{
    font-size:clamp(28px,5vw,36px);
    font-weight:600;
    letter-spacing:-.01em;
    margin-bottom:16px;
}
.hero h1 .accent{color:var(--sand);}
.hero .lead{
    font-size:16.5px;
    font-weight:400;
    color:var(--ink-soft);
    max-width:52ch;
    margin-bottom:22px;
}
.hero-ctas{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:22px;}

.trust-row{
    display:flex; flex-wrap:wrap; gap:18px;
    font-size:13px; color:var(--teal); font-weight:600;
}
.trust-row span{display:flex; align-items:center; gap:6px;}
.trust-row svg{flex-shrink:0;}

.hero-visual{
    background:var(--teal);
    border-radius:20px;
    padding:26px;
    color:#fff;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}
.hero-visual::after{
    content:"";
    position:absolute; right:-40px; bottom:-40px;
    width:180px; height:180px; border-radius:50%;
    background:rgba(255,255,255,0.06);
}
.hero-visual h3{color: #fff;font-size: 18px;font-weight: 600;margin-bottom: 14px;letter-spacing: 0.5px;text-transform: uppercase;}
.hero-stat-list{display:flex; flex-direction:column; gap:14px; position:relative; z-index:1;}
.hero-stat{display:flex; gap:12px; align-items:flex-start;}
.hero-stat .num{font-size:22px; font-weight:600; color:var(--sand); min-width:34px;}
.hero-stat p{font-size:14px; color:rgba(255,255,255,0.88);}

/* ---------- Wave divider (signature element) ---------- */
.wave{display:block; width:100%; line-height:0;}
.wave svg{width:100%; height:auto; display:block;}
.wave svg path{fill:var(--teal);}
.wave-flip{transform:rotate(180deg);}

/* ---------- Section rhythm ---------- */
#ColonHydrotherapy section{padding:52px 0;}
.section-head{max-width:640px; margin-bottom:32px;}
.section-head h2{font-size:clamp(24px,3.6vw,32px); margin-bottom:10px;}
.section-head p{color:var(--ink-soft); font-size:15.5px;}
.h-sub{font-size:24px; margin-bottom:16px;}
.note{margin-top: 16px;
padding: 30px;
font-size: 14px;
color: var(--ink-soft);
background: #ccebf4;
border-radius: 15px;}

/* ---------- Wave text band ---------- */
#ColonHydrotherapy section.wavetext{background:var(--teal); padding:0;}
.wavetext-inner{padding:36px;}
.wavetext-copy{color:rgba(255,255,255,0.85); font-size:17px;letter-spacing: 0.2px; max-width:840px; margin:auto;}

/* ---------- What is it ---------- */
.what-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:22px; height:100%;
}
.what-card h3{font-size:18px; margin-bottom:8px;}
.what-card p{color:var(--ink-soft); font-size:15px;}

/* ---------- Benefits ---------- */
.benefits-section{background:var(--teal-tint);}
.benefit-card{
    background:#fff; border-radius:var(--radius); padding:20px 18px;
    border:1px solid var(--line); height:100%;
}
.benefit-card .icon{
    width:40px; height:40px; border-radius:10px;
    background:var(--teal-tint); color:var(--teal);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:12px;
}
.benefit-card h4{font-size:16px; font-weight:700; color:var(--teal); margin-bottom:5px;}
.benefit-card p{font-size:15px; color:var(--ink-soft);}

/* ---------- Who it's for / process ---------- */
.check-list{list-style:none; display:flex; flex-direction:column; gap:12px;}
.check-list li{display:flex; gap:10px; font-size:14.5px; color:var(--ink-soft);}
.check-list svg{flex-shrink:0; margin-top:2px; color:var(--teal);}

.step-list{counter-reset:step; display:flex; flex-direction:column;padding-left:15px;}
.step-item{
    position:relative; padding-left:44px; padding-bottom:22px;
    border-left:2px solid var(--teal-tint);
}
.step-item:last-child{border-left-color:transparent; padding-bottom:0;}
.step-item::before{
    counter-increment:step; content:counter(step);
    position:absolute; left:-19px; top:0;
    width:36px; height:36px; border-radius:50%;
    background:var(--sand); color:#fff;
    font-weight:600; font-size:15px;
    display:flex; align-items:center; justify-content:center;
}
.step-item h4{font-size:16px; color:var(--teal); margin-bottom:4px;}
.step-item p{font-size:14px; color:var(--ink-soft);}

/* ---------- Why HHC ---------- */
.why-section{background:var(--teal); color:#fff;}
.why-section .section-head h2{color:#fff;}
.why-section .section-head p{color:rgba(255,255,255,0.75);}
.why-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:var(--radius);
    padding:18px; height:100%;
}
.why-card .icon{color:var(--sand); margin-bottom:10px;}
.why-card h4{font-size:16px; font-weight:700; margin-bottom:4px;}
.why-card p{font-size:15px; color:rgba(255,255,255,0.7);}

/* ---------- Locations ---------- */
.loc-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; display:flex; flex-direction:column; height:100%;
    box-shadow:var(--shadow);
}
.loc-top{
    background:linear-gradient(135deg,var(--teal-tint),#F5FAFB);
    padding:10px 15px;
    border-bottom:1px solid var(--line);
}
.loc-top .tag{font-size:11.5px; font-weight:700; color:var(--teal); letter-spacing:.06em; text-transform:uppercase;}
.loc-top h3{font-size:18px;font-weight:600; margin-top:4px;}
.loc-body{padding:16px 20px 20px; display:flex; flex-direction:column; gap:12px; flex:1;}
.loc-addr{font-size:13.8px; color:var(--ink-soft); display:flex; gap:8px;}
.loc-addr svg{flex-shrink:0; margin-top:2px; color:var(--teal);}
.loc-actions{display:flex;justify-content: space-between; gap:10px; margin-top:auto;}
.loc-actions .btn{--bs-btn-padding-y:9px; --bs-btn-padding-x:12px; --bs-btn-font-size:13.5px; flex:1;}

/* ---------- FAQ (Bootstrap accordion, themed) ---------- */
.faq-accordion{
    max-width:760px;
    --bs-accordion-bg:#fff;
    --bs-accordion-color:var(--ink-soft);
    --bs-accordion-border-color:var(--line);
    --bs-accordion-border-radius:12px;
    --bs-accordion-inner-border-radius:11px;
    --bs-accordion-btn-color:var(--teal);
    --bs-accordion-active-color:var(--teal);
    --bs-accordion-active-bg:#fff;
    --bs-accordion-btn-focus-box-shadow:0 0 0 .2rem rgba(15,76,92,.25);
    --bs-accordion-btn-padding-y:1rem;
    --bs-accordion-btn-padding-x:1.125rem;
    --bs-accordion-body-padding-y:0;
    --bs-accordion-body-padding-x:1.125rem;
}
.faq-accordion .accordion-item{margin-bottom:10px; border-radius:12px; overflow:hidden;}
.faq-accordion .accordion-button{font-weight:600; font-size:17px;}
.faq-accordion .accordion-button:not(.collapsed){box-shadow:none;}
.faq-accordion .accordion-body{font-size:15px; padding-bottom:1rem;}

:focus-visible{outline:3px solid var(--sand); outline-offset:2px;}
@media(prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
}
