:root{
  --ink:#18232c;
  --muted:#6d7881;
  --paper:#f4f6f7;
  --white:#ffffff;
  --blue:#274d67;
  --blue-2:#3f6f8d;
  --blue-soft:#dce7ed;
  --orange:#ef7b2d;
  --line:#d8dee2;
  --shadow:0 18px 50px rgba(24,35,44,.12);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#e9edef;color:var(--ink);font-family:"DM Sans",sans-serif;-webkit-font-smoothing:antialiased}
button,a{font:inherit}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.page-shell{width:min(1460px,calc(100% - 32px));margin:16px auto;background:var(--paper);border-radius:28px;overflow:hidden;box-shadow:0 10px 50px rgba(30,48,59,.08)}
.site-header{
  height:110px;
  padding:0 3vw; /* was 5vw — moves logo left */
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(39,77,103,.12);
  position:relative;
  z-index:10;
  background:rgba(244,246,247,.94);
  backdrop-filter:blur(14px);
}

.brand{
  display:flex;
  align-items:center;
  margin-left:0px; /* nudges logo farther left */
}

.brand-mark{
   width:650px;
  height:250px;
  background:transparent;
  border:none;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
    transform:translateY(5px); /* moves logo down */

}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.nav{display:flex;align-items:center;gap:34px;font-weight:600;font-size:15px}
.nav a{transition:.2s ease}
.nav a:hover{color:var(--orange)}
.nav-cta{padding:12px 19px;border:1px solid var(--ink);border-radius:999px}
.menu-button{display:none;border:0;background:none;font-weight:700}
.hero{min-height:720px;padding:82px 5vw 70px;display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;overflow:hidden}
.eyebrow,.section-kicker{text-transform:uppercase;letter-spacing:.15em;font-size:12px;font-weight:800;color:var(--blue-2);display:flex;align-items:center;gap:12px}.eyebrow span{width:28px;height:2px;background:var(--orange)}
h1,h2{font-family:"Manrope",sans-serif;margin:0;letter-spacing:-.05em}
h1{font-size:clamp(58px,6.5vw,104px);line-height:.92;font-weight:800;margin:25px 0 30px}h1 em,h2 em{font-style:normal;color:var(--orange)}
.hero-copy>p{max-width:630px;font-size:19px;line-height:1.7;color:#56636d;margin:0}
.hero-actions{display:flex;align-items:center;gap:28px;margin-top:40px}.button{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:15px 22px;font-weight:700}.button-primary{background:var(--blue);color:white}.button-primary:hover{background:#1d3e54}.text-link{font-weight:700}.text-link span{color:var(--orange)}
.hero-visual{height:590px;position:relative}.hero-card{position:absolute;background:#fff;padding:10px;border-radius:18px;box-shadow:var(--shadow);overflow:hidden}.hero-card img{width:100%;height:100%;object-fit:cover;border-radius:11px}.hero-card-a{width:58%;height:45%;left:2%;top:7%;transform:rotate(-5deg)}.hero-card-b{width:44%;height:55%;right:1%;top:1%;transform:rotate(5deg)}.hero-card-c{width:58%;height:45%;left:24%;bottom:2%;transform:rotate(2deg)}.orange-dot{position:absolute;width:74px;height:74px;border-radius:50%;background:var(--orange);right:9%;bottom:12%;z-index:3;box-shadow:0 15px 35px rgba(239,123,45,.3)}.blue-ring{position:absolute;width:160px;height:160px;border:24px solid var(--blue-soft);border-radius:50%;left:-5%;bottom:7%}
.intro-strip{background:var(--blue);color:#dfeaf0;padding:24px 5vw;text-align:center;font-size:15px;letter-spacing:.02em}.intro-strip p{margin:0}.intro-strip strong{color:white}
.work-section{padding:110px 5vw 120px}.section-heading{display:grid;grid-template-columns:1fr .7fr;gap:70px;align-items:end;margin-bottom:45px}.section-heading h2,.about-copy h2{font-size:clamp(46px,5vw,78px);line-height:1.03;margin-top:14px}.section-heading>p{font-size:17px;line-height:1.7;color:var(--muted);max-width:520px}
.filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:35px}.filter{border:1px solid var(--line);background:transparent;border-radius:999px;padding:10px 15px;color:#53616b;cursor:pointer;font-weight:600;font-size:14px}.filter.active,.filter:hover{background:var(--ink);color:white;border-color:var(--ink)}
.portfolio-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:48px 28px;align-items:start}.project{min-width:0}.project-image{position:relative;width:100%;border:0;padding:12px;background:#e7ecef;border-radius:var(--radius);overflow:hidden;cursor:zoom-in;box-shadow:0 4px 14px rgba(31,48,60,.06);display:flex;align-items:center;justify-content:center}.project-image img{width:100%;height:auto;max-height:none;object-fit:contain;border-radius:calc(var(--radius) - 8px);transition:transform .45s ease}.project:not(.project-wide) .project-image,.project.project-tall .project-image{aspect-ratio:auto}.project-image:hover img{transform:scale(1.015)}.view-chip{position:absolute;right:18px;bottom:18px;background:rgba(255,255,255,.92);padding:8px 13px;border-radius:999px;font-size:12px;font-weight:800;opacity:0;transform:translateY(5px);transition:.25s}.project-image:hover .view-chip{opacity:1;transform:none}.project-meta{display:flex;justify-content:space-between;gap:20px;align-items:baseline;padding:16px 4px 0}.project-meta h3{margin:0;font-size:18px}.project-meta p{margin:0;color:var(--muted);font-size:13px;text-align:right}.project.hidden{display:none}
.about-section{padding:20px 5vw 120px}.about-card{background:#dfe7eb;border-radius:28px;padding:65px;display:grid;grid-template-columns:.7fr 1.3fr;gap:70px;align-items:center}.about-logo{background:#fff;border-radius:20px;padding:38px;min-height:330px;display:flex;align-items:center;box-shadow:0 15px 40px rgba(39,77,103,.08)}.about-logo img{width:100%}.about-copy p{font-size:17px;line-height:1.75;color:#52606a;max-width:760px}.skills{display:flex;flex-wrap:wrap;gap:9px;margin-top:28px}.skills span{background:rgba(255,255,255,.72);padding:9px 12px;border-radius:999px;font-size:13px;font-weight:700;color:var(--blue)}
.contact-section{background:var(--blue);color:white;padding:95px 5vw;display:grid;grid-template-columns:1fr .72fr;gap:70px;align-items:end}.section-kicker.light{color:#a8c2d1}.contact-section h2{font-size:clamp(48px,5vw,78px);line-height:1.03;margin-top:16px}.contact-copy p{font-size:18px;line-height:1.7;color:#d3e0e6;margin-top:0}.button-orange{background:var(--orange);color:white;margin:14px 0 13px}.button-orange:hover{background:#d76820}.contact-copy small{display:block;color:#a8bcc7;max-width:390px;line-height:1.5}
footer{padding:34px 5vw;display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;background:#f7f8f8;color:#65717a;font-size:13px}.footer-brand{width:150px;height:50px;background:white;border:1px solid #e4e8ea;border-radius:10px;padding:5px 8px}.footer-brand img{width:100%;height:100%;object-fit:contain}footer p{text-align:center}footer>a{text-align:right;font-weight:700;color:var(--ink)}
.lightbox{width:min(1100px,92vw);max-height:92vh;border:0;border-radius:18px;padding:0;background:#111820;color:#fff;box-shadow:0 30px 90px rgba(0,0,0,.45)}.lightbox::backdrop{background:rgba(8,15,20,.82);backdrop-filter:blur(6px)}.lightbox-inner{padding:48px 24px 22px}.lightbox-inner img{max-height:78vh;margin:0 auto;border-radius:8px}.lightbox-inner p{text-align:center;margin:14px 0 0;font-weight:700}.lightbox-close{position:absolute;right:14px;top:8px;color:white;background:transparent;border:0;font-size:36px;cursor:pointer;line-height:1}
@media(max-width:980px){.page-shell{width:100%;margin:0;border-radius:0}.site-header{height:84px}.nav{display:none;position:absolute;top:84px;left:0;right:0;background:var(--paper);padding:25px 5vw;flex-direction:column;align-items:flex-start;border-bottom:1px solid var(--line)}.nav.open{display:flex}.menu-button{display:block}.brand-mark{width:170px;height:58px}.hero{grid-template-columns:1fr;padding-top:60px;gap:25px}.hero-visual{height:500px}.section-heading{grid-template-columns:1fr;gap:18px}.about-card,.contact-section{grid-template-columns:1fr}.about-logo{min-height:240px}.portfolio-grid{gap:35px 18px}}
@media(max-width:680px){.site-header{padding:0 20px}.brand-mark{width:145px;height:52px}.hero,.work-section,.about-section,.contact-section{padding-left:20px;padding-right:20px}.hero{min-height:auto}.hero-copy>p{font-size:16px}.hero-actions{align-items:flex-start;flex-direction:column;gap:16px}.hero-visual{height:390px}.hero-card-a{width:62%;height:44%}.hero-card-b{width:44%;height:52%}.hero-card-c{width:64%;height:44%}.orange-dot{width:52px;height:52px}.blue-ring{width:100px;height:100px;border-width:16px}.work-section{padding-top:80px;padding-bottom:90px}.portfolio-grid{grid-template-columns:1fr}.project-image,.project:not(.project-wide) .project-image,.project.project-tall .project-image{aspect-ratio:auto;max-height:none}.project-image img{height:auto;object-fit:contain}.project-meta{align-items:flex-start}.project-meta p{text-align:right;max-width:45%}.about-card{padding:26px;gap:30px}.contact-section{padding-top:70px;padding-bottom:70px}footer{grid-template-columns:1fr;gap:18px;text-align:center}.footer-brand{margin:0 auto}footer p,footer>a{text-align:center}.lightbox-inner{padding:48px 10px 16px}}
