:root{
  --ink:#0f2942;
  --ink-soft:#1e4368;
  --paper:#f6f7f9;
  --header-bg:#ffffff;
  --panel:#eaeef2;
  --panel-2:#d7dee5;
  --steel:#5a6b7a;
  --safety:#ffbd12;
  --safety-dark:#d99b06;
  --line: rgba(15,41,66,.14);
  --line-soft: rgba(15,41,66,.08);
  --r: 4px;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-mono: 'Source Sans 3', system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font-body); font-size:16.5px; line-height:1.72;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.wrap{ max-width:1320px; margin:0 auto; padding:0 24px; }
@media(max-width:900px){ .wrap{ padding:0 24px; } }
@media(max-width:700px){ .wrap{ padding:0 20px; } }

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:600; margin:0; line-height:1.06; letter-spacing:.005em; text-transform:uppercase; }
p{ margin:0; }

::selection{ background:var(--safety); color:#fff; }
:focus-visible{ outline:2px solid var(--safety); outline-offset:3px; }

.bp-frame{ position:relative; }
.bp-frame::before, .bp-frame::after,
.bp-frame .bp-c2, .bp-frame .bp-c3{
  content:''; position:absolute; width:18px; height:18px;
  border-color: var(--ink); border-style:solid; border-width:0;
  opacity:.55;
}
.bp-frame::before{ top:-1px; left:-1px; border-top-width:2px; border-left-width:2px; }
.bp-frame::after{ bottom:-1px; right:-1px; border-bottom-width:2px; border-right-width:2px; }
.bp-frame .bp-c2{ top:-1px; right:-1px; border-top-width:2px; border-right-width:2px; }
.bp-frame .bp-c3{ bottom:-1px; left:-1px; border-bottom-width:2px; border-left-width:2px; }

.spec-tag{
  font-family:var(--font-mono); font-size:11.5px; color:var(--ink-soft);
  background:var(--paper); border:1px solid var(--line); padding:4px 9px;
  display:inline-flex; align-items:center; gap:6px; letter-spacing:.01em;
}
.spec-tag .dot{ width:5px; height:5px; background:var(--safety); flex:none; }

.topbar{
  background:rgba(15,41,66,.78); backdrop-filter:blur(12px); color:#ffffff; margin:0; border-radius:0;
  padding:14px 30px; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  font-family:var(--font-body); font-size:14px; border-bottom:1px solid rgba(255,255,255,.35);
}
.topbar-social{ display:flex; gap:18px; align-items:center; }
.topbar-social a{ color:#ffffff; display:flex; align-items:center; justify-content:center; opacity:.85; }
.topbar-social a svg{ width:20px; height:20px; }
.topbar-social a:hover{ opacity:1; color:var(--safety); }
.topbar-info{ display:flex; gap:26px; align-items:center; flex-wrap:wrap; }
.topbar-info span{ display:flex; align-items:center; gap:7px; color:#ffffff; }
@media(max-width:700px){ .topbar{ display:none; } }

header{
  position:sticky; top:0; z-index:40; background:rgba(15,41,66,.78); backdrop-filter:blur(12px);
  margin:0; border-radius:0; border:1px solid rgba(255,255,255,.18); border-top:none;
}
header .brand-text{ color:#fff; }
header .brand-text small{ color:#ffffff; }
header nav a{ color:#ffffff; }
header nav a:hover, header nav a.active{ color:#fff; }
header .nav-toggle{ color:#fff; border-color:rgba(255,255,255,.3); }
@media(max-width:700px){ header{ margin:0; border-radius:0; border-top:1px solid rgba(255,255,255,.18); } }
.nav-row{ display:flex; align-items:center; justify-content:space-between; position:relative; height:76px; gap:30px; padding:0 16px; margin:0; max-width:none; }
.nav-row > nav{ position:absolute; left:40%; top:50%; transform:translate(-50%,-50%); }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark{ width:34px; height:34px; background:var(--ink); position:relative; flex:none; }
.brand-mark::before{ content:''; position:absolute; inset:7px; border:2px solid var(--safety); }
.brand-text{ font-family:var(--font-display); font-weight:700; font-size:21px; color:var(--ink); }
.brand-text small{ display:block; font-family:var(--font-body); font-weight:500; font-size:11px; color:var(--steel); letter-spacing:.02em; }

nav ul{ list-style:none; display:flex; gap:26px; margin:0; padding:0; }
nav a{ text-decoration:none; color:var(--ink-soft); font-size:16.5px; font-weight:500; transition:color .15s; }
nav a:hover, nav a.active{ color:var(--ink); }

.btn{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--font-body); font-weight:700; font-size:14.5px;
  padding:12px 22px; background:var(--safety); color:var(--ink); text-decoration:none; border:1px solid var(--safety);
  cursor:pointer; transition:background .15s, color .15s, border-color .15s; border-radius:10px; white-space:nowrap;
}
.btn:hover{ background:var(--safety-dark); color:var(--ink); border-color:var(--safety-dark); }
.btn.accent{ background:var(--safety); border-color:var(--safety); color:var(--ink); }
.btn.accent:hover{ background:var(--safety-dark); color:var(--ink); border-color:var(--safety-dark); }
.btn.outline{ background:var(--safety); color:var(--ink); border-color:var(--safety); }
.btn.outline:hover{ background:var(--safety-dark); color:var(--ink); border-color:var(--safety-dark); }
.btn.sm{ padding:11px 20px; font-size:15px; }

.nav-toggle{
  display:none; background:none; border:1px solid var(--line);
  width:42px; height:42px; border-radius:10px; cursor:pointer; color:var(--ink);
  align-items:center; justify-content:center; padding:0;
}
.burger{ display:block; width:20px; height:14px; position:relative; }
.burger i{
  position:absolute; left:0; width:100%; height:2px; border-radius:2px;
  background:currentColor; transition:transform .22s ease, opacity .18s ease, top .22s ease;
}
.burger i:nth-child(1){ top:0; }
.burger i:nth-child(2){ top:6px; }
.burger i:nth-child(3){ top:12px; }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(1){ top:6px; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(3){ top:6px; transform:rotate(-45deg); }

@media(max-width:900px){
  nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .header-cta{ display:none; }
}

.page-header{ padding:30px 0 24px; border-bottom:1px solid var(--line); background:var(--panel); }
.page-header h1{ font-size:clamp(27px,3.4vw,38px); margin:8px 0 8px; }
.page-header p{ color:var(--ink-soft); font-size:14.5px; line-height:1.6; max-width:62ch; margin:0; }

.about-stat-card{ background:var(--panel); border:1px solid var(--line); padding:24px 22px; }
.about-stat-card b{ font-family:var(--font-display); font-size:30px; display:block; margin-bottom:12px; }
.about-stat-card h4{ font-size:14.5px; margin-bottom:6px; }
.about-stat-card p{ font-size:12.5px; color:var(--steel); line-height:1.5; }

:root{
  --cut-x: 28%;
  --cut-y: 27%;
  --cut-radius: 28px;
}

.shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6,
.shape-a, .shape-b,
.cut-shape, .cut-1, .cut-2, .cut-3, .cut-4{
  border-radius: var(--cut-radius) !important;
  overflow: hidden;

  border: none !important;
}

.shape-1{
  clip-path: polygon(var(--cut-x) 0, calc(100% - var(--cut-x)) 0, 100% var(--cut-y), 100% 100%, 0 100%, 0 var(--cut-y));
}

.shape-2{
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-y)), calc(100% - var(--cut-x)) 100%, var(--cut-x) 100%, 0 calc(100% - var(--cut-y)));
}

.shape-3{
  clip-path: polygon(var(--cut-x) 0, 100% 0, 100% 100%, var(--cut-x) 100%, 0 calc(100% - var(--cut-y)), 0 var(--cut-y));
}

.shape-4{
  clip-path: polygon(0 0, calc(100% - var(--cut-x)) 0, 100% var(--cut-y), 100% calc(100% - var(--cut-y)), calc(100% - var(--cut-x)) 100%, 0 100%);
}

.shape-5, .shape-a, .cut-1, .cut-3{
  clip-path: polygon(var(--cut-x) 0, 100% 0, 100% calc(100% - var(--cut-y)), calc(100% - var(--cut-x)) 100%, 0 100%, 0 var(--cut-y));
}

.shape-6, .shape-b, .cut-2, .cut-4{
  clip-path: polygon(0 0, calc(100% - var(--cut-x)) 0, 100% var(--cut-y), 100% 100%, var(--cut-x) 100%, 0 calc(100% - var(--cut-y)));
}

.svc-card, .testi-card, .about-stat-card, .quote-card{
  --cut-x: 100px;
  --cut-y: 78px;
}
.svc-card[class*="shape-"],
.testi-card[class*="shape-"],
.about-stat-card[class*="shape-"],
.quote-card[class*="shape-"]{
  padding-top: 58px;
  padding-bottom: 58px;
}

.svc-card[class*="shape-"]{
  --cut-x: 86px;
  --cut-y: 67px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.svc-card p{ max-width:38ch; }

.svc-card, .testi-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.svc-card > *:last-child, .testi-card > *:last-child{ margin-bottom:0; }
.svc-card p, .testi-card p{ margin-inline:auto; }

.about-stat-card{ --cut-x:60px; --cut-y:47px; }
.about-stat-card[class*="shape-"]{
  padding-top:40px; padding-bottom:40px;
}

@media(max-width:700px){
  :root{ --cut-radius:20px; }
  .svc-card, .testi-card, .about-stat-card, .quote-card{
    --cut-x: 72px;
    --cut-y: 56px;
  }
  .svc-card[class*="shape-"],
  .testi-card[class*="shape-"],
  .about-stat-card[class*="shape-"],
  .quote-card[class*="shape-"]{
    padding-top:44px; padding-bottom:44px;
  }
}

.quote-card{
  position:relative; z-index:2; background:var(--paper); border:1px solid rgba(255,255,255,.18);
  border-radius:18px; box-shadow:0 24px 60px rgba(0,0,0,.28);
  padding:44px 40px 40px; max-width:520px; margin-left:auto;
}
.quote-card h3{ font-size:22px; margin-bottom:6px; }
.quote-card .qc-sub{ font-size:14.5px; color:var(--steel); margin-bottom:26px; }
.qc-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.qc-row.single{ grid-template-columns:1fr; }
.quote-card input, .quote-card textarea{
  width:100%; font-family:var(--font-body); font-size:15px; padding:14px 16px;
  border:1px solid var(--line); background:#fff; color:var(--ink); box-sizing:border-box;
  border-radius:8px;
}
.quote-card textarea{ resize:none; height:88px; margin-bottom:22px; }
.quote-card button{ width:100%; justify-content:center; border-radius:8px; padding:16px 22px; font-size:15.5px; }
@media(max-width:900px){
  .quote-card{ margin-left:0; max-width:none; }
}

section{ padding:42px 0; }
.section-head{ max-width:640px; margin-bottom:20px; }
.section-head .spec-tag{ margin-bottom:10px; }
.section-head h2{ font-size:clamp(28px,3.6vw,46px); margin-bottom:10px; letter-spacing:.01em; }
.section-head p{ color:var(--ink-soft); font-size:15.5px; }
.section-head.between{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; max-width:none; }

.band-dark{ background:var(--ink); color:#eee; }
.band-dark .steel-text{ color:#ffffff; }
.band-dark .section-head p{ color:#ffffff; }

.services-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; max-width:1000px; margin-inline:auto; }
.svc-card{ background:var(--panel); border:1px solid var(--line); border-radius:14px; padding:44px 38px; transition:background .2s, border-color .2s; }
.svc-card:hover{ background:var(--ink); border-color:var(--ink); }
.svc-card:hover .svc-icon{ background:rgba(255,255,255,.14); }
.svc-card:hover .svc-icon svg{ stroke:#fff; }
.svc-card:hover h3{ color:#fff; }
.svc-card:hover p{ color:#ffffff; }
.svc-card.dark{ background:var(--ink); border-color:var(--ink); }
.svc-icon{ width:56px; height:56px; border-radius:13px; display:flex; align-items:center; justify-content:center; margin-bottom:26px; background:rgba(255,189,18,.16); }
.svc-card.dark .svc-icon{ background:rgba(255,255,255,.14); }
.svc-icon svg{ width:26px; height:26px; stroke:var(--safety); }
.svc-card.dark .svc-icon svg{ stroke:#fff; }
.svc-card h3{ font-size:19px; margin-bottom:10px; color:var(--ink); }
.svc-card.dark h3{ color:#fff; }
.svc-card p{ font-size:14.5px; color:var(--steel); margin-bottom:22px; }
.svc-card.dark p{ color:#ffffff; }
.svc-card .learn-more{ align-self:center; font-size:13px; font-weight:600; color:var(--safety); text-decoration:underline; }
.services-head-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.carousel-arrows{ display:flex; gap:10px; flex:none; }
.carousel-arrow{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--safety); background:var(--safety); color:var(--ink); cursor:pointer; transition:background .15s, color .15s; }
.carousel-arrow.active{ background:var(--safety-dark); border-color:var(--safety-dark); }
.carousel-arrow:hover{ background:var(--safety); color:var(--ink); border-color:var(--safety); }
@media(max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .services-grid{ grid-template-columns:1fr; } }

.process-list{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.process-item{ padding-top:14px; border-top:2px solid var(--safety); }
.process-item .pn{ font-family:var(--font-display); font-size:32px; color:var(--safety); display:block; margin-bottom:8px; }
.process-item h4{ font-size:16px; margin-bottom:5px; }
.process-item p{ font-size:13.5px; color:var(--steel); }
@media(max-width:800px){ .process-list{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .process-list{ grid-template-columns:1fr; } }

.projects-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; background:none; border:none; }
.proj-card{ background:none; }
.proj-photo{
  aspect-ratio:5/4; position:relative; overflow:hidden; border:1px solid var(--steel);
  background: repeating-linear-gradient(45deg, #16375a 0 2px, var(--ink) 2px 22px);
  border-bottom:1px solid var(--line);
}
.ph-note{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  font-family:var(--font-mono); font-size:11px; color:#ffffff;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.25); padding:5px 10px; white-space:nowrap;
}
.proj-body{ padding:20px 22px 26px; }
.proj-body .spec-tag{ margin-bottom:12px; }
.proj-body h3{ font-size:17px; margin-bottom:6px; }
.proj-body p{ font-size:13.5px; color:var(--steel); }
@media(max-width:900px){ .projects-grid{ grid-template-columns:1fr 1fr; gap:20px; } }
@media(max-width:600px){ .projects-grid{ grid-template-columns:1fr; } }

.numbers-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:2px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.12); }
.numbers-grid > div{ background:var(--ink); padding:32px 30px; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.numbers-grid .num-icon{ flex:none; width:44px; height:44px; border-radius:10px; background:rgba(214,69,16,.18); display:flex; align-items:center; justify-content:center; }
.numbers-grid .num-icon svg{ width:22px; height:22px; stroke:var(--safety); }
.numbers-grid b{ font-family:var(--font-display); font-size:38px; display:block; }
.numbers-grid span{ font-size:13px; color:#ffffff; }
@media(max-width:700px){ .numbers-grid{ grid-template-columns:1fr; } }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.team-card{ }
.team-photo{
  aspect-ratio:3/4; background:var(--ink); border:none; margin-bottom:14px; position:relative; overflow:hidden;
}
.team-card h4{ font-size:15.5px; margin-bottom:2px; }
.team-card span{ font-size:13px; color:var(--steel); }
@media(max-width:800px){ .team-grid{ grid-template-columns:1fr 1fr; } }

.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; background:none; border:none; }
.testi-card{ background:var(--panel); border:none; padding:28px 26px; }
.testi-card p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:20px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:44px; height:44px; border-radius:50%; background:var(--panel-2); flex:none; overflow:hidden; }
.testi-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.testi-who b{ display:block; font-size:13.5px; }
.testi-who span{ font-size:12px; color:var(--steel); }
@media(max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

.cta-band{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2{ font-size:clamp(26px,3vw,36px); max-width:520px; }

footer{ background:var(--ink); color:#ffffff; padding:0 0 28px; }

.band-shape{

  --band-bg: var(--ink);
  --band-r: 26px;
  --tab-h: 26px;
  --tab-w: 46%;
  --notch-w: 34%;
  --notch-h: 30px;
  --notch-slant: 18px;

  position: relative;
  isolation: isolate;
  background: none;
  border: none;
  width: min(1320px, 94vw);
  margin: 34px auto;
  padding: calc(var(--tab-h) + 32px) clamp(24px, 4vw, 56px)
           calc(var(--notch-h) + 26px);
}
.band-shape > *{ position: relative; z-index: 2; }
.band-shape > .wrap{ padding-left: 0; padding-right: 0; }

.band-shape::before{
  content: "";
  position: absolute;
  z-index: 0;
  left: 0; right: 0;
  top: var(--tab-h); bottom: 0;
  background: var(--band-bg);
  border-radius: var(--band-r);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    var(--notch-w) 100%,
    calc(var(--notch-w) - var(--notch-slant)) calc(100% - var(--notch-h)),
    0 calc(100% - var(--notch-h))
  );
}

.band-shape::after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--tab-w);
  height: calc(var(--tab-h) + var(--band-r));
  background: var(--band-bg);
  border-radius: var(--band-r) var(--band-r) 0 0;
}

.band-shape{ color:#ffffff; }
.band-shape h2,
.band-shape h3,
.band-shape h4{ color:#fff; }
.band-shape p,
.band-shape .section-head p,
.band-shape .steel-text,
.band-shape span{ color:#ffffff; }
.band-shape .process-item{ border-top-color:var(--safety); }
.band-shape .process-item .pn{ color:var(--safety); }
.band-shape .process-icon-circle{ background:rgba(255,255,255,.10); }
.band-shape .spec-tag{ background:rgba(255,255,255,.12); color:#ffffff; }
.band-shape .team-card h4{ color:#fff; }
.band-shape .team-card span{ color:#ffffff; }
.band-shape input,
.band-shape textarea{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.20);
  color:#fff;
}
.band-shape input::placeholder,
.band-shape textarea::placeholder{ color:#ffffff; }
.band-shape a:not(.btn){ color:#fff; }

.band-shape.light{ --band-bg: var(--panel); color:var(--ink-soft); }
.band-shape.light h2, .band-shape.light h3, .band-shape.light h4{ color:var(--ink); }
.band-shape.light p, .band-shape.light span{ color:var(--ink-soft); }

@media(max-width:700px){
  .band-shape{
    --band-r: 20px;
    --tab-h: 18px;
    --tab-w: 62%;
    --notch-w: 42%;
    --notch-h: 22px;
    --notch-slant: 12px;
    padding: calc(var(--tab-h) + 34px) 22px calc(var(--notch-h) + 26px);
    margin: 22px auto;
  }
}

.footer-cta-band{ background:none; }
.footer-cta-grid{ display:grid; grid-template-columns:1fr .85fr; gap:34px; align-items:start; }
.footer-cta-grid h2{ color:#fff; font-size:clamp(26px,3.2vw,42px); margin-bottom:12px; letter-spacing:.01em; }
.footer-cta-grid > div:first-child p{ color:#ffffff; font-size:13.5px; line-height:1.6; margin-bottom:18px; }
.footer-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:2px; }
.footer-cta-grid input, .footer-cta-grid textarea{
  width:100%; font-family:var(--font-body); font-size:14.5px; padding:13px 15px;
  border:1px solid var(--line); background:#fff; color:var(--ink); box-sizing:border-box; border-radius:8px;
}
.footer-cta-grid input::placeholder, .footer-cta-grid textarea::placeholder{ color:var(--steel); }
.footer-cta-grid textarea{ resize:none; height:62px; margin-bottom:8px; }
.why-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:center; }
.why-photo{ aspect-ratio:4/3; background:var(--ink); border:none; max-width:460px; width:100%; margin-inline:auto; position:relative; overflow:hidden; }
.why-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.why-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:22px; }
.why-list li{ display:flex; gap:16px; align-items:flex-start; }
.why-check{ flex:none; width:30px; height:30px; border-radius:8px; background:rgba(221,90,31,.14); display:flex; align-items:center; justify-content:center; }
.why-check svg{ width:16px; height:16px; stroke:var(--safety); }
.why-list h4{ font-size:16px; margin-bottom:4px; }
.why-list p{ font-size:13.5px; color:var(--steel); }
@media(max-width:800px){ .why-grid{ grid-template-columns:1fr; } }

.process-icon-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.process-icon-item{ text-align:center; padding-top:0; border-top:none; }
.process-icon-circle{ width:48px; height:48px; border-radius:50%; background:var(--panel); display:flex; align-items:center; justify-content:center; margin:0 auto 10px; }
.process-icon-circle svg{ width:24px; height:24px; stroke:var(--safety); }
.process-icon-item .pn{ font-family:var(--font-display); font-size:13px; color:var(--safety); display:block; margin-bottom:4px; }
.process-icon-item h4{ font-size:16px; margin-bottom:5px; }
.process-icon-item p{ font-size:13.5px; color:var(--steel); }
@media(max-width:800px){ .process-icon-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .process-icon-grid{ grid-template-columns:1fr; } }

.footer-map{ --cut-x:64px; --cut-y:50px; height:100%; min-height:340px; background:var(--ink); position:relative; overflow:hidden; }
.footer-map iframe{ width:100%; height:100%; border:0; display:block; }
.map-consent{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:9px; text-align:center;
  padding:30px 34px; background:rgba(255,255,255,.06);
}
.map-consent svg{ width:34px; height:34px; stroke:var(--safety); }
.map-consent b{ color:#fff; font-size:14.5px; line-height:1.4; max-width:26ch; }
.map-consent p{ color:#ffffff; font-size:12.5px; line-height:1.6; max-width:34ch; margin:0; }
.map-consent .btn{ margin-top:4px; }
.map-consent a{ color:#ffffff; font-size:11.5px; text-decoration:underline; max-width:24ch; line-height:1.4; }
.map-consent a:hover{ color:#fff; }
.footer-social{ display:flex; gap:14px; margin-top:14px; }
.footer-social a{ color:#ffffff; display:flex; }
.footer-social a:hover{ color:#fff; }

.footer-cols{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding:44px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand p{ font-size:13.5px; color:#ffffff; margin-top:14px; max-width:32ch; }
.footer-col h4{ font-family:var(--font-body); font-size:13px; font-weight:600; color:#fff; margin-bottom:16px; letter-spacing:.02em; }
.footer-col a{ display:block; text-decoration:none; color:#ffffff; font-size:13.5px; margin-bottom:10px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:24px; font-size:12.5px; color:#ffffff; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#ffffff; text-decoration:none; margin-left:18px; }
@media(max-width:800px){ .footer-cols{ grid-template-columns:1fr 1fr; } }

.mobile-drawer{
  --drawer-alpha:.72;
  position:fixed; left:0; right:0; top:var(--header-h,68px); z-index:60;
  display:none; flex-direction:column; gap:2px;
  padding:14px 20px 18px;
  background:rgba(15,41,66,var(--drawer-alpha));
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(255,255,255,.14);
  box-shadow:0 26px 50px -22px rgba(0,0,0,.6);
  max-height:calc(100dvh - var(--header-h,68px)); overflow-y:auto;
}
.mobile-drawer.open{ display:flex; animation:drawer-in .18s ease-out; }
@keyframes drawer-in{ from{ opacity:0; transform:translateY(-8px); } to{ opacity:1; transform:none; } }
.mobile-drawer .close-drawer{ display:none; }
.mobile-drawer nav{ display:flex !important; margin:0; }
.mobile-drawer nav ul{ flex-direction:column; gap:0; width:100%; }
.mobile-drawer nav li + li{ border-top:1px solid rgba(255,255,255,.12); }
.mobile-drawer nav a{
  display:block; padding:13px 2px; font-size:16px;
  font-family:var(--font-display); font-weight:600; color:#ffffff;
}
.mobile-drawer nav a:hover{ color:var(--safety); }
.mobile-drawer .btn{ margin-top:14px; align-self:stretch; justify-content:center; }

.reveal{ opacity:0; transform:translateY(16px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

@media(max-width:700px){
  section{ padding:42px 0; }
  .section-head{ margin-bottom:20px; }
}

.svc-card,
.about-stat-card{
  background: var(--ink);
  color: #dfe6ec;
}
.svc-card h3,
.about-stat-card h4,
.about-stat-card b{ color:#fff; }
.svc-card p,
.about-stat-card p{ color:#ffffff; }
.svc-card .svc-icon{ background:rgba(255,255,255,.12); }
.svc-card .svc-icon svg{ stroke:var(--safety); }

.svc-card:hover{ background:var(--panel); }
.svc-card:hover h3{ color:var(--ink); }
.svc-card:hover p{ color:var(--ink); }
.svc-card:hover .svc-icon{ background:rgba(255,189,18,.16); }
.svc-card:hover .svc-icon svg{ stroke:var(--safety); }
.svc-card:hover .learn-more{ color:var(--safety-dark); }
.svc-card.dark{ background:var(--ink); }

.band-shape .testi-card{
  background: rgba(255,255,255,.07);
  color: #dfe6ec;
}
.band-shape .testi-card h4,
.band-shape .testi-card strong{ color:#fff; }
.band-shape .testi-card p,
.band-shape .testi-card span{ color:#ffffff; }

.faq-grid{ display:grid; grid-template-columns:1fr 1.25fr; gap:clamp(24px,4vw,48px); align-items:start; }
.faq-intro .spec-tag{ margin-bottom:16px; }
.faq-intro h2{ color:#fff; font-size:clamp(26px,3.2vw,42px); margin-bottom:12px; letter-spacing:.01em; }
.faq-intro p{ color:#ffffff; font-size:13.5px; line-height:1.6; margin-bottom:18px; max-width:40ch; }

.faq-list{ display:grid; gap:8px; }
.faq-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  overflow:hidden;
}
.faq-item > summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; gap:12px;
  padding:12px 16px;
  font-family:var(--font-display); font-weight:600; font-size:14.5px; color:#fff;
}
.faq-item > summary::-webkit-details-marker{ display:none; }
.faq-item > summary::before{
  content:"+";
  width:26px; height:26px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.10); border-radius:8px;
  font-family:var(--font-body); font-size:17px; font-weight:400; color:#fff;
  transition:background .15s;
}
.faq-item[open] > summary::before{ content:"–"; background:var(--safety); color:var(--ink); }
.faq-item > summary:hover::before{ background:rgba(255,255,255,.18); }
.faq-item p{
  margin:0; padding:0 16px 14px 54px;
  color:#ffffff; font-size:13.5px; line-height:1.65;
}
@media(max-width:860px){
  .faq-grid{ grid-template-columns:1fr; }
  .faq-item p{ padding-left:20px; }
}

.form-field{ margin-bottom:14px; }
.form-field label{ display:block; font-family:var(--font-body); font-size:12.5px; font-weight:600; margin-bottom:5px; color:#ffffff; }
.footer-cta-grid select{
  width:100%; font-family:var(--font-body); font-size:14.5px; padding:13px 15px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.20);
  color:#fff; border-radius:8px; box-sizing:border-box;
}
.footer-cta-grid select option{ color:var(--ink); }
.form-consent{ display:flex; align-items:flex-start; gap:11px; font-size:12.5px; color:#ffffff; margin:6px 0 14px; line-height:1.5; }
.form-consent input[type="checkbox"]{ flex:0 0 auto; width:17px; height:17px; margin:1px 0 0; accent-color:var(--safety); cursor:pointer; }
.form-consent a{ color:var(--safety); }
.form-hint{ font-size:12px; color:#ffffff; margin-top:10px; }

.detail-lead{ font-size:16.5px; line-height:1.75; color:var(--ink-soft); max-width:70ch; }
.detail-grid{ display:grid; grid-template-columns:1.35fr .65fr; gap:44px; align-items:start; margin-top:34px; }
.detail-body h2{ font-size:clamp(21px,2.4vw,27px); margin:34px 0 10px; }
.detail-body h2:first-child{ margin-top:0; }
.detail-body p{ color:var(--ink-soft); font-size:15px; line-height:1.8; margin-bottom:14px; max-width:70ch; }
.detail-body ul{ margin:0 0 18px; padding-left:20px; color:var(--ink-soft); font-size:15px; line-height:1.8; }
.detail-body li{ margin-bottom:6px; }
.detail-aside{ background:var(--ink); color:#ffffff; border-radius:16px; padding:28px; position:sticky; top:96px; }
.detail-aside h3{ color:#fff; font-size:17px; margin:0 0 12px; }
.detail-aside dl{ margin:0 0 20px; }
.detail-aside dt{ font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:#ffffff; margin-top:14px; }
.detail-aside dd{ margin:2px 0 0; font-size:14.5px; color:#fff; }
.detail-aside .btn{ width:100%; justify-content:center; margin-top:6px; }
@media(max-width:900px){
  .detail-grid{ grid-template-columns:1fr; gap:28px; }
  .detail-aside{ position:static; }
}

.crumbs{ margin-bottom:16px; }
.crumbs ol{ list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-family:var(--font-body); font-size:13px; }
.crumbs li{ display:flex; align-items:center; gap:8px; color:var(--steel); }
.crumbs li + li::before{ content:"/"; opacity:.6; }
.crumbs a{ color:var(--steel); text-decoration:none; }
.crumbs a:hover{ color:var(--ink); text-decoration:underline; }
.crumbs [aria-current="page"]{ color:var(--ink); font-weight:600; }

html{ scroll-padding-top:96px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none !important; }
}

.proj-photo, .footer-map{ position:relative; overflow:hidden; }
.proj-photo img, .team-photo img, .footer-map img{ width:100%; height:100%; object-fit:cover; display:block; }
.proj-photo{ background:var(--ink); }

.hero-top{ padding:38px 0 0; background:var(--paper); }
.hero-head{
  display:grid; grid-template-columns:minmax(150px,1fr) minmax(0,2.2fr) minmax(150px,1fr);
  gap:28px; align-items:start;
}
.hero-kicker{ font-family:var(--font-body); font-size:13px; line-height:1.7; color:var(--steel); padding-top:14px; text-align:right; }
.hero-kicker b{ display:block; color:var(--ink); font-size:15px; }
.hero-head h1{ font-size:clamp(34px,6vw,82px); line-height:.98; letter-spacing:.01em; margin:0; color:var(--ink); text-align:center; font-weight:700; }
.hero-head h1 .hl{ color:var(--safety); }

.hero-actions{
  position:static; z-index:3; margin:22px 0 20px;
  display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
}
.hero-actions .btn{ border-radius:999px; padding:14px 30px; }

.hero-stage{ position:relative; }
.hero-band{
  --apex:18.6%;
  --wing:85.4%;
  --p1:29.5%;
  --p2:74.9%;
  position:relative; overflow:hidden; border-radius:26px;
  aspect-ratio:2.3; min-height:360px; background:var(--ink);
  clip-path:polygon(
    0% 0%,
    50% 18.6%,
    100% 0%,
    100% 85.4%,
    77.9% 85.4%, 77.1% 85.7%, 76.4% 86.4%, 75.8% 87.6%,
    75.3% 89.1%, 75.0% 91.0%, 74.9% 92.9%,
    74.8% 94.4%, 74.5% 96.2%, 74.0% 97.8%,
    73.4% 99.0%, 72.7% 99.7%, 71.9% 100%,
    32.5% 100%,
    31.7% 99.7%, 31.0% 99.0%, 30.4% 97.8%,
    29.9% 96.2%, 29.6% 94.4%, 29.5% 92.9%,
    29.4% 91.0%, 29.1% 89.1%, 28.6% 87.6%,
    28.0% 86.4%, 27.3% 85.7%, 26.5% 85.4%,
    0% 85.4%
  );
}
.hero-band .hero-photo{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.hero-band::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(15,41,66,.30) 0%, rgba(15,41,66,.20) 40%, rgba(15,41,66,.80) 100%);
}
.hero-quote{
  position:absolute; z-index:2; top:52%; right:3.5%; transform:translateY(-50%);
  width:min(330px,31%); background:rgba(255,255,255,.96);
  border-radius:18px; padding:22px 22px 20px; box-shadow:0 26px 60px rgba(15,41,66,.35);
}
.hero-quote h2{ font-size:19px; margin:0 0 4px; }
.hero-quote .qc-sub{ font-size:13px; color:var(--steel); margin:0 0 18px; }
.hero-quote input, .hero-quote select{
  width:100%; font-family:var(--font-body); font-size:14px; padding:12px 13px;
  border:1px solid var(--line); background:#fff; color:var(--ink); box-sizing:border-box; border-radius:8px;
}
.hero-quote .qc-row{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:10px; }
.hero-quote .qc-row.single{ grid-template-columns:1fr; }
.hero-quote button{ width:100%; justify-content:center; border-radius:8px; padding:14px 20px; margin-top:6px; }

.hero-rating{ position:absolute; left:0; bottom:0; z-index:2; display:flex; align-items:center; gap:14px; width:29%; height:14.6%; padding-right:20px; box-sizing:border-box; }
.hr-faces{ display:flex; }
.hr-faces img{ width:38px; height:38px; border-radius:50%; object-fit:cover; border:2px solid var(--paper); margin-left:-10px; }
.hr-faces img:first-child{ margin-left:0; }
.hr-text{ display:flex; flex-direction:column; gap:2px; }
.hr-stars{ color:var(--safety); font-size:14px; letter-spacing:1.5px; }
.hr-text span:last-child{ font-family:var(--font-body); font-size:12.5px; color:var(--steel); }

@media(max-width:1000px){
  .hero-head{ grid-template-columns:1fr; gap:14px; }
  .hero-kicker{ text-align:left; padding-top:0; }
  .hero-head h1{ text-align:left; }
}

.form-field{ margin-bottom:10px; }
.footer-cta-grid input, .footer-cta-grid textarea, .footer-cta-grid select{ padding:11px 13px; font-size:14px; }
.form-consent{ margin:4px 0 10px; }
.form-hint{ margin-top:8px; }
.footer-map{ min-height:300px; }

.svc-card:nth-child(2), .svc-card:nth-child(3),
.about-stat-card:nth-child(2), .about-stat-card:nth-child(3){
  background:var(--safety);
}
.svc-card:nth-child(2) h3, .svc-card:nth-child(3) h3,
.svc-card:nth-child(2) p,  .svc-card:nth-child(3) p,
.about-stat-card:nth-child(2) b, .about-stat-card:nth-child(3) b,
.about-stat-card:nth-child(2) h4, .about-stat-card:nth-child(3) h4,
.about-stat-card:nth-child(2) p,  .about-stat-card:nth-child(3) p{
  color:var(--ink);
}
.svc-card:nth-child(2) .learn-more, .svc-card:nth-child(3) .learn-more{ color:var(--ink); }
.svc-card:nth-child(2) .svc-icon,  .svc-card:nth-child(3) .svc-icon{ background:rgba(15,41,66,.14); }
.svc-card:nth-child(2) .svc-icon svg, .svc-card:nth-child(3) .svc-icon svg{ stroke:var(--ink); }

.svc-card:nth-child(2):hover, .svc-card:nth-child(3):hover{ background:var(--ink); }
.svc-card:nth-child(2):hover h3, .svc-card:nth-child(3):hover h3,
.svc-card:nth-child(2):hover p,  .svc-card:nth-child(3):hover p{ color:#ffffff; }
.svc-card:nth-child(2):hover .learn-more, .svc-card:nth-child(3):hover .learn-more{ color:var(--safety); }
.svc-card:nth-child(2):hover .svc-icon, .svc-card:nth-child(3):hover .svc-icon{ background:rgba(255,255,255,.14); }
.svc-card:nth-child(2):hover .svc-icon svg, .svc-card:nth-child(3):hover .svc-icon svg{ stroke:var(--safety); }

@media(max-width:820px){
  .hero-band{
    aspect-ratio:1.35;
    min-height:0;
    clip-path:polygon(
      0% 0%,
      50% 18.6%,
      100% 0%,
      100% 85.4%,
      77.9% 85.4%, 77.1% 85.7%, 76.4% 86.4%, 75.8% 87.6%,
      75.3% 89.1%, 75.0% 91.0%, 74.9% 92.9%,
      74.8% 94.4%, 74.5% 96.2%, 74.0% 97.8%,
      73.4% 99.0%, 72.7% 99.7%, 71.9% 100%,
      32.5% 100%,
      31.7% 99.7%, 31.0% 99.0%, 30.4% 97.8%,
      29.9% 96.2%, 29.6% 94.4%, 29.5% 92.9%,
      29.4% 91.0%, 29.1% 89.1%, 28.6% 87.6%,
      28.0% 86.4%, 27.3% 85.7%, 26.5% 85.4%,
      0% 85.4%
    );
  }
  .hero-rating{
    position:absolute; left:0; bottom:0;
    width:29%; height:14.6%; padding-right:10px; margin:0;
  }
  .hr-faces img{ width:28px; height:28px; margin-left:-8px; border-width:2px; }
  .hr-stars{ font-size:12px; }
  .hr-text span:last-child{ font-size:10.5px; line-height:1.25; }
}

@media(max-width:820px){
  .hero-top{ padding:22px 0 0; }
  .hero-head{ grid-template-columns:1fr; gap:8px; }
  .hero-head h1{ text-align:center; font-size:clamp(27px,7.4vw,40px); }
  .hero-kicker{ text-align:center; font-size:12px; line-height:1.5; }
  .hero-kicker b{ display:inline; }
  .hero-actions{ justify-content:center; margin:16px 0 14px; gap:10px; }
  .hero-actions .btn{ padding:11px 20px; font-size:13.5px; }
  .hero-quote{
    position:static; transform:none; width:auto; margin-top:14px;
    padding:18px 18px 16px; box-shadow:0 18px 40px rgba(15,41,66,.22);
  }
  .hero-quote h2{ font-size:17px; }
  .hero-quote .qc-sub{ margin-bottom:12px; }
  .hero-quote .qc-row{ gap:8px; margin-bottom:8px; }
  .hero-quote input, .hero-quote select{ padding:10px 11px; }
  .hero-quote button{ padding:12px 18px; }
}

@media(max-width:700px){
  section{ padding:26px 0; }
  .section-head{ margin-bottom:16px; }
  .section-head h2{ font-size:clamp(21px,5.6vw,27px); }
  .section-head p{ font-size:13.5px; line-height:1.6; }

  .services-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .svc-card{ padding:26px 18px; }
  .svc-card h3{ font-size:15.5px; }
  .svc-card p{ font-size:12.5px; line-height:1.55; }
  .svc-card .learn-more{ font-size:12px; }
  .svc-card[class*="shape-"]{ padding-top:34px; padding-bottom:34px; }
  .svc-card, .testi-card, .about-stat-card, .quote-card{ --cut-x:52px; --cut-y:41px; }

  .projects-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .proj-body{ padding:12px 2px 18px; }
  .proj-body h3{ font-size:14.5px; }
  .proj-body p{ font-size:12px; line-height:1.5; }

  .team-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .team-card h4{ font-size:14.5px; }
  .team-card span{ font-size:12px; }

  .about-stat-card{ padding:20px 16px; }
  .about-stat-card b{ font-size:24px; margin-bottom:8px; }
  .about-stat-card h4{ font-size:13.5px; }
  .about-stat-card p{ font-size:11.5px; line-height:1.5; }
  .about-stat-card[class*="shape-"]{ padding-top:28px; padding-bottom:28px; }

  .process-list, .process-icon-grid{ grid-template-columns:1fr 1fr; gap:16px; }
  .process-item .pn{ font-size:24px; margin-bottom:4px; }
  .process-item h4, .process-icon-item h4{ font-size:14px; }
  .process-item p, .process-icon-item p{ font-size:12px; line-height:1.5; }

  .why-grid{ grid-template-columns:1fr; gap:22px; }
  .why-photo{ max-width:320px; }
  .why-list{ gap:14px; }
  .why-list h4{ font-size:14.5px; }
  .why-list p{ font-size:12.5px; line-height:1.55; }

  .band-shape{ padding: calc(var(--tab-h) + 24px) 18px calc(var(--notch-h) + 18px); margin:16px auto; }
  .faq-grid{ grid-template-columns:1fr; gap:18px; }
  .faq-intro h2{ font-size:22px; }
  .faq-intro p{ font-size:12.5px; margin-bottom:14px; }
  .faq-item > summary{ padding:11px 14px; font-size:13.5px; gap:10px; }
  .faq-item > summary::before{ width:23px; height:23px; font-size:15px; }
  .faq-item p{ padding:0 14px 12px 47px; font-size:12.5px; }

  .footer-cta-grid{ grid-template-columns:1fr; gap:18px; }
  .footer-cta-grid h2{ font-size:21px; margin-bottom:8px; }
  .footer-map{ min-height:200px; }
  .footer-cols{ grid-template-columns:1fr 1fr; gap:22px; }

  .detail-grid{ gap:20px; }
  .detail-body h2{ margin:22px 0 8px; }
  .detail-body p, .detail-body ul{ font-size:13.5px; line-height:1.7; }
  .crumbs{ margin-bottom:12px; }
  .page-header{ padding:18px 0 12px; }
}

@media(max-width:430px){
  .services-grid, .projects-grid, .team-grid,
  .process-list, .process-icon-grid{ gap:10px; }
  .svc-card{ padding:22px 14px; }
  .svc-card p{ font-size:11.5px; }
  .proj-body h3{ font-size:13.5px; }
  .proj-body p{ font-size:11.5px; }
}

@media(max-width:600px){
  .hero-rating{
    position:static; width:auto; height:auto; padding:0;
    margin-top:12px; justify-content:flex-start; gap:10px;
  }
  .hr-faces img{ width:26px; height:26px; }
  .hr-text span:last-child{ font-size:11.5px; line-height:1.4; }
}

@media(max-width:700px){
  .footer-map{ --cut-x:44px; --cut-y:34px; min-height:250px; }
  .map-consent{ padding:26px 30px; gap:7px; }
  .map-consent svg{ width:26px; height:26px; }
  .map-consent b{ font-size:13.5px; }
  .map-consent p{ font-size:11.5px; line-height:1.5; max-width:30ch; }
  .map-consent .btn{ padding:10px 18px; font-size:13px; }
  .map-consent a{ font-size:11px; }
}

.hero-top{ position:relative; overflow:hidden; }
.hero-top::before,
.hero-top::after{
  content:""; position:absolute; z-index:0; border-radius:50%;
  filter:blur(70px); opacity:.5; pointer-events:none;
}
.hero-top::before{
  width:380px; height:380px; top:-120px; left:-90px;
  background:radial-gradient(circle, rgba(255,189,18,.28), transparent 70%);
}
.hero-top::after{
  width:440px; height:440px; top:20px; right:-140px;
  background:radial-gradient(circle, rgba(31,67,104,.22), transparent 70%);
}
.hero-top > *{ position:relative; z-index:1; }
@media (prefers-reduced-motion: no-preference){
  .hero-top::before{ animation:blob-a 14s ease-in-out infinite alternate; }
  .hero-top::after{ animation:blob-b 18s ease-in-out infinite alternate; }
}
@keyframes blob-a{ to{ transform:translate(30px,20px) scale(1.08); } }
@keyframes blob-b{ to{ transform:translate(-24px,28px) scale(1.06); } }
@media(max-width:700px){
  .hero-top::before{ width:220px; height:220px; filter:blur(50px); }
  .hero-top::after{ width:240px; height:240px; filter:blur(50px); }
}

.process-list > .process-item:nth-child(1){ transform:translateY(14px); }
.process-list > .process-item:nth-child(2){ transform:translateY(-10px); }
.process-list > .process-item:nth-child(3){ transform:translateY(26px); }
.process-list > .process-item:nth-child(4){ transform:translateY(4px); }
.process-icon-grid > .process-icon-item:nth-child(2){ transform:translateY(-12px); }
.process-icon-grid > .process-icon-item:nth-child(3){ transform:translateY(20px); }
.projects-grid > .proj-card:nth-child(2){ transform:translateY(34px); }
.projects-grid > .proj-card:nth-child(3){ transform:translateY(14px); }
.projects-grid > .proj-card:nth-child(5){ transform:translateY(22px); }
.team-grid > .team-card:nth-child(2){ transform:translateY(-14px); }
.team-grid > .team-card:nth-child(4){ transform:translateY(18px); }
@media(max-width:900px){
  .process-list > .process-item,
  .process-icon-grid > .process-icon-item,
  .projects-grid > .proj-card,
  .team-grid > .team-card{ transform:none !important; }
}

.wave-sep{ position:relative; height:64px; margin:0 0 -1px; padding:0; line-height:0; background:var(--paper); }
.wave-sep svg{ position:absolute; left:0; bottom:0; width:100%; height:100%; display:block; }
.wave-sep.to-panel path{ fill:var(--panel); }
.wave-sep.to-paper path{ fill:var(--paper); }
.wave-sep.to-ink path{ fill:var(--ink); }
@media(max-width:700px){ .wave-sep{ height:40px; } }

.round-a{ border-radius:26px 26px 26px 8px !important; }
.round-b{ border-radius:8px 30px 30px 30px !important; }
.round-c{ border-radius:30px 8px 30px 8px !important; }
.round-d{ border-radius:40px 16px 40px 16px !important; }
.round-e{ border-radius:22px !important; }
.round-f{ border-radius:16px 40px 16px 40px !important; }
.why-list li,
.detail-aside{ border-radius:8px 26px 26px 26px; }
