:root{
  --navy:#153A63; --navy-deep:#0E2C4C; --seaglass:#7EAEC4;
  --coastal:#D9EAF1; --sage:#A8B89E; --sand:#DCC8A5;
  --warm:#FAF8F4; --grey:#F3F5F6; --text:#3C4654; --text-soft:#5B6573;
  --maxw:1140px; --readw:680px;
  --pad-sec:clamp(72px,9vw,128px);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,sans-serif;
  color:var(--text); background:var(--warm);
  font-size:18px; line-height:1.65; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif;color:var(--navy);font-weight:600;line-height:1.12;letter-spacing:-.01em}
p{max-width:var(--readw)}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}

/* shell */
.shell{display:inline-block;line-height:0}
.shell img{width:100%;height:100%;object-fit:contain;display:block}

/* eyebrow / section label */
.eyebrow{
  font-size:12.5px;font-weight:500;text-transform:uppercase;
  letter-spacing:.2em;color:var(--seaglass);margin-bottom:18px;
  display:flex;align-items:center;gap:12px;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--seaglass);display:inline-block}
.eyebrow.center{justify-content:center}
.eyebrow.center::after{content:"";width:26px;height:1px;background:var(--seaglass);display:inline-block}

/* buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:'Inter';font-weight:600;font-size:13.5px;text-transform:uppercase;
  letter-spacing:.09em;padding:15px 30px;border-radius:2px;cursor:pointer;
  transition:.25s ease;border:1.5px solid var(--navy);white-space:nowrap;
}
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--navy-deep);border-color:var(--navy-deep);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--navy)}
.btn-ghost:hover{background:var(--navy);color:#fff;transform:translateY(-2px)}
.btn-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn-light:hover{background:#fff;color:var(--navy);border-color:#fff}

/* ===== HEADER ===== */
header{
  position:sticky;top:0;z-index:60;background:rgba(250,248,244,.85);
  backdrop-filter:blur(10px);border-bottom:1px solid transparent;transition:.3s;
}
header.scrolled{border-bottom-color:#e8e1d6;box-shadow:0 6px 24px rgba(21,58,99,.05)}
.nav{display:flex;align-items:center;justify-content:space-between;height:84px}
.brand{display:flex;align-items:center;gap:15px}
.brand .shell{width:69px;height:69px;color:var(--navy);flex-shrink:0}
.brand-txt{display:flex;flex-direction:column;line-height:1}
.brand-name{font-family:'Playfair Display';font-weight:600;font-size:27.6px;color:var(--navy);letter-spacing:.04em}
.brand-sub{font-family:'Inter';font-weight:500;font-size:12.6px;text-transform:uppercase;color:var(--seaglass);margin-top:7px;display:flex;align-items:center;justify-content:center;gap:3px}
.brand-sub>span{letter-spacing:.36em;margin-left:-.25px;margin-right:-.36em;white-space:nowrap}
.brand-sub::before,.brand-sub::after{content:"";flex:0 0 auto;width:10px;height:1px;background:var(--seaglass);opacity:.55}
.menu{display:flex;align-items:center;gap:34px;list-style:none}
.menu a{font-family:'Inter';font-weight:500;font-size:13px;text-transform:uppercase;letter-spacing:.06em;color:var(--navy);position:relative;padding:6px 0;transition:.2s}
.menu a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1.5px;background:var(--seaglass);transition:.25s}
.menu a:hover{color:var(--seaglass)}
.menu a:hover::after,.menu a.active::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:20px}
.burger{display:none;background:none;border:0;cursor:pointer;padding:8px;flex-direction:column;gap:5px}
.burger span{width:24px;height:2px;background:var(--navy);transition:.3s;display:block}

/* ===== HERO ===== */
.hero{background:var(--warm);padding:clamp(14px,1.6vw,24px) 0 0}
.hero-frame{position:relative;overflow:hidden;width:100%;min-height:clamp(460px,56vh,560px);display:flex;align-items:center;background-color:var(--warm);background-image:linear-gradient(95deg,rgba(250,248,244,.95) 0%,rgba(250,248,244,.86) 24%,rgba(250,248,244,.5) 44%,rgba(250,248,244,.12) 60%,rgba(250,248,244,0) 74%),url("../images/ocean-hero.jpg?v=2");background-repeat:no-repeat,no-repeat;background-position:center,50% 46%;background-size:cover,cover}
.hero-text{position:relative;z-index:2;max-width:660px;padding:clamp(40px,5vw,68px) clamp(26px,3.4vw,44px) clamp(120px,13vw,164px)}
.hero h1{font-size:25px;font-weight:700;margin-bottom:22px;letter-spacing:-.015em}
.hero h1 .l2{color:var(--seaglass)}
.hero-lead{font-size:clamp(17px,1.4vw,19.5px);color:var(--text-soft);max-width:480px;margin-bottom:38px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.hero-wave{position:absolute;left:-2px;bottom:-1px;width:calc(100% + 4px);height:clamp(64px,9.2vw,108px);z-index:3;display:block}
.hero-wave .wave-blue{fill:var(--coastal)}
.hero-wave .wave-white{fill:var(--warm)}

/* ===== TAGLINE MEDALLION ===== */
.medallion{background:var(--warm);text-align:center;padding:18px 0 8px}
.medallion .shell{width:93px;height:93px;color:var(--navy);margin:0 auto 18px}
.medallion-line{display:flex;align-items:center;justify-content:center;gap:22px}
.medallion-line span{width:48px;height:1px;background:#cdbfa8}
.medallion-tag{font-family:'Cormorant Garamond';font-style:italic;font-weight:600;font-size:clamp(20px,2.3vw,27px);color:var(--text-soft)}

/* ===== HELP / GLANCE ROW ===== */
.help{background:var(--warm);padding:clamp(40px,5vw,64px) 0 var(--pad-sec)}
.help h2{text-align:center;font-size:clamp(27px,3vw,38px);margin-bottom:56px}
.glance{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.glance-item{text-align:center;padding:0 8px;position:relative}
.glance-item+.glance-item::before{content:"";position:absolute;left:0;top:8px;bottom:8px;width:1px;background:#eadfce}
.glance-ic{width:60px;height:60px;border-radius:50%;background:var(--grey);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;color:var(--navy)}
.glance-ic svg{width:27px;height:27px}
.glance-item h3{font-family:'Inter';font-weight:600;font-size:15.5px;color:var(--navy);margin-bottom:9px;letter-spacing:.01em}
.glance-item p{font-size:13.5px;color:var(--text-soft);line-height:1.5;max-width:none;margin:0 auto}

/* ===== GENERIC SECTION ===== */
section{padding:var(--pad-sec) 0}
.bg-warm{background:var(--warm)}
.bg-grey{background:var(--grey)}
.bg-coastal{background:var(--coastal)}
.intro{text-align:center}
.intro .eyebrow{justify-content:center}
.intro h2{font-size:clamp(28px,3.4vw,44px);max-width:760px;margin:0 auto 24px}
.intro p{margin:0 auto;color:var(--text-soft);font-size:19px}

/* feature cards */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:64px}
.fcard{background:var(--warm);border:1px solid #ece4d6;border-radius:4px;padding:42px 34px;transition:.3s}
.bg-warm .fcard{background:#fff}
.fcard:hover{transform:translateY(-5px);box-shadow:0 18px 40px rgba(21,58,99,.08);border-color:var(--coastal)}
.fcard h3{font-size:23px;margin-bottom:14px}
.fcard .lead{font-size:15.5px;color:var(--text-soft);margin-bottom:20px}
.flist{list-style:none}
.flist li{font-size:15px;color:var(--text);padding:9px 0 9px 26px;position:relative;border-top:1px solid #eee7da;line-height:1.5}
.bg-warm .flist li{border-top-color:#eef0f2}
.flist li:first-child{border-top:0}
.flist li::before{content:"";position:absolute;left:2px;top:17px;width:8px;height:8px;border-radius:50%;background:var(--sage)}

/* pull quote band */
.quoteband{position:relative;background:var(--navy);color:#fff;text-align:center;padding:clamp(80px,9vw,120px) 0;overflow:hidden}
.quoteband .shell{position:absolute;right:-30px;bottom:-40px;width:510px;height:510px;color:#fff;opacity:.06;pointer-events:none}
.quoteband .shell.l{left:-40px;right:auto;top:-50px;bottom:auto}
.quoteband .eyebrow{color:var(--seaglass);justify-content:center}
.quoteband .eyebrow::before,.quoteband .eyebrow::after{background:var(--seaglass)}
.quoteband p{font-family:'Playfair Display';font-weight:500;font-style:normal;font-size:clamp(26px,3.6vw,42px);color:#fff;max-width:880px;margin:0 auto;line-height:1.28}
.quoteband .small{font-family:'Inter';font-size:15px;color:var(--coastal);max-width:560px;margin:26px auto 0;line-height:1.6;font-style:normal}

/* services detail */
.svc-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:60px}
.svc{background:#fff;border:1px solid #e9eef1;border-radius:4px;padding:40px 38px;display:flex;flex-direction:column;transition:.3s}
.bg-coastal .svc{background:var(--warm);border-color:#cfe0e9}
.svc:hover{box-shadow:0 16px 40px rgba(21,58,99,.08);transform:translateY(-4px)}
.svc-head{display:flex;align-items:center;gap:16px;margin-bottom:24px}
.svc-ic{width:52px;height:52px;border-radius:3px;background:var(--coastal);color:var(--navy);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.bg-coastal .svc-ic{background:#fff}
.svc-ic svg{width:26px;height:26px}
.svc h3{font-size:21px}
.svc ul{list-style:none}
.svc li{font-size:15px;padding:8px 0 8px 24px;position:relative;color:var(--text);border-top:1px solid #f0f0f0;line-height:1.5}
.bg-coastal .svc li{border-top-color:#dde9ef}
.svc li:first-child{border-top:0}
.svc li::before{content:"";position:absolute;left:0;top:15px;width:11px;height:1.5px;background:var(--seaglass)}
.svc-foot{text-align:center;max-width:640px;margin:52px auto 0;color:var(--text-soft);font-size:17px}

/* about */
.about-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:clamp(40px,5vw,80px);align-items:center}
.about-photo{position:relative}
.about-photo img{width:100%;border-radius:5px;box-shadow:0 24px 60px rgba(21,58,99,.16)}
.about-photo::before{content:"";position:absolute;left:-18px;top:-18px;width:120px;height:120px;border:1.5px solid var(--sage);border-radius:5px;z-index:-1}
.about-body h2{font-size:clamp(28px,3.2vw,42px);margin:6px 0 8px}
.about-cred{font-family:'Inter';font-weight:500;font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:var(--seaglass);margin-bottom:24px}
.about-body p{color:var(--text-soft);margin-bottom:18px;font-size:17px}
.about-pull{font-family:'Cormorant Garamond';font-style:italic;font-weight:600;font-size:25px;color:var(--navy);border-left:3px solid var(--sage);padding:6px 0 6px 22px;margin:28px 0 32px;line-height:1.3}

/* contact */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(40px,6vw,90px);align-items:start}
.contact-body h2{font-size:clamp(30px,3.6vw,46px);margin-bottom:22px}
.contact-body p{color:var(--text-soft);margin-bottom:18px;font-size:18px}
.contact-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:32px}
.contact-card{background:#fff;border:1px solid #e9eef1;border-radius:5px;padding:40px;box-shadow:0 16px 44px rgba(21,58,99,.07)}
.accred-strip{margin-top:clamp(46px,6vw,74px);padding-top:clamp(28px,3.6vw,44px);border-top:1px solid rgba(21,58,99,.13);text-align:center}
.accred-label{display:block;font-family:'Inter';font-weight:500;font-size:12px;text-transform:uppercase;letter-spacing:.18em;color:var(--seaglass);margin-bottom:clamp(20px,2.4vw,30px)}
.accred{display:flex;align-items:center;justify-content:center;gap:clamp(26px,4.6vw,66px);flex-wrap:wrap}
.accred a{display:block;line-height:0;transition:opacity .25s ease,transform .25s ease}
.accred a:hover{opacity:.7;transform:translateY(-2px)}
.accred img{display:block;width:auto}
.accred-atainz{height:clamp(62px,6vw,82px)}
.accred-xero{height:clamp(42px,4vw,56px)}
.accred-fergus{height:clamp(30px,2.9vw,40px)}
.cinfo{display:flex;gap:16px;align-items:flex-start;padding:20px 0;border-top:1px solid #eef2f4}
.cinfo:first-of-type{border-top:0;padding-top:0}
.cinfo-ic{width:44px;height:44px;border-radius:50%;background:var(--coastal);color:var(--navy);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cinfo-ic svg{width:20px;height:20px}
.cinfo-l{font-size:12px;text-transform:uppercase;letter-spacing:.14em;color:var(--seaglass);font-weight:500;margin-bottom:3px}
.cinfo-v{font-size:16px;color:var(--navy);font-weight:500}
.cinfo-v a:hover{color:var(--seaglass)}
.socials{display:flex;gap:14px;margin-top:30px}
.socials a{width:42px;height:42px;border-radius:50%;border:1.5px solid rgba(21,58,99,.2);background:transparent;display:flex;align-items:center;justify-content:center;color:var(--navy);transition:.25s}
.socials a:hover{background:var(--navy);color:#fff;border-color:var(--navy);transform:translateY(-3px)}
.socials svg{width:19px;height:19px}

/* footer */
footer{background:var(--navy-deep);color:#cdd9e6;position:relative;overflow:hidden}
.foot-wave{display:block;width:100%;height:80px;color:var(--coastal)}
.foot-inner{padding:72px 0 0}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px}
.foot-brand .shell{width:78px;height:78px;color:#fff;margin-bottom:18px}
.foot-name{font-family:'Playfair Display';font-weight:600;font-size:22px;color:#fff;letter-spacing:.05em}
.foot-sub{font-family:'Inter';font-size:10px;text-transform:uppercase;letter-spacing:.34em;color:var(--seaglass);margin:6px 0 22px}
.foot-brand p{font-size:14.5px;color:#aebfd1;max-width:320px;line-height:1.6}
.foot-col h4{font-family:'Inter';font-size:12px;text-transform:uppercase;letter-spacing:.16em;color:var(--seaglass);margin-bottom:20px;font-weight:600}
.foot-col ul{list-style:none}
.foot-col li{margin-bottom:13px}
.foot-col a,.foot-col span{font-size:14.5px;color:#bccadb;transition:.2s;display:flex;gap:10px;align-items:flex-start}
.foot-col a:hover{color:#fff}
.foot-col svg{width:16px;height:16px;color:var(--seaglass);flex-shrink:0;margin-top:2px}
.foot-tag{font-family:'Cormorant Garamond';font-style:italic;font-size:21px;color:#8fb6cf}
.foot-tag+p{font-size:14.5px;color:#aebfd1;margin-top:8px;max-width:240px;line-height:1.6}
.foot-bot{border-top:1px solid rgba(255,255,255,.1);margin-top:60px;padding:26px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;font-size:13px;color:#8497ad}
.foot-bot .socials a{border-color:rgba(255,255,255,.2);background:transparent;color:#cdd9e6;width:38px;height:38px}
.foot-bot .socials a:hover{background:#fff;color:var(--navy);border-color:#fff}

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

/* responsive */
@media(max-width:980px){
  .hero-frame{min-height:auto;background-image:linear-gradient(180deg,rgba(250,248,244,.85) 0%,rgba(250,248,244,.68) 45%,rgba(250,248,244,.82) 100%),url("../images/ocean-hero.jpg?v=2")}
  .hero-text{max-width:none;padding:92px 10px clamp(90px,24vw,122px)}
  .hero-wave{height:clamp(44px,12vw,68px)}
  .glance{grid-template-columns:repeat(2,1fr);gap:36px 18px}
  .glance-item+.glance-item::before{display:none}
  .features{grid-template-columns:1fr;gap:22px;margin-top:46px}
  .svc-grid{grid-template-columns:1fr;gap:22px}
  .about-grid{grid-template-columns:1fr;gap:44px}
  .about-photo{max-width:380px}
  .contact-grid{grid-template-columns:1fr;gap:44px}
  .foot-grid{grid-template-columns:1fr 1fr;gap:40px}
  .foot-brand{grid-column:1/-1}
}
@media(max-width:640px){
  body{font-size:17px}
  .menu,.nav-cta .btn{display:none}
  .burger{display:flex}
  .menu.open{display:flex;position:absolute;top:84px;left:0;right:0;flex-direction:column;background:var(--warm);padding:24px 28px;gap:8px;border-bottom:1px solid #e8e1d6;box-shadow:0 12px 30px rgba(21,58,99,.08)}
  .menu.open a{padding:12px 0;width:100%;font-size:15px}
  .menu.open a::after{display:none}
  .glance{grid-template-columns:1fr;gap:30px}
  .foot-grid{grid-template-columns:1fr}
  .foot-bot{flex-direction:column;align-items:flex-start}
  .hero-btns .btn,.contact-actions .btn{flex:1}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;transition:none}
  .btn:hover,.fcard:hover,.svc:hover,.socials a:hover{transform:none}
}