*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #0D4B5A;
  --navy-dark:   #082F3A;
  --blue:        #A9C8EE;
  --blue-light:  #DCE9F8;
  --blue-pale:   #F4F7FA;
  --blue-grad:   #EBF2FA;
  --peach:       #F08460;
  --peach-dark:  #C96840;
  --peach-light: #FEF0E8;
  --peach-pale:  #FCEADE;
  --sage:        #6DBFAE;
  --sage-light:  #D4EDE8;
  --white:       #FFFFFF;
  --warm-white:  #F4F7FA;
  --soft-cream:  #FFF6EE;
  --text:        #0D4B5A;
  --soft:        #3A6070;
  --muted:       #7A9BAA;
  --fh: 'DM Serif Display', serif;
  --fb: 'DM Sans', sans-serif;
  --r: 12px; --rs: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* UTILS */
.tag { display: inline-block; background: var(--blue-light); color: var(--navy); padding: 0.25rem 0.85rem; border-radius: 50px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 0.85rem; }
.tag.or { background: var(--peach-pale); color: var(--peach-dark); }
.tag.sage { background: var(--sage-light); color: var(--navy); }

.btn { display: inline-block; padding: 0.82rem 1.8rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: transform 0.18s, box-shadow 0.18s, background 0.18s; cursor: pointer; border: none; font-family: var(--fb); line-height: 1; }
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-orange { background: var(--peach); color: #fff; }
.btn-primary:hover, .btn-orange:hover { background: var(--peach-dark); box-shadow: 0 8px 28px rgba(240,132,96,0.4); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--blue); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.14); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes breathe { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--blue-light);
  display: flex; align-items: center;
  padding: 0 2rem;
  height: 68px;
  gap: 2rem;
}
.nav-logo { height: 52px; max-width: 200px; object-fit: contain; flex-shrink: 0; }
.nav-links { list-style: none; display: flex; gap: 1.75rem; flex: 1; }
.nav-links a { font-size: 0.84rem; color: var(--soft); text-decoration: none; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--peach-dark); }
.nav-links a.active { font-weight: 600; }
.nav-cta { background: var(--peach); color: #fff; padding: 0.55rem 1.25rem; border-radius: 8px; font-size: 0.84rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; }
.nav-cta:hover { background: var(--peach-dark); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mob-nav { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--blue-light); position: sticky; top: 60px; z-index: 299; }
.mob-nav.open { display: flex; }
.mob-nav a { padding: 0.85rem 2rem; font-size: 0.92rem; color: var(--text); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--warm-white); }
.mob-nav a:last-child { border: none; background: var(--peach); color: #fff; text-align: center; font-weight: 600; }

/* TRUST BAR */
.trust { background: var(--navy); padding: 0.8rem 2rem; display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
.ti { display: flex; align-items: center; gap: 0.4rem; }
.ti svg { width: 13px; height: 13px; flex-shrink: 0; }
.ti span { color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500; white-space: nowrap; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(160deg, var(--blue-pale) 0%, var(--blue-grad) 100%); padding: 5rem 2rem 4rem; text-align: center; }
.page-hero h1 { font-family: var(--fh); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); font-weight: 400; margin-bottom: 0.75rem; }
.page-hero h1 em { color: var(--peach-dark); font-style: italic; }
.page-hero p { color: var(--soft); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.85; font-weight: 300; }

/* SECTION */
.sec { padding: 5rem 2rem; }
.sec-in { max-width: 1080px; margin: 0 auto; }
.sec-hd { margin-bottom: 2.75rem; }
.sec-hd h2 { font-family: var(--fh); font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 400; color: var(--navy); line-height: 1.25; }
.sec-hd h2 em { color: var(--peach-dark); font-style: italic; }
.sec-hd p { color: var(--soft); font-size: 0.92rem; max-width: 500px; margin-top: 0.65rem; line-height: 1.85; font-weight: 300; }

/* LEAF ACCENT */
.leaf-accent { display: inline-block; opacity: 0.55; vertical-align: middle; margin-left: 0.4rem; }

/* SERVICES GRID */
.svc-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc { background: var(--warm-white); border-radius: var(--r); padding: 1.65rem; border: 1px solid var(--blue-light); transition: transform 0.2s, box-shadow 0.2s; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(169,200,238,0.25); }
.svc.hi { background: var(--peach); border-color: var(--peach); }
.svc.hi .svc-title, .svc.hi .svc-area { color: #fff; }
.svc.hi .svc-body { color: rgba(255,255,255,0.88); }
.svc.hi .svc-pill { color: #fff; background: rgba(255,255,255,0.25); }
.svc-ico { width: 40px; height: 40px; border-radius: var(--rs); background: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem; }
.svc:not(.hi) .svc-ico { background: var(--white); }
.svc-area { font-size: 0.7rem; color: var(--sage); font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 0.35rem; }
.svc-title { font-family: var(--fh); font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 0.4rem; }
.svc-body { font-size: 0.82rem; color: var(--soft); line-height: 1.72; font-weight: 300; }
.svc-pill { display: inline-block; margin-top: 0.85rem; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); background: var(--blue-light); padding: 0.16rem 0.6rem; border-radius: 50px; }

/* WHO GRID */
.who-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.75rem; }
.who-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; padding: 1.5rem 1rem; border-radius: var(--r); border: 1px solid var(--blue-light); background: var(--warm-white); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.who-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(169,200,238,0.2); border-color: var(--blue); }
.who-card:last-child { border-color: var(--peach); background: var(--peach-pale); }
.who-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--soft-cream); display: flex; align-items: center; justify-content: center; }
.who-icon svg { width: 26px; height: 26px; stroke: var(--peach-dark); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.who-card h4 { font-family: var(--fh); font-size: 0.88rem; color: var(--navy); font-weight: 400; line-height: 1.4; }

/* PHOTO STRIP */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 300px; gap: 3px; }
.ps-item { position: relative; overflow: hidden; }
.ps-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ps-item:hover img { transform: scale(1.04); }
.ps-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 0.9rem 0.8rem; background: linear-gradient(transparent, rgba(13,75,90,0.75)); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px; opacity: 0; transition: opacity 0.3s; }
.ps-item:hover .ps-cap { opacity: 1; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.75rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 24px; left: 13%; right: 13%; height: 2px; background: var(--blue-light); }
.step { text-align: center; position: relative; z-index: 1; }
.step-n { width: 48px; height: 48px; border-radius: 50%; background: var(--peach); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 1.05rem; font-weight: 400; margin: 0 auto 1rem; box-shadow: 0 0 0 6px var(--soft-cream); }
.step h4 { font-family: var(--fh); font-size: 0.97rem; color: var(--navy); font-weight: 400; margin-bottom: 0.38rem; }
.step p { font-size: 0.8rem; color: var(--soft); line-height: 1.68; font-weight: 300; }
.step-note { font-size: 0.71rem; color: var(--peach-dark); font-weight: 600; margin-top: 0.45rem; }

/* TESTIMONIALS */
.testi-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.testi { background: var(--white); border-radius: var(--r); padding: 1.65rem; border: 1px solid var(--blue-light); }
.tstars { color: var(--peach-dark); font-size: 0.78rem; letter-spacing: 2.5px; margin-bottom: 0.85rem; }
.tq { font-family: var(--fh); font-size: 0.95rem; font-style: italic; color: var(--navy); line-height: 1.8; margin-bottom: 1.15rem; }
.tau { display: flex; align-items: center; gap: 0.65rem; }
.tav { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.73rem; font-weight: 700; color: var(--navy); }
.tname { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.tloc { font-size: 0.7rem; color: var(--muted); }

/* FAQ */
.faq-list { border: 1px solid var(--blue-light); border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--blue-light); }
.faq-item:last-child { border: none; }
.faq-q { width: 100%; background: var(--white); border: none; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-family: var(--fb); font-size: 0.91rem; font-weight: 600; color: var(--navy); transition: background 0.2s; }
.faq-q:hover, .faq-q.open { background: var(--blue-pale); }
.faq-icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 700; color: var(--navy); transition: transform 0.3s, background 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--peach); color: #fff; }
.faq-a { display: none; padding: 0 1.4rem 1.15rem; font-size: 0.87rem; color: var(--soft); line-height: 1.85; font-weight: 300; background: var(--blue-pale); }
.faq-a.open { display: block; }
.faq-a strong { color: var(--navy); font-weight: 600; }

/* KELLY CIRCULAR */
.kelly-g { display: grid; grid-template-columns: 420px 1fr; min-height: 520px; align-items: center; }
.kelly-circle-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; position: relative; }
.kelly-blob { position: absolute; width: 340px; height: 340px; border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; background: var(--blue-light); opacity: 0.5; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.kelly-circle { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; border: 4px solid var(--blue); box-shadow: 0 12px 40px rgba(169,200,238,0.35); position: relative; z-index: 1; }
.kelly-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.kelly-circle-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--blue-pale), var(--blue-light)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.kelly-circle-av { width: 80px; height: 80px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 2rem; color: #fff; }
.kelly-circle-placeholder p { font-size: 0.78rem; color: var(--navy); font-weight: 600; text-align: center; }
.kelly-badge { position: absolute; bottom: 3rem; right: 0.5rem; background: var(--peach); color: #fff; border-radius: var(--r); padding: 0.8rem 1.1rem; text-align: center; box-shadow: 0 6px 20px rgba(240,132,96,0.35); z-index: 2; }
.kelly-badge-n { font-family: var(--fh); font-size: 1.7rem; font-weight: 400; line-height: 1; }
.kelly-badge-l { font-size: 0.68rem; font-weight: 600; opacity: 0.88; margin-top: 0.2rem; }
.kelly-txt { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.kelly-role { font-size: 0.77rem; font-weight: 600; color: var(--peach-dark); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.4rem; display: block; }
.kelly-txt h2 { font-family: var(--fh); font-size: clamp(1.65rem, 2.4vw, 2.1rem); font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 1.1rem; }
.kelly-txt h2 em { color: var(--sage); font-style: italic; }
.kelly-txt p { color: var(--soft); font-size: 0.91rem; line-height: 1.9; margin-bottom: 0.85rem; font-weight: 300; }
.kelly-quals { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.kq { background: var(--blue-light); border: 1px solid var(--blue); border-radius: 50px; padding: 0.32rem 0.85rem; font-size: 0.73rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 0.35rem; }
.kq::before { content: '✓'; color: var(--peach-dark); }

/* CTA BANNER */
.cta-banner { background: var(--navy); padding: 4rem 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.cta-banner-in { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.cta-banner h2 { font-family: var(--fh); font-size: clamp(1.5rem, 2.5vw, 1.9rem); color: #fff; font-weight: 400; line-height: 1.3; }
.cta-banner h2 em { font-style: italic; color: var(--peach); }
.cta-banner p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin-top: 0.5rem; font-weight: 300; }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem; }
.foot-in { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.foot-logo { height: 48px; object-fit: contain; opacity: 0.9; }
footer p { font-size: 0.76rem; color: rgba(255,255,255,0.45); }
.foot-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.foot-links a { font-size: 0.76rem; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.foot-links a:hover { color: #fff; }

/* MOBILE STICKY */
.mob-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: var(--navy); padding: 0.75rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.12); }
.mob-cta-bar a { display: block; background: var(--peach); color: #fff; text-align: center; padding: 0.85rem; border-radius: 8px; font-size: 0.92rem; font-weight: 600; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .svc-g { grid-template-columns: 1fr 1fr; }
  .testi-g { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .kelly-g { grid-template-columns: 1fr; }
  .kelly-circle-wrap { padding: 3rem 1.5rem; }
  .kelly-circle { width: 240px; height: 240px; }
  .kelly-blob { width: 260px; height: 260px; }
  .kelly-txt { padding: 3rem 2rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .ps-item { height: 180px; }
  .cta-banner-in { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .sec { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3.5rem 1.25rem; }
  .svc-g { grid-template-columns: 1fr; }
  .testi-g { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .ps-item { height: 150px; }
  .trust { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0.75rem 1.25rem; gap: 1.25rem; }
  .trust::-webkit-scrollbar { display: none; }
  footer { padding: 1.75rem 1.25rem; }
  .foot-in { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
  .mob-cta-bar { display: block; }
  body { padding-bottom: 72px; }
  .cta-banner { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: repeat(2,1fr); }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .ps-item { height: 130px; }
}
