
:root {
  --blue: #0649be;
  --blue-2: #1685dd;
  --ink: #101722;
  --ink-2: #1c2634;
  --muted: #647184;
  --line: #dce2e9;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --dark: #0c1118;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(10, 31, 68, .12);
  --container: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: #fff; color: #000; padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,23,34,.08); backdrop-filter: blur(14px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 210px; height: 60px; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .2s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { text-decoration: none; font-size: .91rem; font-weight: 700; letter-spacing: .01em; padding: 12px 13px; border-radius: 10px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); background: #edf4ff; }
.main-nav .nav-cta { color: #fff; background: var(--blue); padding-inline: 18px; margin-left: 8px; }
.main-nav .nav-cta:hover { color: #fff; background: #043b9a; }
.hero { min-height: calc(100vh - 84px); position: relative; display: grid; align-items: center; isolation: isolate; color: #fff; background: #111 url('/01/assets/images/hero.webp') center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,24,.90) 0%, rgba(6,18,39,.70) 48%, rgba(6,18,39,.18) 100%); z-index: -1; }
.hero-content { max-width: 760px; padding: 90px 0 100px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-2); font-size: .82rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero .eyebrow { color: #8dccff; }
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.3rem; }
.hero p { max-width: 690px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.87); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 22px; border-radius: 12px; text-decoration: none; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #043b9a; }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.search-wrap { margin-top: 34px; max-width: 660px; position: relative; }
.site-search { background: #fff; border-radius: 999px; padding: 7px 7px 7px 20px; display: flex; align-items: center; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.site-search svg { color: var(--muted); flex: 0 0 auto; }
.site-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); padding: 10px 12px; }
.site-search button { border: 0; border-radius: 999px; min-width: 112px; padding: 12px 18px; color: #fff; background: var(--blue); font-weight: 800; cursor: pointer; }
.search-status { min-height: 24px; margin: 9px 18px 0; color: #fff; font-size: .88rem; }
.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--dark); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-dark .section-head p { color: #aab6c6; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prose p { color: var(--muted); font-size: 1.03rem; }
.prose strong { color: var(--ink); }
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 460px; }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.service-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 265px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bfd2ee; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: #eaf3ff; color: var(--blue); margin-bottom: 22px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-card a.stretched { position: absolute; inset: 0; text-indent: -9999px; overflow: hidden; }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split-panel .image { background-position: center; background-size: cover; min-height: 440px; }
.split-panel .content { display: flex; align-items: center; padding: clamp(48px, 7vw, 100px); background: var(--ink-2); color: #fff; }
.split-panel .content p { color: #b8c4d2; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(10,31,68,.07); }
.project-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: #dde4ec; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-card .body { padding: 24px; }
.project-card .body p { color: var(--muted); margin: 0 0 18px; }
.project-card a { color: var(--blue); font-weight: 800; text-decoration: none; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.stat { background: #101925; padding: 30px; }
.stat strong { display: block; font-size: 1.15rem; margin-bottom: 6px; }
.stat span { color: #95a6ba; font-size: .93rem; }
.page-hero { position: relative; color: #fff; background: #0d1521 url('/01/assets/images/hero.webp') center 55%/cover no-repeat; isolation: isolate; padding: 105px 0 90px; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(90deg, rgba(6,14,27,.94), rgba(6,14,27,.62)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); max-width: 950px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; font-size: .88rem; color: rgba(255,255,255,.7); }
.breadcrumbs a { text-decoration: none; color: #a8d5ff; }
.feature-list { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; color: var(--muted); }
.feature-list li::before { content: "✓"; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #e9f3ff; color: var(--blue); font-weight: 900; }
.portfolio-list { columns: 2; column-gap: 34px; margin: 0; padding: 0; list-style: none; }
.portfolio-list li { break-inside: avoid; position: relative; padding: 0 0 16px 26px; color: var(--muted); }
.portfolio-list li::before { content:""; position:absolute; left:0; top:.7em; width:9px; height:9px; border-radius:50%; background:var(--blue); }
.project-intro { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; align-items: start; }
.project-meta { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.project-meta strong { display: block; margin-bottom: 7px; }
.project-meta span { color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery button { padding: 0; border: 0; border-radius: 14px; overflow: hidden; background: #e7ebf0; cursor: zoom-in; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery button:hover img { transform: scale(1.035); }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; background: rgba(0,0,0,.92); padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1500px, 94vw); max-height: 88vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: fixed; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.45); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; }
.lightbox-close { right: 22px; top: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { padding: 24px; border-radius: var(--radius); background: var(--soft); border: 1px solid var(--line); }
.contact-card small { display: block; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); font-weight: 800; margin-bottom: 8px; }
.contact-card a { text-decoration: none; font-weight: 750; }
.map { min-height: 520px; border: 0; border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }
.cta { padding: 74px 0; background: linear-gradient(120deg, #052e7d, #0962d1); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.cta p { margin: 0; color: rgba(255,255,255,.8); }
.site-footer { background: #080c12; color: #c6d0dc; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 50px; }
.footer-logo {
    width: 240px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 18px;
}
.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #aab7c6; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: #8291a3; font-size: .88rem; }
.reveal { opacity: 1; transform: none; }
.notice { background: #eaf3ff; border: 1px solid #c7dcf6; color: #14355d; padding: 18px 20px; border-radius: 12px; }
@media (max-width: 980px) {
  .header-inner { min-height: 74px; }
  .brand { width: 180px; height: 52px; }
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 20px; right: 20px; top: 72px; padding: 12px; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .hero { min-height: calc(100vh - 74px); }
  .grid-2, .contact-grid, .project-intro { grid-template-columns: 1fr; }
  .grid-3, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .split-panel { grid-template-columns: 1fr; }
  .split-panel .image { order: 0; }
  .split-panel .content { order: 1; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .hero-content { padding: 70px 0 78px; }
  .hero::before { background: rgba(5,12,24,.80); }
  .site-search { border-radius: 18px; padding: 8px; display: grid; grid-template-columns: 30px 1fr; }
  .site-search button { grid-column: 1 / -1; width: 100%; margin-top: 4px; border-radius: 12px; }
  .grid-3, .project-grid, .gallery, .stat-strip { grid-template-columns: 1fr; }
  .portfolio-list { columns: 1; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .map { min-height: 400px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 18px; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
