/* ── CLEARWATER BUILT — SHARED STYLES ── */
*{box-sizing:border-box;margin:0;padding:0;}
:root{
  --navy:#0d1f35;
  --navy-mid:#162d4a;
  --blue:#2a7fd4;
  --blue-light:#5ba3e8;
  --water:#e8f4fd;
  --sand:#f7f4ef;
  --text:#0d1f35;
  --text-sec:#4a6080;
  --white:#ffffff;
  --serif:'DM Serif Display',serif;
  --sans:'DM Sans',sans-serif;
}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);color:var(--text);background:var(--white);overflow-x:hidden;}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.25rem 3rem;
  background:rgba(13,31,53,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.nav-logo-mark{
  width:34px;height:34px;border-radius:8px;
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.nav-logo-mark svg{display:block;}
.nav-logo-text{font-family:var(--serif);font-size:18px;color:var(--white);letter-spacing:-0.3px;}
.nav-links{display:flex;gap:2rem;align-items:center;}
.nav-links a{font-size:14px;color:rgba(255,255,255,0.7);text-decoration:none;font-weight:400;transition:color 0.2s;}
.nav-links a:hover{color:var(--white);}
.nav-cta{
  font-size:14px;font-weight:500;
  background:var(--blue);color:var(--white)!important;
  padding:8px 18px;border-radius:6px;
  transition:background 0.2s!important;
}
.nav-cta:hover{background:var(--blue-light)!important;}

/* ── HERO (interior pages) ── */
.page-hero{
  background:var(--navy);
  padding:10rem 3rem 5rem;
  position:relative;overflow:hidden;
}
.page-hero-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 80% 50%,rgba(42,127,212,0.12) 0%,transparent 70%);
}
.page-hero-inner{position:relative;max-width:1100px;margin:0 auto;}
.page-hero-label{font-size:11px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue-light);margin-bottom:1rem;}
.page-hero h1{
  font-family:var(--serif);
  font-size:clamp(36px,5vw,64px);
  line-height:1.05;color:var(--white);
  letter-spacing:-1px;margin-bottom:1.25rem;
}
.page-hero h1 em{font-style:italic;color:var(--blue-light);}
.page-hero-sub{
  font-size:clamp(15px,2vw,18px);
  color:rgba(255,255,255,0.6);
  line-height:1.7;max-width:580px;
  font-weight:300;margin-bottom:2rem;
}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:1.5rem;flex-wrap:wrap;}
.breadcrumb a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.2s;}
.breadcrumb a:hover{color:rgba(255,255,255,0.8);}
.breadcrumb span{font-size:13px;color:rgba(255,255,255,0.2);}
.breadcrumb-current{font-size:13px;color:rgba(255,255,255,0.6);}

/* ── SECTIONS ── */
.section{padding:5rem 3rem;}
.section-inner{max-width:1100px;margin:0 auto;}
.section-label{font-size:11px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--blue);margin-bottom:0.75rem;}
.section-title{font-family:var(--serif);font-size:clamp(28px,4vw,44px);color:var(--navy);line-height:1.15;letter-spacing:-0.5px;margin-bottom:1rem;}
.section-sub{font-size:16px;color:var(--text-sec);line-height:1.7;max-width:580px;font-weight:300;}
.section-sand{background:var(--sand);}
.section-water{background:var(--water);}
.section-navy{background:var(--navy);}

/* ── PROSE CONTENT ── */
.prose{max-width:780px;}
.prose h2{font-family:var(--serif);font-size:clamp(22px,3vw,32px);color:var(--navy);margin:2.5rem 0 1rem;letter-spacing:-0.3px;line-height:1.2;}
.prose h3{font-size:18px;font-weight:500;color:var(--navy);margin:2rem 0 0.75rem;}
.prose p{font-size:16px;color:var(--text-sec);line-height:1.8;margin-bottom:1.25rem;font-weight:300;}
.prose a{color:var(--blue);text-decoration:underline;text-underline-offset:3px;}
.prose a:hover{color:var(--blue-light);}
.prose ul{list-style:none;margin:1rem 0 1.5rem;}
.prose ul li{font-size:15px;color:var(--text-sec);padding:6px 0 6px 20px;position:relative;font-weight:300;line-height:1.6;}
.prose ul li::before{content:"✓";position:absolute;left:0;color:var(--blue);font-weight:500;}

/* ── SERVICE GRID (category pages) ── */
.service-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2.5rem;}
.service-list-card{
  background:var(--white);border:1px solid rgba(42,127,212,0.12);
  border-radius:12px;padding:1.75rem;
  transition:transform 0.2s,box-shadow 0.2s;
}
.service-list-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(13,31,53,0.08);}
.service-list-card h3{font-family:var(--serif);font-size:20px;color:var(--navy);margin-bottom:0.5rem;}
.service-list-card p{font-size:14px;color:var(--text-sec);line-height:1.65;font-weight:300;margin-bottom:1rem;}
.service-list-card a{font-size:13px;font-weight:500;color:var(--blue);text-decoration:none;display:inline-flex;align-items:center;gap:4px;}
.service-list-card a:hover{color:var(--blue-light);}

/* ── CTA BAND ── */
.cta-band{background:var(--navy);padding:4rem 3rem;text-align:center;}
.cta-band-inner{max-width:600px;margin:0 auto;}
.cta-band h2{font-family:var(--serif);font-size:clamp(24px,3vw,36px);color:var(--white);margin-bottom:1rem;letter-spacing:-0.3px;}
.cta-band p{font-size:16px;color:rgba(255,255,255,0.6);margin-bottom:2rem;font-weight:300;line-height:1.7;}
.btn-primary{
  background:var(--blue);color:var(--white);
  padding:13px 26px;border-radius:8px;
  font-size:15px;font-weight:500;
  text-decoration:none;border:none;cursor:pointer;
  font-family:var(--sans);
  transition:background 0.2s,transform 0.2s;
  display:inline-flex;align-items:center;gap:8px;
}
.btn-primary:hover{background:var(--blue-light);transform:translateY(-1px);}
.btn-ghost{
  background:transparent;color:rgba(255,255,255,0.8);
  padding:13px 26px;border-radius:8px;
  font-size:15px;font-weight:400;
  border:1px solid rgba(255,255,255,0.2);cursor:pointer;
  font-family:var(--sans);text-decoration:none;
  transition:border-color 0.2s,color 0.2s;
  display:inline-flex;align-items:center;gap:8px;
}
.btn-ghost:hover{border-color:rgba(255,255,255,0.5);color:var(--white);}

/* ── FOOTER ── */
footer{
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,0.06);
  padding:3rem;
}
.footer-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;}
.footer-brand p{font-size:14px;color:rgba(255,255,255,0.4);line-height:1.7;margin-top:0.75rem;font-weight:300;max-width:240px;}
.footer-col h4{font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-bottom:1rem;}
.footer-col a{display:block;font-size:14px;color:rgba(255,255,255,0.5);text-decoration:none;margin-bottom:0.5rem;transition:color 0.2s;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{max-width:1100px;margin:2rem auto 0;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.06);display:flex;justify-content:space-between;align-items:center;}
.footer-copy{font-size:13px;color:rgba(255,255,255,0.25);}

/* ── MARQUEE ── */
.marquee-wrap{background:var(--blue);padding:14px 0;overflow:hidden;}
.marquee-track{display:flex;gap:3rem;animation:marquee 20s linear infinite;width:max-content;}
.marquee-item{font-size:13px;font-weight:500;color:var(--white);white-space:nowrap;opacity:0.9;display:flex;align-items:center;gap:12px;}
.marquee-item::after{content:"◆";font-size:8px;opacity:0.6;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  nav{padding:1rem 1.25rem;}
  .nav-links a:not(.nav-cta){display:none;}
  .page-hero{padding:7rem 1.25rem 3rem;}
  .section{padding:3.5rem 1.25rem;}
  .footer-inner{grid-template-columns:1fr 1fr;gap:2rem;}
  .cta-band{padding:3rem 1.25rem;}
}
@media(max-width:480px){
  .footer-inner{grid-template-columns:1fr;}
}
