/* ── Reset & tokens ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --navy:        #1f2421;
  --navy-mid:    #2c3830;
  --navy-light:  #3d4a3f;
  --accent:      #7baf8e;
  --accent-dk:   #5d9472;
  --accent-glow: rgba(123,175,142,.18);
  --white:       #fdfcf9;
  --off-white:   #f4f1eb;
  --stone:       #e5e0d8;
  --gray-mid:    #b0a99e;
  --gray-dark:   #6b625a;
  --text:        #2a2420;
  --display:'Fraunces',Georgia,serif;
  --body:'Plus Jakarta Sans',system-ui,sans-serif;
  --nav-h:72px;
  --section-py:7rem;
  --ease-out:cubic-bezier(.16,1,.3,1);
  --ease-in-out:cubic-bezier(.4,0,.2,1);
}

html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--body);color:var(--text);background:var(--white);overflow-x:hidden;line-height:1.7}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1160px,100% - 3rem);margin-inline:auto}

/* ── Reveal ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s var(--ease-out)}
.reveal.in{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ── Typography ── */
.label{display:inline-flex;align-items:center;gap:.6rem;font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--accent)}
.label::before{content:'';width:24px;height:1px;background:var(--accent)}
.section-title{font-family:var(--display);font-size:clamp(2.2rem,4.5vw,3.2rem);font-weight:700;line-height:1.12;color:var(--navy)}
.section-title em{font-style:italic;font-weight:400;color:var(--accent)}
.section-body{font-size:1.05rem;font-weight:300;color:var(--gray-dark);line-height:1.85;max-width:54ch}
.rule{width:44px;height:2px;background:var(--accent);margin:1.25rem 0 1.6rem}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.82rem 1.8rem;font-family:var(--body);font-size:.84rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;border:none;border-radius:4px;cursor:pointer;transition:all .25s var(--ease-in-out)}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:var(--accent-dk);transform:translateY(-2px);box-shadow:0 8px 24px rgba(93,148,114,.35)}
.btn-outline{background:transparent;color:var(--navy);border:1.5px solid var(--stone)}
.btn-outline:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
.btn-ghost-light{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.35);border-radius:4px}
.btn-ghost-light:hover{background:rgba(255,255,255,.08);border-color:var(--white);transform:translateY(-2px)}

/* ── Nav ── */
#nav{position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:500;background:rgba(31,36,33,.97);backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,.07);transition:box-shadow .3s ease}
#nav.scrolled{box-shadow:0 4px 40px rgba(0,0,0,.28)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:100%}
.nav-logo{display:flex;align-items:center;gap:.7rem;transition:opacity .2s}
.nav-logo:hover{opacity:.85}
.logo-icon{width:36px;height:36px;background:var(--accent);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .4s var(--ease-out);overflow:hidden}
.nav-logo:hover .logo-icon{transform:rotate(-8deg) scale(1.08)}
.logo-icon svg{width:18px;height:18px;fill:none;stroke:#fff;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.logo-words{display:flex;flex-direction:column}
.logo-name{font-family:var(--display);font-size:1.18rem;font-weight:700;color:var(--white);letter-spacing:.01em;line-height:1}
.logo-sub{font-size:.58rem;font-weight:400;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-top:2px}
.nav-links{display:flex;align-items:center;gap:2.2rem;list-style:none}
.nav-links a{font-size:.8rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.6);transition:color .2s;position:relative;padding-bottom:2px}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--accent);transition:width .3s var(--ease-out)}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-cta{font-size:.78rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;padding:.52rem 1.2rem;background:var(--accent);color:var(--white);border-radius:4px;transition:background .2s,transform .2s}
.nav-cta:hover{background:var(--accent-dk);transform:translateY(-1px)}

/* ── Hamburger ── */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;z-index:600}
.hamburger span{display:block;width:25px;height:2px;background:var(--white);border-radius:2px;transition:all .35s var(--ease-out);transform-origin:center}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;inset:0;background:var(--navy);z-index:550;flex-direction:column;align-items:center;justify-content:center;gap:2.5rem;opacity:0;pointer-events:none;transition:opacity .35s ease}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-menu a{font-family:var(--display);font-size:2.8rem;font-weight:700;color:rgba(255,255,255,.75);transition:color .2s}
.mobile-menu a:hover{color:var(--accent)}

/* ── Page Hero (sub-pages) ── */
.page-hero{background:var(--navy);padding:calc(var(--nav-h) + 4rem) 0 4rem;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");opacity:.5;pointer-events:none}
.page-hero-inner{position:relative;z-index:1}
.page-hero .label{margin-bottom:1rem}
.page-hero-title{font-family:var(--display);font-size:clamp(2.8rem,5vw,4.2rem);font-weight:700;color:var(--white);line-height:1.08;margin-bottom:1rem}
.page-hero-title em{font-style:italic;font-weight:400;color:var(--accent)}
.page-hero-sub{font-size:1.05rem;font-weight:300;color:rgba(255,255,255,.55);line-height:1.8;max-width:52ch}
.page-hero-geo{position:absolute;inset:0;pointer-events:none}
.geo-ring{position:absolute;border-radius:50%;border:1px solid rgba(123,175,142,.1)}
.geo-ring:nth-child(1){width:500px;height:500px;top:-180px;right:-180px}
.geo-ring:nth-child(2){width:300px;height:300px;bottom:-100px;left:-100px;border-color:rgba(255,255,255,.04)}
.dot-grid{position:absolute;top:0;right:0;width:340px;height:340px;background-image:radial-gradient(rgba(123,175,142,.18) 1px,transparent 1px);background-size:28px 28px;mask-image:radial-gradient(ellipse 70% 70% at 80% 20%,black 0%,transparent 80%);-webkit-mask-image:radial-gradient(ellipse 70% 70% at 80% 20%,black 0%,transparent 80%)}

/* ── Homepage Hero ── */
#home{min-height:100svh;padding-top:var(--nav-h);background:var(--navy);display:flex;align-items:center;position:relative;overflow:hidden}
#home::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");opacity:.5;pointer-events:none}
.hero-geo{position:absolute;inset:0;pointer-events:none}
.hero-line-h{position:absolute;height:1px;width:180px;top:32%;left:0;background:linear-gradient(to right,rgba(123,175,142,.25),transparent)}
.hero-line-v{position:absolute;width:1px;height:140px;bottom:22%;right:24%;background:linear-gradient(to bottom,rgba(123,175,142,.25),transparent)}
.hero-content{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:4rem;align-items:center;padding:6rem 0;width:100%}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.6rem;background:rgba(123,175,142,.12);border:1px solid rgba(123,175,142,.25);border-radius:100px;padding:.38rem .9rem;font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:1.5rem}
.hero-eyebrow svg{width:12px;height:12px;fill:var(--accent)}
.hero-title{font-family:var(--display);font-size:clamp(3rem,6vw,4.8rem);font-weight:700;color:var(--white);line-height:1.08;margin-bottom:1.5rem}
.hero-title em{font-style:italic;font-weight:400;color:var(--accent)}
.hero-sub{font-size:1.08rem;font-weight:300;color:rgba(255,255,255,.58);line-height:1.82;margin-bottom:2.5rem;max-width:48ch}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-trust{display:flex;gap:1.5rem;flex-wrap:wrap;margin-top:3rem;padding-top:2.5rem;border-top:1px solid rgba(255,255,255,.08)}
.trust-item{display:flex;align-items:center;gap:.5rem}
.trust-item svg{width:14px;height:14px;fill:none;stroke:var(--accent);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.trust-item span{font-size:.8rem;font-weight:400;color:rgba(255,255,255,.45)}
.hero-cards{display:flex;flex-direction:column;gap:1.1rem}
.hc{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:10px;padding:1.2rem 1.4rem;display:flex;align-items:flex-start;gap:1rem;transition:background .3s,border-color .3s,transform .3s}
.hc:hover{background:rgba(123,175,142,.08);border-color:rgba(123,175,142,.25);transform:translateX(4px)}
.hc-icon{width:40px;height:40px;flex-shrink:0;background:rgba(123,175,142,.15);border-radius:8px;display:flex;align-items:center;justify-content:center}
.hc-icon svg{width:18px;height:18px;fill:none;stroke:var(--accent);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hc-title{font-size:.92rem;font-weight:600;color:var(--white);margin-bottom:.18rem}
.hc-body{font-size:.8rem;font-weight:300;color:rgba(255,255,255,.48);line-height:1.55}
.scroll-cue{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.5rem;color:rgba(255,255,255,.28);font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;animation:cue 2.8s ease-in-out infinite}
.scroll-cue-line{width:1px;height:38px;background:linear-gradient(to bottom,rgba(123,175,142,.5),transparent)}
@keyframes cue{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)}}

/* ── Why Us ── */
#why{padding:var(--section-py) 0;background:var(--white)}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.why-visual{position:relative;display:flex;flex-direction:column;gap:1rem}
.why-quote-banner{background:linear-gradient(135deg,var(--navy-mid),var(--navy));border-radius:10px;padding:2rem;border-left:3px solid var(--accent);position:relative;overflow:hidden}
.why-quote-banner::before{content:'';position:absolute;top:0;right:0;width:140px;height:140px;background-image:radial-gradient(rgba(123,175,142,.18) 1px,transparent 1px);background-size:18px 18px;mask-image:radial-gradient(ellipse 80% 80% at 100% 0%,black,transparent 80%);-webkit-mask-image:radial-gradient(ellipse 80% 80% at 100% 0%,black,transparent 80%)}
.why-quote-text{font-family:var(--display);font-style:italic;font-size:1.05rem;color:rgba(255,255,255,.8);line-height:1.6;position:relative;z-index:1}
.why-stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem}
.why-stat{background:var(--off-white);border:1px solid var(--stone);border-radius:8px;padding:1.25rem 1rem;text-align:center;transition:border-color .25s,transform .25s}
.why-stat:hover{border-color:var(--accent);transform:translateY(-3px)}
.why-stat-num{font-family:var(--display);font-size:1.9rem;font-weight:700;color:var(--navy);line-height:1;margin-bottom:.3rem;white-space:nowrap}
.why-stat-label{font-size:.72rem;font-weight:500;color:var(--gray-dark);line-height:1.4}
.why-badges{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.why-badge{display:flex;align-items:center;gap:.75rem;background:var(--off-white);border:1px solid var(--stone);border-radius:8px;padding:.9rem 1rem;transition:border-color .25s}
.why-badge:hover{border-color:var(--accent)}
.why-badge-icon{width:34px;height:34px;flex-shrink:0;background:var(--accent-glow);border-radius:6px;display:flex;align-items:center;justify-content:center}
.why-badge-icon svg{width:16px;height:16px;fill:none;stroke:var(--accent);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.why-badge-text strong{display:block;font-size:.82rem;font-weight:600;color:var(--navy);line-height:1.2}
.why-badge-text span{font-size:.72rem;color:var(--gray-dark)}
.why-pillars{list-style:none;margin-top:2rem;display:flex;flex-direction:column;gap:1.1rem}
.pillar{display:flex;align-items:flex-start;gap:1rem}
.pillar-icon{width:34px;height:34px;flex-shrink:0;background:var(--off-white);border:1px solid var(--stone);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-top:2px}
.pillar-icon svg{width:14px;height:14px;fill:none;stroke:var(--accent);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.pillar-title{font-size:.92rem;font-weight:600;color:var(--navy);margin-bottom:.15rem}
.pillar-body{font-size:.85rem;font-weight:300;color:var(--gray-dark);line-height:1.6}
.server-callout{margin-top:2.5rem;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);border-radius:10px;padding:1.5rem;display:flex;gap:1.1rem;align-items:flex-start;border:1px solid rgba(123,175,142,.2)}
.server-callout-icon{width:42px;height:42px;flex-shrink:0;background:rgba(123,175,142,.15);border-radius:8px;display:flex;align-items:center;justify-content:center}
.server-callout-icon svg{width:20px;height:20px;fill:none;stroke:var(--accent);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.server-callout-title{font-size:.92rem;font-weight:600;color:var(--white);margin-bottom:.25rem}
.server-callout-body{font-size:.83rem;font-weight:300;color:rgba(255,255,255,.5);line-height:1.65}

/* ── Services ── */
#services{padding:var(--section-py) 0;background:var(--off-white);position:relative}
#services::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:var(--stone)}
.services-hdr{text-align:center;max-width:52ch;margin:0 auto 4rem}
.services-hdr .rule{margin-inline:auto}
.services-hdr .section-body{margin-inline:auto}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;background:var(--stone);border:1.5px solid var(--stone)}
.svc-card{background:var(--white);padding:2.5rem 2rem;position:relative;overflow:hidden;transition:background .3s;cursor:default}
.svc-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--accent);transition:width .5s var(--ease-out)}
.svc-card:hover{background:var(--navy)}
.svc-card:hover::after{width:100%}
.svc-card:hover .svc-num{color:rgba(255,255,255,.25)}
.svc-card:hover .svc-icon-wrap{background:rgba(123,175,142,.15);border-color:rgba(123,175,142,.3)}
.svc-card:hover .svc-icon-wrap svg{stroke:var(--accent)}
.svc-card:hover .svc-title{color:var(--white)}
.svc-card:hover .svc-body{color:rgba(255,255,255,.55)}
.svc-card:hover .svc-feat{background:rgba(123,175,142,.12);border-color:rgba(123,175,142,.2);color:rgba(255,255,255,.6)}
.svc-num{font-size:.7rem;font-weight:600;letter-spacing:.15em;color:var(--gray-mid);margin-bottom:1.5rem;transition:color .3s}
.svc-icon-wrap{width:50px;height:50px;border:1px solid var(--stone);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.3rem;transition:all .3s}
.svc-icon-wrap svg{width:22px;height:22px;fill:none;stroke:var(--navy-mid);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:stroke .3s}
.svc-title{font-family:var(--display);font-size:1.4rem;font-weight:700;color:var(--navy);margin-bottom:.7rem;line-height:1.22;transition:color .3s}
.svc-body{font-size:.88rem;font-weight:300;color:var(--gray-dark);line-height:1.75;margin-bottom:1.25rem;transition:color .3s}
.svc-feats{display:flex;flex-wrap:wrap;gap:.4rem}
.svc-feat{font-size:.68rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;padding:.22rem .6rem;border-radius:100px;background:var(--off-white);border:1px solid var(--stone);color:var(--gray-dark);transition:all .3s}

/* ── About ── */
#about{padding:var(--section-py) 0;background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr;gap:3rem;justify-items:center}
.about-grid>div{width:100%}
.about-text-eyebrow{display:block;margin:0 auto 1rem;text-align:center}
.about-intro{font-size:1.08rem;font-weight:300;color:var(--gray-dark);line-height:1.85;margin-bottom:1.25rem}
.about-promise{background:var(--off-white);border-left:3px solid var(--accent);padding:1.2rem 1.5rem;margin:1.75rem 0;font-family:var(--display);font-style:italic;font-size:1.05rem;color:var(--navy);line-height:1.6}
.about-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.75rem}
.chip{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem 1rem;border-radius:100px;background:var(--off-white);border:1px solid var(--stone);font-size:.78rem;font-weight:500;color:var(--navy)}
.chip svg{width:13px;height:13px;fill:none;stroke:var(--accent);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.about-visual{position:relative;margin:2rem auto 0;width:100%}
.about-img-main{width:100%;max-width:320px;aspect-ratio:3/4;background:linear-gradient(150deg,var(--navy-mid),var(--navy));border-radius:8px;overflow:hidden;position:relative;margin:0 auto}
.about-photo{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.about-img-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(31,36,33,.85),transparent);color:var(--white);font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:1.5rem 1rem .75rem}
.about-img-main::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(123,175,142,.15) 1px,transparent 1px);background-size:24px 24px}
.about-bracket-2{position:absolute;bottom:-18px;right:-18px;width:52px;height:52px;border-bottom:3px solid var(--accent);border-right:3px solid var(--accent)}

/* ── Portfolio ── */
#portfolio{padding:var(--section-py) 0;background:var(--off-white);position:relative}
#portfolio::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:var(--stone)}
.portfolio-hdr{text-align:center;max-width:52ch;margin:0 auto 1rem}
.portfolio-hdr .rule{margin-inline:auto}
.port-filters{display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap;margin:2.5rem 0 3rem}
.pf-btn{font-family:var(--body);font-size:.76rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:.48rem 1.2rem;border:1.5px solid var(--stone);background:var(--white);color:var(--gray-dark);border-radius:6px;cursor:pointer;transition:all .22s ease}
.pf-btn:hover{border-color:var(--accent);color:var(--accent)}
.pf-btn.active{background:var(--accent);border-color:var(--accent);color:var(--white)}
.port-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
.port-card{position:relative;border-radius:8px;overflow:hidden;cursor:pointer;aspect-ratio:16/10;border:1px solid var(--stone);transition:transform .25s ease,box-shadow .25s ease}
.port-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.15)}
.port-card.hidden{display:none}
.port-overlay{position:absolute;inset:0;background:rgba(10,20,15,.65);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;opacity:0;transition:opacity .22s ease}
.port-card:hover .port-overlay{opacity:1}
.port-overlay span{font-family:var(--display);font-size:.95rem;font-weight:700;color:#fff;text-align:center;padding:.5rem 1rem;letter-spacing:.02em}
.port-overlay::after{content:'▶  Click to preview';font-family:var(--body);font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.75);background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);padding:.4rem 1rem;border-radius:100px}
.port-overlay--external::after{content:'↗  Visit Live Site'}
.port-cta{text-align:center;padding:2.5rem;background:var(--white);border:1px solid var(--stone);border-radius:12px;max-width:560px;margin-inline:auto;margin-top:3.5rem}
.port-cta .label{justify-content:center;margin-bottom:.75rem}
.port-cta p{font-size:1rem;font-weight:300;color:var(--gray-dark);margin-bottom:1.5rem;max-width:46ch;margin-inline:auto}
.port-cta-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ── Pricing ── */
#pricing{padding:var(--section-py) 0;background:var(--white);position:relative}
#pricing::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:var(--stone)}
.pricing-hdr{text-align:center;max-width:52ch;margin:0 auto 4rem}
.pricing-hdr .rule{margin-inline:auto}
.pricing-hdr .section-body{margin-inline:auto}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;background:var(--stone);border:1.5px solid var(--stone);border-radius:12px;overflow:hidden;margin-bottom:1.5rem}
.price-card{background:var(--white);padding:2.5rem 2rem;position:relative;display:flex;flex-direction:column;transition:background .3s}
.price-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--accent);transition:width .5s var(--ease-out)}
.price-card:hover{background:var(--navy)}
.price-card:hover::after{width:100%}
.price-card:hover .price-tier-label{color:rgba(255,255,255,.35)}
.price-card:hover .price-amount{color:var(--white)}
.price-card:hover .price-period{color:rgba(255,255,255,.4)}
.price-card:hover .price-desc{color:rgba(255,255,255,.5)}
.price-card:hover .price-divider{background:rgba(255,255,255,.1)}
.price-card:hover .price-feature{color:rgba(255,255,255,.7)}
.price-card:hover .price-feature::before{color:var(--accent)}
.price-card:hover .price-badge{background:rgba(123,175,142,.15);color:var(--accent);border-color:rgba(123,175,142,.3)}
.price-card:hover .btn-price{background:var(--accent);color:var(--white);border-color:var(--accent)}
.price-card.featured{background:var(--navy)}
.price-card.featured::before{content:'MOST POPULAR';position:absolute;top:0;left:50%;transform:translateX(-50%);background:var(--accent);color:var(--white);font-size:.6rem;font-weight:700;letter-spacing:.15em;padding:.28rem .9rem;border-radius:0 0 6px 6px}
.price-card.featured .price-tier-label{color:rgba(255,255,255,.35)}
.price-card.featured .price-amount{color:var(--white)}
.price-card.featured .price-period{color:rgba(255,255,255,.4)}
.price-card.featured .price-desc{color:rgba(255,255,255,.5)}
.price-card.featured .price-divider{background:rgba(255,255,255,.1)}
.price-card.featured .price-feature{color:rgba(255,255,255,.7)}
.price-card.featured .price-feature::before{color:var(--accent)}
.price-card.featured .btn-price{background:var(--accent);color:var(--white);border-color:var(--accent)}
.price-tier-label{font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--gray-mid);margin-bottom:1.25rem;transition:color .3s}
.price-amount{font-family:var(--display);font-size:3rem;font-weight:700;color:var(--navy);line-height:1;margin-bottom:.25rem;transition:color .3s}
.price-period{font-size:.78rem;color:var(--gray-mid);margin-bottom:1rem;transition:color .3s}
.price-desc{font-size:.85rem;font-weight:300;color:var(--gray-dark);line-height:1.6;margin-bottom:1.25rem;transition:color .3s}
.price-divider{height:1px;background:var(--stone);margin-bottom:1.25rem;transition:background .3s}
.price-features{list-style:none;display:flex;flex-direction:column;gap:.6rem;flex:1;margin-bottom:1.75rem}
.price-feature{font-size:.83rem;color:var(--gray-dark);display:flex;align-items:flex-start;gap:.6rem;transition:color .3s;line-height:1.45}
.price-feature::before{content:'✓';color:var(--accent);font-size:.78rem;font-weight:700;flex-shrink:0;margin-top:.05rem;transition:color .3s}
.price-badge{display:inline-block;font-size:.63rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.2rem .6rem;border-radius:100px;background:var(--off-white);border:1px solid var(--stone);color:var(--gray-dark);margin-bottom:1.5rem;transition:all .3s}
.btn-price{display:flex;align-items:center;justify-content:center;width:100%;padding:.78rem 1.5rem;font-family:var(--body);font-size:.82rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;border-radius:6px;border:1.5px solid var(--stone);background:transparent;color:var(--navy);cursor:pointer;text-decoration:none;transition:all .25s ease;margin-top:auto}
.btn-price:hover{background:var(--accent);color:var(--white);border-color:var(--accent);transform:translateY(-2px)}
.delivery-hdr{text-align:center;margin:4rem 0 2rem}
.delivery-hdr .label{justify-content:center;margin-bottom:.5rem}
.delivery-hdr h3{font-family:var(--display);font-size:1.8rem;font-weight:700;color:var(--navy);margin-bottom:.5rem}
.delivery-hdr p{font-size:.95rem;color:var(--gray-dark);font-weight:300}
.delivery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;background:var(--stone);border:1.5px solid var(--stone);border-radius:12px;overflow:hidden;margin-bottom:2rem}
.delivery-card{background:var(--white);padding:2rem 1.75rem;display:flex;flex-direction:column;position:relative;overflow:hidden;transition:background .3s}
.delivery-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--accent);transition:width .5s var(--ease-out)}
.delivery-card:hover{background:var(--navy)}
.delivery-card:hover::after{width:100%}
.delivery-card:hover .del-badge{background:rgba(123,175,142,.15);color:var(--accent);border-color:rgba(123,175,142,.3)}
.delivery-card:hover .del-name,.delivery-card:hover .del-price{color:var(--white)}
.delivery-card:hover .del-period{color:rgba(255,255,255,.4)}
.delivery-card:hover .del-desc{color:rgba(255,255,255,.5)}
.delivery-card:hover .del-divider{background:rgba(255,255,255,.1)}
.delivery-card:hover .del-feature{color:rgba(255,255,255,.65)}
.delivery-card:hover .del-feature::before{color:var(--accent)}
.delivery-card:hover .del-no::before{color:rgba(255,255,255,.25)}
.delivery-card:hover .btn-price{background:var(--accent);color:var(--white);border-color:var(--accent)}
.delivery-card.featured-del{background:var(--navy)}
.delivery-card.featured-del::before{content:'BEST VALUE';position:absolute;top:0;left:50%;transform:translateX(-50%);background:var(--accent);color:var(--white);font-size:.6rem;font-weight:700;letter-spacing:.15em;padding:.28rem .9rem;border-radius:0 0 6px 6px}
.delivery-card.featured-del .del-badge{display:none}
.delivery-card.featured-del .del-name,.delivery-card.featured-del .del-price{color:var(--white)}
.delivery-card.featured-del .del-period{color:rgba(255,255,255,.4)}
.delivery-card.featured-del .del-desc{color:rgba(255,255,255,.5)}
.delivery-card.featured-del .del-divider{background:rgba(255,255,255,.1)}
.delivery-card.featured-del .del-feature{color:rgba(255,255,255,.65)}
.delivery-card.featured-del .del-feature::before{color:var(--accent)}
.delivery-card.featured-del .del-no::before{color:rgba(255,255,255,.25)}
.delivery-card.featured-del .btn-price{background:var(--accent);color:var(--white);border-color:var(--accent)}
.del-badge{display:inline-block;font-size:.6rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.22rem .7rem;border-radius:100px;background:var(--off-white);border:1px solid var(--stone);color:var(--gray-dark);margin-bottom:1.25rem;align-self:flex-start}
.del-name{font-family:var(--display);font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:.3rem;line-height:1.2}
.del-price{font-family:var(--display);font-size:2.2rem;font-weight:700;color:var(--navy);line-height:1;margin-bottom:.2rem}
.del-period{font-size:.78rem;color:var(--gray-mid);margin-bottom:.9rem}
.del-desc{font-size:.82rem;font-weight:300;color:var(--gray-dark);line-height:1.6;margin-bottom:1.1rem}
.del-divider{height:1px;background:var(--stone);margin-bottom:1.1rem}
.del-features{list-style:none;display:flex;flex-direction:column;gap:.55rem;flex:1;margin-bottom:1.5rem}
.del-feature{font-size:.82rem;color:var(--gray-dark);display:flex;align-items:flex-start;gap:.6rem;line-height:1.45}
.del-feature::before{content:'✓';color:var(--accent);font-size:.75rem;font-weight:700;flex-shrink:0;margin-top:.05rem}
.del-no::before{content:'—';color:var(--gray-mid)}
.pricing-note{text-align:center;font-size:.82rem;color:var(--gray-mid);margin-top:1.5rem;font-weight:300}

/* ── Contact ── */
#contact{padding:var(--section-py) 0;background:var(--off-white);position:relative}
#contact::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:var(--stone)}
.contact-hdr{text-align:center;max-width:52ch;margin:0 auto 3rem}
.contact-hdr .label{justify-content:center}
.contact-hdr .rule{margin-inline:auto}
.contact-hdr .section-body{margin-inline:auto}
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.5fr);gap:3rem;align-items:start}
.contact-left{display:flex;flex-direction:column;gap:.75rem}
.ci{display:flex;align-items:center;gap:1rem;padding:1rem 1.25rem;background:var(--white);border:1px solid var(--stone);border-radius:10px;transition:border-color .25s,transform .25s,box-shadow .25s}
.ci:hover{border-color:var(--accent);transform:translateY(-2px);box-shadow:0 6px 24px rgba(0,0,0,.07)}
.ci-icon{width:42px;height:42px;flex-shrink:0;background:var(--accent-glow);border:1px solid rgba(123,175,142,.3);border-radius:8px;display:flex;align-items:center;justify-content:center}
.ci-label{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gray-mid);margin-bottom:.18rem}
.ci-value{font-size:.95rem;font-weight:500;color:var(--navy)}
.contact-callout{background:linear-gradient(135deg,var(--navy-mid),var(--navy));border-radius:10px;padding:1.4rem 1.6rem;border-left:3px solid var(--accent);position:relative;overflow:hidden;margin-top:.25rem}
.contact-callout::before{content:'';position:absolute;top:0;right:0;width:120px;height:120px;background-image:radial-gradient(rgba(123,175,142,.18) 1px,transparent 1px);background-size:14px 14px;mask-image:radial-gradient(ellipse 80% 80% at 100% 0%,black,transparent 80%);-webkit-mask-image:radial-gradient(ellipse 80% 80% at 100% 0%,black,transparent 80%)}
.contact-callout-title{font-size:.88rem;font-weight:600;color:var(--white);margin-bottom:.3rem}
.contact-callout-body{font-size:.8rem;font-weight:300;color:rgba(255,255,255,.5);line-height:1.65}
.contact-form-wrap{background:var(--white);border:1px solid var(--stone);border-radius:12px;border-top:3px solid var(--accent);box-shadow:0 8px 48px rgba(0,0,0,.07);overflow:hidden;min-width:0}
.form-header{padding:1.4rem 2rem;border-bottom:1px solid var(--stone);display:flex;align-items:center;gap:.75rem;background:var(--white)}
.form-header-dot{width:8px;height:8px;border-radius:50%;background:var(--accent);flex-shrink:0}
.form-title{font-family:var(--display);font-size:1.2rem;font-weight:700;color:var(--navy)}
.form-body{padding:1.75rem 2rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:.9rem}
.form-group label{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gray-dark)}
.form-group input,.form-group select,.form-group textarea{font-family:var(--body);font-size:.92rem;color:var(--navy);background:var(--off-white);border:1.5px solid var(--stone);border-radius:7px;padding:.75rem 1rem;outline:none;width:100%;box-sizing:border-box;transition:border-color .2s,background .2s,box-shadow .2s;appearance:none;-webkit-appearance:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--accent);background:var(--white);box-shadow:0 0 0 3px rgba(123,175,142,.12)}
.form-group textarea{resize:vertical;min-height:110px}
.btn-form-submit{width:100%;justify-content:center;margin-top:.5rem}
.form-success{display:none;text-align:center;padding:2rem}
.form-success-icon{width:54px;height:54px;border-radius:50%;background:var(--off-white);border:2px solid var(--accent);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.form-success-icon svg{width:22px;height:22px;fill:none;stroke:var(--accent);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.form-success h3{font-family:var(--display);font-size:1.3rem;color:var(--navy);margin-bottom:.4rem}
.form-success p{font-size:.88rem;color:var(--gray-dark)}

/* ── Personal Note ── */
#note{padding:5rem 0;background:var(--off-white);border-top:1px solid var(--stone);border-bottom:1px solid var(--stone)}
.personal-note{max-width:680px;margin:0 auto}
.personal-note-inner .label{margin-bottom:1.5rem;display:inline-flex}
.personal-note-inner p{font-size:1.05rem;font-weight:300;color:var(--gray-dark);line-height:1.85;margin-bottom:1.2rem}
.personal-note-inner p:last-of-type{margin-bottom:1.5rem}
.personal-note-sig{font-family:var(--display);font-size:1.4rem;font-style:italic;font-weight:400;color:var(--navy);margin-top:.5rem}

/* ── FAQ ── */
.faq-item{background:var(--white);border:1px solid var(--stone);border-radius:8px;overflow:hidden;transition:border-color .2s}
.faq-item[open]{border-color:var(--accent)}
.faq-item summary{font-size:.97rem;font-weight:600;color:var(--navy);padding:1.1rem 1.4rem;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:color .2s,background .2s}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.3rem;font-weight:300;color:var(--accent);flex-shrink:0;transition:transform .25s var(--ease-out)}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item summary:hover{background:var(--off-white);color:var(--accent)}
.faq-item p{font-size:.92rem;font-weight:300;color:var(--gray-dark);line-height:1.8;padding:0 1.4rem 1.2rem;border-top:1px solid var(--stone);margin:0}

/* ── Footer ── */
footer{background:var(--navy);padding:4.5rem 0 2rem;color:rgba(255,255,255,.45)}
.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-logo{display:flex;align-items:center;gap:.7rem;margin-bottom:.9rem}
.footer-tagline{font-size:.85rem;font-weight:300;color:rgba(255,255,255,.35);line-height:1.75;max-width:26ch}
.fc h4{font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);margin-bottom:1.2rem}
.fc ul{list-style:none;display:flex;flex-direction:column;gap:.65rem}
.fc ul a{font-size:.87rem;color:rgba(255,255,255,.4);transition:color .2s}
.fc ul a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:.78rem;flex-wrap:wrap;gap:.5rem}

/* ── Back to top ── */
#btt{position:fixed;bottom:2rem;right:2rem;width:48px;height:48px;background:var(--accent);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:400;opacity:0;pointer-events:none;transform:translateY(12px);transition:opacity .35s ease,transform .35s var(--ease-out),background .2s;box-shadow:0 4px 18px rgba(93,148,114,.4)}
#btt.vis{opacity:1;pointer-events:all;transform:translateY(0)}
#btt:hover{background:var(--accent-dk)}
#btt svg{width:18px;height:18px;fill:none;stroke:var(--white);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* ── Portfolio Modal ── */
#port-modal{display:none;position:fixed;inset:0;z-index:900;background:rgba(10,14,11,.85);backdrop-filter:blur(6px);align-items:center;justify-content:center;padding:1.5rem}
#port-modal.open{display:flex}
.pm-shell{background:var(--navy-mid);border:1px solid rgba(255,255,255,.1);border-radius:12px;width:100%;max-width:1080px;height:88vh;display:flex;flex-direction:column;overflow:hidden;box-shadow:0 40px 120px rgba(0,0,0,.6);animation:pmIn .35s var(--ease-out)}
@keyframes pmIn{from{opacity:0;transform:scale(.96) translateY(18px)}to{opacity:1;transform:none}}
.pm-bar{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1.2rem;background:var(--navy);border-bottom:1px solid rgba(255,255,255,.07);flex-shrink:0}
.pm-dots{display:flex;gap:.4rem}
.pm-dot{width:12px;height:12px;border-radius:50%}
.pm-dot:nth-child(1){background:#f87171}.pm-dot:nth-child(2){background:#fbbf24}.pm-dot:nth-child(3){background:#4ade80}
.pm-url-bar{flex:1;margin:0 1rem;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:6px;padding:.3rem .9rem;font-size:.78rem;color:rgba(255,255,255,.4);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pm-title-label{font-family:var(--display);font-size:.9rem;font-weight:600;color:rgba(255,255,255,.7);margin-right:1rem}
.pm-close{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,transform .2s;flex-shrink:0}
.pm-close:hover{background:rgba(248,113,113,.2);transform:scale(1.1)}
.pm-close svg{width:14px;height:14px;fill:none;stroke:rgba(255,255,255,.7);stroke-width:2.5;stroke-linecap:round}
.pm-iframe-wrap{flex:1;position:relative;overflow:hidden}
.pm-iframe-wrap iframe{width:100%;height:100%;border:none;background:#fff}
.pm-loading{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--navy-mid);gap:1rem;transition:opacity .3s}
.pm-loading.hidden{opacity:0;pointer-events:none}
.pm-spinner{width:36px;height:36px;border:3px solid rgba(123,175,142,.15);border-top-color:var(--accent);border-radius:50%;animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
.pm-loading span{font-size:.82rem;color:rgba(255,255,255,.35);letter-spacing:.08em}
.pm-footer{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.6rem 1.2rem;background:var(--navy);border-top:1px solid rgba(255,255,255,.07);flex-shrink:0}
.pm-tag{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);background:rgba(123,175,142,.1);padding:.22rem .7rem;border-radius:100px;border:1px solid rgba(123,175,142,.2)}
.pm-note{font-size:.75rem;color:rgba(255,255,255,.28)}

/* ── Responsive ── */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr}
  .hero-cards{flex-direction:row;flex-wrap:wrap}
  .hc{flex:1 1 260px}
  .why-grid{grid-template-columns:1fr;gap:3rem}
  .services-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr;gap:2.5rem}
  .footer-top{grid-template-columns:1fr 1fr}
  .pricing-grid{grid-template-columns:1fr;gap:0}
  .delivery-grid{grid-template-columns:1fr;gap:1rem}
  .price-card.featured::before{display:none}
  .price-card.featured{border-top:3px solid var(--accent)}
}
@media(max-width:640px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex;width:44px;height:44px}
  .mobile-menu{display:flex}
  .nav-inner{padding:0 1.25rem}
  .logo-name{font-size:1rem}
  .hero-title{font-size:2.8rem}
  .hero-trust{gap:1rem}
  .services-grid{grid-template-columns:1fr;gap:0}
  .svc-card{padding:1.75rem 1.5rem}
  .svc-title{font-size:1.2rem}
  .form-row{grid-template-columns:1fr}
  .form-body{padding:1.25rem}
  .form-header{padding:1.1rem 1.25rem}
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .port-grid{grid-template-columns:1fr;gap:.6rem}
  .port-overlay span{font-size:.8rem}
  .pf-btn{font-size:.7rem;padding:.4rem .8rem}
  .port-filters{gap:.4rem}
  .port-cta{padding:1.75rem 1.25rem}
  #port-modal{padding:0;padding-top:env(safe-area-inset-top,0px)}
  .pm-shell{border-radius:0;height:100dvh}
  .pm-url-bar,.pm-dots,.pm-note{display:none}
  .pm-title-label{font-size:.78rem}
  .pm-bar{padding:.6rem 1rem}
  .pm-footer{padding:.5rem 1rem}
  .price-amount{font-size:2.4rem}
  .del-price{font-size:1.8rem}
  .why-badges{flex-direction:column;gap:.75rem}
  .btn{padding:.85rem 1.5rem;font-size:.85rem;min-height:44px}
}
@media(max-width:480px){
  .hero-title{font-size:clamp(2.2rem,9vw,3rem)}
  .hero-sub{font-size:.95rem}
  .hc{min-width:100%}
  .why-stat-num{font-size:clamp(1.1rem,5vw,1.9rem)}
  .why-stats-row{gap:.5rem}
  .why-stat{padding:1rem .75rem}
}
@media(max-width:400px){
  .hero-actions,.port-cta-actions{flex-direction:column}
  .btn{justify-content:center}
}
