@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #09285b;
  --ink-2: #153a75;
  --blue: #0879f8;
  --blue-bright: #12a8ff;
  --orange: #ff4d17;
  --cream: #fff9f4;
  --paper: #ffffff;
  --line: #dbe4f2;
  --muted: #687994;
  --soft: #f3f7fc;
  --dark: #061a40;
  --shadow: 0 24px 70px rgba(9,40,91,.12);
  --radius: 28px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.section-pad { padding: 118px 0; }
.section-pad-sm { padding: 72px 0; }
.soft-section { background: var(--soft); }
.dark-section { background: var(--dark); color: white; }
.eyebrow { margin: 0 0 16px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .17em; font-size: .77rem; font-weight: 800; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }
.display { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3.7rem, 9vw, 9.2rem); line-height: .86; letter-spacing: -.065em; margin: 0; text-transform: uppercase; }
.heading { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.6rem, 5.4vw, 5.6rem); line-height: .96; letter-spacing: -.055em; margin: 0; text-transform: uppercase; }
.subheading { font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 720px; }
.gradient-text { background: linear-gradient(100deg, var(--blue) 10%, var(--blue-bright) 64%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.orange-text { color: var(--orange); }
.muted { color: var(--muted); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10000; transform: translateY(-150%); background: var(--dark); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-color: rgba(9,40,91,.09); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 178px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; }
.nav-link { position: relative; }
.nav-link::after { content:''; position:absolute; left:0; right:100%; bottom:-8px; height:2px; background:var(--orange); transition:.25s; }
.nav-link:hover::after, .nav-link.active::after { right:0; }
.header-actions { display:flex; align-items:center; gap:14px; }
.menu-button { display:none; width:46px; height:46px; border:1px solid var(--line); background:white; border-radius:50%; cursor:pointer; font-size:1.25rem; }
.mobile-menu { position: fixed; inset: 88px 0 auto; background: white; border-top: 1px solid var(--line); padding: 28px 20px 38px; display: none; flex-direction: column; gap: 22px; box-shadow: var(--shadow); }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:1.2rem; font-weight:800; }

/* Buttons */
.button { appearance:none; border:0; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:15px 22px; border-radius:999px; background:var(--ink); color:white; font-weight:800; cursor:pointer; transition:.25s ease; box-shadow:none; }
.button:hover { transform: translateY(-2px); background:var(--blue); }
.button.secondary { background:white; color:var(--ink); border:1px solid var(--line); }
.button.secondary:hover { border-color:var(--ink); background:white; }
.button.orange { background:var(--orange); }
.button.small { padding:11px 17px; font-size:.85rem; }
.button.full { width:100%; }
.text-link { display:inline-flex; align-items:center; gap:8px; font-weight:800; color:var(--blue); }
.text-link:hover { color:var(--orange); }
.icon-button { width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:white; display:grid; place-items:center; cursor:pointer; }

/* Hero */
.hero { min-height: 940px; padding: 170px 0 90px; position: relative; overflow: hidden; background: radial-gradient(circle at 78% 30%, rgba(18,168,255,.16), transparent 26%), radial-gradient(circle at 90% 75%, rgba(255,77,23,.12), transparent 24%), white; }
.hero::after { content:''; position:absolute; width:520px; height:520px; right:-180px; top:160px; border:1px solid rgba(9,40,91,.08); border-radius:50%; box-shadow:0 0 0 80px rgba(9,40,91,.025),0 0 0 160px rgba(9,40,91,.018); }
.hero-grid { display:grid; grid-template-columns: 1.03fr .97fr; align-items:center; gap:70px; position:relative; z-index:2; }
.hero-copy { padding-top: 24px; }
.hero-description { max-width: 650px; font-size:1.16rem; color:var(--muted); margin:30px 0; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.hero-proof { display:flex; align-items:center; gap:14px; margin-top:40px; font-size:.82rem; color:var(--muted); }
.avatar-stack { display:flex; }
.avatar-stack span { width:34px; height:34px; margin-left:-8px; border-radius:50%; display:grid; place-items:center; color:white; font-weight:800; border:2px solid white; background:var(--ink); }
.avatar-stack span:first-child { margin-left:0; background:var(--orange); }
.hero-visual { min-height:600px; position:relative; }
.hero-card { border-radius:var(--radius); box-shadow:var(--shadow); }
.hero-card-main { position:absolute; inset:60px 30px 60px 35px; background:linear-gradient(145deg,#0d2f6d,#061a40); color:white; padding:30px; transform:rotate(3deg); overflow:hidden; }
.hero-card-main::before { content:''; position:absolute; width:330px; height:330px; border:74px solid var(--blue-bright); border-radius:50%; top:120px; left:100px; opacity:.9; }
.hero-card-main::after { content:''; position:absolute; width:190px; height:190px; background:var(--orange); border-radius:44px; top:210px; left:170px; transform:rotate(35deg); mix-blend-mode:screen; }
.hero-card-top, .hero-card-bottom { position:relative; z-index:3; display:flex; justify-content:space-between; font-size:.72rem; letter-spacing:.15em; font-weight:800; }
.hero-card-bottom { position:absolute; left:30px; right:30px; bottom:30px; align-items:flex-end; letter-spacing:0; font-size:.8rem; }
.hero-card-bottom strong { font-size:1.35rem; max-width:230px; line-height:1.05; }
.hero-floating { position:absolute; z-index:4; }
.hero-orange { right:-10px; top:22px; width:175px; height:175px; border-radius:50%; background:var(--orange); color:white; display:grid; place-items:center; text-align:center; font-family:'Space Grotesk'; font-size:1.45rem; font-weight:700; line-height:1.05; transform:rotate(12deg); }
.hero-blue { left:-20px; bottom:15px; width:215px; padding:22px; background:white; border:1px solid var(--line); }
.hero-blue span { display:block; padding:5px 0; font-weight:800; }
.hero-blue .mini-dot { width:10px; height:10px; padding:0; border-radius:50%; background:var(--blue); margin-bottom:8px; }
.hero-mascot { position:absolute; z-index:5; width:255px; right:-40px; bottom:-45px; transform:rotate(-4deg); }

.marquee { overflow:hidden; background:var(--ink); color:white; border-block:1px solid rgba(255,255,255,.1); }
.marquee-track { display:flex; width:max-content; animation:marquee 25s linear infinite; padding:18px 0; align-items:center; }
.marquee span { font-family:'Space Grotesk'; font-size:1rem; font-weight:700; letter-spacing:.08em; margin:0 28px; }
.marquee b { color:var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.intro-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:80px; align-items:start; }
.intro-kicker { display:flex; align-items:flex-start; gap:20px; font-weight:800; font-size:.85rem; letter-spacing:.12em; }
.intro-kicker span { color:var(--orange); }
.intro-grid h2 { font-family:'Space Grotesk'; font-size:clamp(2.7rem,5vw,5.5rem); line-height:.97; letter-spacing:-.055em; margin:0 0 28px; text-transform:uppercase; }
.intro-grid > div:last-child > p { max-width:780px; font-size:1.12rem; color:var(--muted); }
.section-heading { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:58px; }
.section-heading .heading { max-width:850px; }
.section-heading p:last-child { max-width:580px; color:var(--muted); }

/* Work */
.project-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:46px 28px; }
.project-card { display:block; min-width:0; }
.project-image { border-radius:28px; overflow:hidden; background:var(--soft); aspect-ratio:1.22; position:relative; }
.project-image img { width:100%; height:100%; object-fit:cover; transition:.6s cubic-bezier(.2,.8,.2,1); }
.project-card:hover img { transform:scale(1.04); }
.project-open { position:absolute; top:20px; right:20px; width:52px; height:52px; border-radius:50%; background:white; display:grid; place-items:center; font-size:1.25rem; transform:translateY(-8px); opacity:0; transition:.3s; }
.project-card:hover .project-open { transform:none; opacity:1; }
.project-meta { display:flex; justify-content:space-between; gap:20px; padding:18px 4px 0; }
.project-meta h3 { margin:0; font-family:'Space Grotesk'; font-size:1.45rem; }
.project-meta p, .project-meta span { margin:4px 0 0; color:var(--muted); font-size:.9rem; }
.project-featured:nth-child(3n+1) { grid-column:span 2; }
.project-featured:nth-child(3n+1) .project-image { aspect-ratio:2.05; }
.project-filter { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:38px; }
.filter-button { border:1px solid var(--line); background:white; border-radius:999px; padding:10px 15px; font-weight:700; cursor:pointer; }
.filter-button.active, .filter-button:hover { color:white; background:var(--ink); border-color:var(--ink); }

/* Services */
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.service-card { min-height:305px; padding:34px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:white; transition:.3s; }
.service-card:hover { background:var(--ink); color:white; transform:translateY(-4px); box-shadow:var(--shadow); }
.service-number { display:flex; justify-content:space-between; align-items:center; color:var(--blue); font-weight:800; }
.service-icon { width:48px; height:48px; border-radius:15px; border:1px solid var(--line); display:grid; place-items:center; font-size:1.3rem; }
.service-card h3 { font-family:'Space Grotesk'; font-size:1.65rem; margin:65px 0 12px; }
.service-card p { color:var(--muted); margin:0; }
.service-card:hover p { color:rgba(255,255,255,.68); }

/* Difference, stats, about */
.difference-grid { display:grid; grid-template-columns:1fr 1fr; gap:25px; }
.difference-card { border-radius:28px; padding:40px; background:white; border:1px solid var(--line); min-height:300px; position:relative; overflow:hidden; }
.difference-card:nth-child(2) { background:var(--ink); color:white; }
.difference-card:nth-child(3) { background:var(--orange); color:white; }
.difference-card:nth-child(4) { background:#e9f5ff; }
.difference-card span { font-family:'Space Grotesk'; font-size:5rem; position:absolute; top:20px; right:28px; opacity:.12; }
.difference-card h3 { font-family:'Space Grotesk'; font-size:1.8rem; margin:110px 0 12px; }
.difference-card p { max-width:520px; margin:0; opacity:.78; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); border-block:1px solid rgba(255,255,255,.15); }
.stat { padding:48px 24px; border-right:1px solid rgba(255,255,255,.15); }
.stat:last-child { border:0; }
.stat strong { display:block; font-family:'Space Grotesk'; font-size:clamp(3rem,6vw,6rem); line-height:1; color:var(--blue-bright); }
.stat span { font-size:.85rem; text-transform:uppercase; letter-spacing:.12em; opacity:.7; }
.studio-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.studio-visual { min-height:560px; border-radius:34px; background:linear-gradient(145deg,#e7f4ff,#fff0e9); position:relative; overflow:hidden; }
.studio-visual img { position:absolute; width:95%; right:-80px; bottom:-30px; }
.studio-chip { position:absolute; left:30px; top:30px; padding:14px 18px; border-radius:999px; background:white; font-weight:800; box-shadow:var(--shadow); }
.studio-copy p { color:var(--muted); font-size:1.08rem; }

/* Testimonials and clients */
.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { border:1px solid var(--line); border-radius:26px; padding:30px; display:flex; flex-direction:column; min-height:340px; }
.quote-mark { font-family:Georgia,serif; font-size:4.5rem; color:var(--orange); line-height:.7; }
.testimonial-card blockquote { margin:22px 0 30px; font-size:1.04rem; flex:1; }
.testimonial-author strong { display:block; }
.testimonial-author span { color:var(--muted); font-size:.88rem; }
.client-strip { overflow:hidden; border-block:1px solid var(--line); }
.client-track { display:flex; align-items:center; width:max-content; animation:marquee 30s linear infinite; padding:28px 0; }
.client-item { min-width:205px; display:flex; justify-content:center; align-items:center; padding:0 30px; font-family:'Space Grotesk'; font-size:1.2rem; font-weight:700; filter:grayscale(1); opacity:.66; }
.client-item img { max-width:140px; max-height:44px; object-fit:contain; }

/* FAQ */
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%; border:0; background:none; padding:26px 0; display:flex; justify-content:space-between; gap:30px; text-align:left; font-family:'Space Grotesk'; font-size:1.35rem; cursor:pointer; }
.faq-question span:last-child { color:var(--orange); font-size:1.7rem; transition:.25s; }
.faq-item.open .faq-question span:last-child { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p { margin:0; padding:0 70px 28px 0; color:var(--muted); }

/* CTA/footer */
.cta-section { padding:110px 0; background:linear-gradient(120deg,var(--blue),var(--blue-bright)); color:white; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; width:500px; height:500px; border:100px solid rgba(255,255,255,.1); border-radius:50%; right:-150px; top:-170px; }
.cta-grid { display:flex; justify-content:space-between; gap:50px; align-items:end; position:relative; z-index:2; }
.cta-grid .heading { max-width:850px; }
.site-footer { background:var(--dark); color:white; padding:80px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.7fr repeat(3,1fr); gap:60px; }
.footer-brand img { width:180px; filter:brightness(0) invert(1); }
.footer-brand p { color:rgba(255,255,255,.6); max-width:350px; }
.footer-col h4 { margin:0 0 18px; font-size:.84rem; text-transform:uppercase; letter-spacing:.14em; color:var(--blue-bright); }
.footer-col a { display:block; margin:10px 0; color:rgba(255,255,255,.72); }
.footer-col a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:65px; padding-top:25px; display:flex; justify-content:space-between; gap:25px; color:rgba(255,255,255,.52); font-size:.82rem; }

/* Inner pages */
.page-hero { padding:180px 0 90px; background:linear-gradient(180deg,#f7fbff,white); }
.page-hero-grid { display:grid; grid-template-columns:1.1fr .9fr; align-items:end; gap:70px; }
.page-hero p { color:var(--muted); max-width:600px; }
.breadcrumb { display:flex; gap:8px; color:var(--muted); font-size:.85rem; margin-bottom:30px; }
.breadcrumb a:hover { color:var(--blue); }
.project-detail { padding-top:170px; }
.project-detail-head { display:grid; grid-template-columns:1.25fr .75fr; gap:80px; align-items:end; margin-bottom:60px; }
.project-detail-meta { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.meta-block { border-top:1px solid var(--line); padding-top:12px; }
.meta-block small { display:block; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; margin-bottom:4px; }
.project-hero-image { border-radius:34px; overflow:hidden; background:var(--soft); }
.project-hero-image img { width:100%; }
.project-body-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; padding:80px 0 120px; }
.project-body-grid h2 { font-family:'Space Grotesk'; font-size:2rem; margin:0; }
.project-body-grid p { color:var(--muted); font-size:1.08rem; white-space:pre-line; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.process-card { border:1px solid var(--line); border-radius:24px; padding:28px; min-height:255px; }
.process-card strong { color:var(--orange); }
.process-card h3 { margin:65px 0 10px; font-family:'Space Grotesk'; }
.process-card p { color:var(--muted); font-size:.9rem; }

/* Forms */
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); border-radius:14px; padding:14px 15px; color:var(--ink); background:white; outline:none; }
.field textarea { min-height:150px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(8,121,248,.1); }
.form-card { background:white; border:1px solid var(--line); border-radius:28px; padding:34px; box-shadow:var(--shadow); }
.form-note { font-size:.82rem; color:var(--muted); }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-card { border-top:1px solid var(--line); padding:22px 0; }
.contact-card small { color:var(--muted); text-transform:uppercase; letter-spacing:.1em; }
.contact-card a, .contact-card strong { display:block; margin-top:4px; font-size:1.12rem; }
.notice { padding:13px 15px; border-radius:12px; margin-bottom:18px; background:#e9f7ef; color:#126335; display:none; }
.notice.show { display:block; }
.notice.error { background:#fff0ed; color:#a82e18; }

/* Admin */
.admin-body { background:#eef3f9; }
.admin-shell { min-height:100vh; }
.admin-topbar { background:var(--dark); color:white; padding:17px 0; position:sticky; top:0; z-index:100; }
.admin-topbar .container { display:flex; justify-content:space-between; align-items:center; }
.admin-topbar img { width:145px; filter:brightness(0) invert(1); }
.admin-layout { display:grid; grid-template-columns:250px 1fr; gap:24px; padding:28px 0 70px; }
.admin-sidebar { background:white; border:1px solid var(--line); border-radius:22px; padding:16px; height:fit-content; position:sticky; top:92px; }
.admin-tab { width:100%; display:flex; align-items:center; gap:10px; border:0; background:none; padding:12px 14px; border-radius:12px; cursor:pointer; font-weight:700; text-align:left; }
.admin-tab:hover, .admin-tab.active { background:var(--ink); color:white; }
.admin-main { min-width:0; }
.admin-panel { background:white; border:1px solid var(--line); border-radius:22px; padding:26px; }
.admin-panel-head { display:flex; justify-content:space-between; gap:20px; align-items:center; margin-bottom:22px; }
.admin-panel h1, .admin-panel h2 { font-family:'Space Grotesk'; margin:0; }
.admin-list { display:grid; gap:12px; }
.admin-list-item { border:1px solid var(--line); border-radius:16px; padding:14px; display:grid; grid-template-columns:64px 1fr auto; align-items:center; gap:16px; }
.admin-thumb { width:64px; height:64px; border-radius:12px; object-fit:cover; background:var(--soft); }
.admin-thumb.placeholder { display:grid; place-items:center; font-weight:800; color:var(--blue); }
.admin-list-item h3 { margin:0 0 4px; font-size:1rem; }
.admin-list-item p { margin:0; color:var(--muted); font-size:.82rem; }
.admin-actions { display:flex; gap:8px; }
.badge { display:inline-flex; border-radius:999px; padding:4px 8px; background:#e9f7ef; color:#126335; font-size:.7rem; font-weight:800; margin-bottom:5px; }
.badge.draft { background:#fff3df; color:#8d5412; }
.editor-drawer { position:fixed; inset:0; z-index:1000; display:none; }
.editor-drawer.open { display:block; }
.editor-backdrop { position:absolute; inset:0; background:rgba(4,18,44,.46); }
.editor-card { position:absolute; top:0; right:0; width:min(620px,100%); height:100%; background:white; padding:28px; overflow:auto; box-shadow:-20px 0 60px rgba(0,0,0,.18); }
.editor-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:25px; }
.editor-head h2 { margin:0; font-family:'Space Grotesk'; }
.checkbox-field { flex-direction:row; align-items:center; }
.checkbox-field input { width:auto; }
.login-wrap { min-height:100vh; display:grid; place-items:center; padding:30px; background:radial-gradient(circle at 70% 20%,rgba(18,168,255,.2),transparent 30%),var(--soft); }
.login-card { width:min(450px,100%); background:white; padding:38px; border-radius:28px; box-shadow:var(--shadow); }
.login-card img { width:170px; margin-bottom:30px; }
.admin-notice { position:fixed; right:20px; bottom:20px; z-index:2000; max-width:390px; display:none; padding:14px 18px; color:white; background:#126335; border-radius:14px; box-shadow:var(--shadow); }
.admin-notice.show { display:block; }
.admin-notice.error { background:#a82e18; }
.config-warning { background:#fff5e9; border:1px solid #ffd19d; color:#7f4c13; border-radius:16px; padding:20px; }
.inquiry-card { border:1px solid var(--line); border-radius:16px; padding:18px; }
.inquiry-card h3 { margin:0; }
.inquiry-meta { display:flex; flex-wrap:wrap; gap:12px; color:var(--muted); font-size:.82rem; margin:7px 0 12px; }

/* Reveal */
.reveal { opacity:0; transform:translateY(25px); transition:.75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity:1; transform:none; }
.empty-state { text-align:center; border:1px dashed var(--line); border-radius:22px; padding:50px 20px; color:var(--muted); }

@media (max-width: 980px) {
  .desktop-nav { display:none; }
  .menu-button { display:grid; place-items:center; }
  .header-actions .button { display:none; }
  .hero { min-height:auto; }
  .hero-grid, .page-hero-grid, .studio-grid, .contact-grid, .project-detail-head, .project-body-grid { grid-template-columns:1fr; }
  .hero-visual { min-height:540px; }
  .intro-grid { grid-template-columns:1fr; gap:40px; }
  .service-grid, .testimonial-grid { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.15); }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column:2/4; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .admin-layout { grid-template-columns:1fr; }
  .admin-sidebar { position:static; display:flex; overflow:auto; }
  .admin-tab { min-width:max-content; }
}

@media (max-width: 680px) {
  .container, .narrow { width:min(calc(100% - 28px), var(--container)); }
  .section-pad { padding:82px 0; }
  .nav-wrap { min-height:74px; }
  .mobile-menu { inset:74px 0 auto; }
  .brand img { width:150px; }
  .hero { padding-top:130px; }
  .display { font-size:clamp(3.25rem,17vw,5.2rem); }
  .heading { font-size:clamp(2.45rem,12vw,4.2rem); }
  .hero-visual { min-height:450px; }
  .hero-card-main { inset:40px 8px 45px 8px; padding:22px; }
  .hero-card-main::before { width:250px; height:250px; border-width:56px; left:48px; top:95px; }
  .hero-card-main::after { width:150px; height:150px; left:105px; top:160px; }
  .hero-orange { width:125px; height:125px; font-size:1rem; right:-8px; }
  .hero-blue { width:175px; left:-8px; bottom:4px; }
  .hero-mascot { width:190px; right:-38px; bottom:-28px; }
  .project-grid, .difference-grid, .service-grid, .testimonial-grid, .process-grid { grid-template-columns:1fr; }
  .project-featured:nth-child(3n+1) { grid-column:auto; }
  .project-featured:nth-child(3n+1) .project-image { aspect-ratio:1.22; }
  .section-heading { align-items:start; flex-direction:column; }
  .stats-grid { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:38px; }
  .footer-brand { grid-column:1/-1; }
  .footer-col:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .cta-grid { align-items:start; flex-direction:column; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .admin-list-item { grid-template-columns:54px 1fr; }
  .admin-thumb { width:54px; height:54px; }
  .admin-actions { grid-column:1/-1; }
  .admin-panel { padding:18px; }
}
