/* Alpha Access PR - shared design system (taste-skill v2)
   Satoshi + one accent #2657C1 (deck royal blue), editorial hairline system, light theme lock. */

:root {
  --accent: #2657C1;
  --accent-deep: #1D448F;
  --ink: #1A2332;
  --muted: #5A6B7A;
  --paper: #FFFFFF;
  --paper-alt: #F7F3EB;
  --hairline: #E3E8EE;
  --radius-card: 12px;
  --radius-input: 8px;
  --font: 'Satoshi', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }
.logo-text { font-weight: 900; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); }
.logo-text em { font-style: normal; color: var(--accent); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); font-weight: 700; }
/* Nav CTA button: .nav a outranks .btn on specificity, so force white text + 700 weight */
.nav a.btn, .nav a.btn:hover, .nav a.btn:active {
  color: #fff; font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  color: #fff; background: var(--accent);
  padding: 11px 22px; border-radius: 999px; border: 0; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  color: var(--ink); background: transparent;
  padding: 11px 4px; border: 0; border-bottom: 2px solid var(--hairline); cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero { background: var(--paper); overflow: hidden; position: relative; }
#particle-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
  padding: 88px 0 96px;
}
.hero h1 {
  font-weight: 900; font-size: clamp(36px, 3.9vw, 48px);
  line-height: 1.08; letter-spacing: -1.2px;
  color: var(--ink); margin-bottom: 24px;
  max-width: 14ch;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.5;
  max-width: 40ch; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 24px; align-items: center; }
.hero-visual { position: relative; }
.hero-img {
  border-radius: var(--radius-card); aspect-ratio: 0.95; object-fit: cover; width: 100%;
}
.hero-img-wrap { position: relative; }
.hero-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px rgba(26,35,50,0.06);
  pointer-events: none;
}
.hero-note {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--radius-card); padding: 14px 18px;
  font-size: 13px; color: var(--muted); line-height: 1.4;
  box-shadow: 0 12px 32px rgba(26,35,50,0.08);
}
.hero-note strong { display: block; color: var(--ink); font-size: 15px; }

/* ============ STATS ============ */
.stats { border-top: 1px solid var(--hairline); background: var(--paper); }
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 40px 0;
}
.stat { padding: 0 24px; border-left: 1px solid var(--hairline); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .stat-value {
  font-weight: 900; font-size: 40px; line-height: 1.1;
  letter-spacing: -1px; color: var(--ink);
}
.stat .stat-value .unit { color: var(--accent); }
.stat .stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ============ SECTION BASE ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 {
  font-weight: 900; font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12; letter-spacing: -1px; color: var(--ink);
}
.section-head p { font-size: 16px; color: var(--muted); margin-top: 14px; max-width: 52ch; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 {
  font-weight: 900; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 24px;
}
.about-text p { color: var(--muted); margin-bottom: 18px; max-width: 52ch; }
.about-text p strong { color: var(--ink); font-weight: 700; }
.about-visual { position: relative; }
.about-img {
  border-radius: var(--radius-card); aspect-ratio: 4/3.4; object-fit: cover; width: 100%;
}

/* ============ 3 A's (editorial list) ============ */
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
.approach-intro { position: sticky; top: 120px; align-self: start; }
.approach-intro h2 {
  font-weight: 900; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 20px;
}
.approach-intro p { color: var(--muted); max-width: 40ch; }
.approach-list { border-top: 1px solid var(--hairline); }
.approach-row {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 32px; padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
}
.approach-row h3 {
  font-weight: 900; font-size: 26px; letter-spacing: -0.5px; color: var(--ink);
}
.approach-row p { color: var(--muted); font-size: 15px; max-width: 48ch; }

/* ============ SERVICES (2-col list) ============ */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
}
.service-row {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  transition: background .2s var(--ease);
}
.service-row:nth-child(odd) { padding-right: 32px; }
.service-row:nth-child(even) { padding-left: 32px; padding-right: 0; border-right: 0; }
.service-row:hover { background: var(--paper-alt); }
.service-row h3 { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.service-row p { font-size: 14px; color: var(--muted); max-width: 44ch; }
.service-cta {
  padding: 28px 0 28px 32px; border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 16px;
}
.service-cta p { font-size: 14px; color: var(--muted); }
.service-cta .btn { flex-shrink: 0; }

/* ============ CASE STUDIES (image grid, captions below) ============ */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 40px; }
.case-item .case-img {
  border-radius: var(--radius-card); aspect-ratio: 16/10; object-fit: cover; width: 100%;
  transition: transform .4s var(--ease);
}
.case-item .case-img-wrap { overflow: hidden; border-radius: var(--radius-card); }
.case-item:hover .case-img { transform: scale(1.03); }
.case-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px; gap: 16px;
}
.case-meta h3 { font-weight: 700; font-size: 18px; line-height: 1.3; letter-spacing: -0.2px; }
.case-meta .case-value {
  font-weight: 900; font-size: 15px; color: var(--accent); white-space: nowrap;
}
.case-desc { font-size: 14px; color: var(--muted); margin-top: 8px; max-width: 48ch; }
.case-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px; color: var(--ink);
  border-bottom: 2px solid var(--hairline); padding-bottom: 2px; margin-top: 14px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.case-link:hover { border-color: var(--accent); color: var(--accent); }
.case-link .ph { font-size: 13px; }

/* ============ AWARDS (editorial rows) ============ */
.awards-list { border-top: 1px solid var(--hairline); }
.award-row {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 28px 0; border-bottom: 1px solid var(--hairline);
}
.award-row .award-campaign { font-weight: 700; font-size: 17px; }
.award-row .award-category { font-size: 14px; color: var(--muted); }
.award-row .award-year {
  font-weight: 900; font-size: 15px; color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ============ CLIENTS ============ */
.clients-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 40px; padding: 16px 0;
}
.client-logo { height: 34px; width: auto; opacity: 0.5; filter: grayscale(1); transition: opacity .2s var(--ease), filter .2s var(--ease); }
.client-logo:hover { opacity: 1; filter: grayscale(0); }
.clients-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 32px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 {
  font-weight: 900; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 20px;
}
.contact-info > p { color: var(--muted); margin-bottom: 36px; max-width: 44ch; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-line .c-icon {
  width: 40px; height: 40px; border-radius: var(--radius-card); flex-shrink: 0;
  background: var(--paper-alt); border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent);
}
.contact-line .c-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-line .c-value { font-weight: 500; color: var(--ink); font-size: 15px; }
.contact-line a.c-value:hover { color: var(--accent); }
.contact-socials { display: flex; gap: 10px; margin-top: 32px; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: var(--radius-card);
  background: var(--paper-alt); border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.contact-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact-form-card {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 40px;
}
.contact-form-card h3 { font-weight: 900; font-size: 22px; letter-spacing: -0.4px; margin-bottom: 6px; }
.contact-form-card .cf-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* ============ FORM ============ */
.aapr-form .field { margin-bottom: 18px; }
.aapr-form label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.aapr-form input, .aapr-form select, .aapr-form textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px;
  font-family: var(--font); font-size: 15px;
  color: var(--ink); background: var(--paper);
  border: 1px solid #CBD5E0; border-radius: var(--radius-input); outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.aapr-form input:focus, .aapr-form select:focus, .aapr-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(38,87,193,0.12);
}
.aapr-form textarea { resize: vertical; min-height: 100px; }
.aapr-form .btn-submit {
  display: inline-block; cursor: pointer; border: 0;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  color: #ffffff; background-color: var(--accent);
  padding: 13px 32px; border-radius: 999px; line-height: normal;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.aapr-form .btn-submit:hover { background-color: var(--accent-deep); transform: translateY(-1px); }
.aapr-form .btn-submit:disabled { opacity: .5; cursor: default; }
.aapr-form .form-error {
  display: none; margin: 0 0 14px; padding: 10px 14px; font-size: 14px;
  color: #661d1d; background-color: #ffeded; border: 1px solid #ff4949; border-radius: var(--radius-input);
}
.aapr-form .form-error.visible { display: block; }
.aapr-form .form-success {
  display: none; margin: 0 0 14px; padding: 10px 14px; font-size: 14px;
  color: #085229; background-color: #e7faf0; border: 1px solid #51cf66; border-radius: var(--radius-input);
}
.aapr-form .form-success.visible { display: block; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--hairline); background: var(--paper); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 16px; max-width: 36ch; line-height: 1.7; }
.footer-col h6 {
  font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--ink); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--hairline); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--hairline); }
.page-hero h1 {
  font-weight: 900; font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -1.2px; color: var(--ink);
  max-width: 20ch;
}
.page-hero p { font-size: 17px; color: var(--muted); margin-top: 16px; max-width: 56ch; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ TEAM GRID ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
.team-card .team-img-wrap { overflow: hidden; border-radius: var(--radius-card); }
.team-card .team-img {
  aspect-ratio: 4/4.6; object-fit: cover; width: 100%;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-img { transform: scale(1.03); }
.team-card h3 { font-weight: 900; font-size: 19px; letter-spacing: -0.3px; margin-top: 16px; }
.team-card .team-role { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.team-card p { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.testimonial {
  border: 1px solid var(--hairline); border-radius: var(--radius-card);
  padding: 32px; background: var(--paper);
}
.testimonial blockquote { font-size: 17px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.testimonial .t-author { font-size: 13px; color: var(--muted); margin-top: 16px; font-weight: 700; }

/* ============ CASE STUDY PAGE ============ */
.cs-layout { padding: 72px 0 96px; }
.cs-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.cs-body h2 {
  font-weight: 900; font-size: 24px; letter-spacing: -0.4px; margin: 40px 0 16px;
}
.cs-body h2:first-child { margin-top: 0; }
.cs-body p { color: var(--muted); margin-bottom: 18px; max-width: 65ch; line-height: 1.7; }
.cs-body ul { list-style: none; margin-bottom: 24px; }
.cs-body li {
  padding: 14px 0 14px 28px; border-bottom: 1px solid var(--hairline);
  position: relative; color: var(--ink); font-weight: 500;
}
.cs-body li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
.cs-side { position: sticky; top: 96px; }
.cs-value-card {
  border: 1px solid var(--hairline); border-radius: 16px; padding: 32px;
  background: var(--paper-alt);
}
.cs-value-card .cv-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.cs-value-card .cv-number { font-weight: 900; font-size: 40px; letter-spacing: -1px; color: var(--accent); margin: 8px 0 4px; }
.cs-value-card .cv-note { font-size: 13px; color: var(--muted); }
.cs-client-logo { margin-top: 24px; background: var(--paper); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px; display: flex; align-items: center; justify-content: center; }
.cs-client-logo img { height: 44px; width: auto; }
.cs-cta { margin-top: 24px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.blog-card .blog-img-wrap { overflow: hidden; border-radius: var(--radius-card); }
.blog-card .blog-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform .4s var(--ease); }
.blog-card:hover .blog-img { transform: scale(1.03); }
.blog-card .blog-meta { font-size: 12px; color: var(--muted); margin-top: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-weight: 900; font-size: 19px; line-height: 1.3; letter-spacing: -0.3px; margin-top: 8px; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.blog-card .blog-read { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 12px; display: inline-block; }

/* ============ ARTICLE PAGE ============ */
.article-hero { padding: 72px 0 40px; border-bottom: 1px solid var(--hairline); }
.article-hero .article-meta { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.article-hero h1 { font-weight: 900; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -1px; max-width: 24ch; }
.article-hero .article-sub { font-size: 17px; color: var(--muted); margin-top: 16px; max-width: 60ch; }
.article-body { max-width: 1200px; margin: 0 auto; padding: 56px 24px 80px; }
.article-body h2 { font-weight: 900; font-size: 26px; letter-spacing: -0.4px; margin: 48px 0 16px; }
.article-body h3 { font-weight: 900; font-size: 20px; letter-spacing: -0.2px; margin: 36px 0 12px; }
.article-body p { color: var(--muted); margin-bottom: 20px; line-height: 1.75; max-width: 70ch; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; color: var(--muted); line-height: 1.75; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--accent); border-bottom: 1px solid rgba(38,87,193,0.3); }
.article-body a:hover { border-color: var(--accent); }
.article-body img { border-radius: var(--radius-card); margin: 32px 0; }
.article-faq { border-top: 1px solid var(--hairline); margin-top: 48px; padding-top: 32px; }
.article-faq h2 { margin-top: 0; }
.article-faq details { border-bottom: 1px solid var(--hairline); padding: 18px 0; }
.article-faq summary { font-weight: 700; font-size: 16px; cursor: pointer; color: var(--ink); }
.article-faq details p { margin: 12px 0 0; }
.article-author { display: flex; align-items: center; gap: 16px; border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: 20px 24px; margin-top: 48px; }
.article-author .aa-name { font-weight: 900; font-size: 15px; }
.article-author .aa-role { font-size: 13px; color: var(--muted); }

/* ============ SIMPLE PAGE (privacy, thank-you) ============ */
.simple-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.simple-body h2 { font-weight: 900; font-size: 22px; letter-spacing: -0.3px; margin: 40px 0 14px; }
.simple-body h2:first-child { margin-top: 0; }
.simple-body p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.simple-body a { color: var(--accent); }
.thankyou-box { border: 1px solid var(--hairline); border-radius: 16px; padding: 48px; text-align: center; background: var(--paper-alt); }
.thankyou-box h2 { margin: 0 0 12px; }
.thankyou-box p { margin: 0 auto 24px; max-width: 44ch; }

/* ============ 404 ============ */
.notfound { padding: 120px 0; text-align: center; }
.notfound .nf-code { font-weight: 900; font-size: 96px; letter-spacing: -4px; color: var(--accent); line-height: 1; }
.notfound h1 { font-weight: 900; font-size: 28px; margin: 16px 0 12px; }
.notfound p { color: var(--muted); max-width: 40ch; margin: 0 auto 28px; }

/* ============ REVEAL (motion, respects reduced-motion) ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .case-item .case-img, .team-card .team-img, .blog-card .blog-img { transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 64px 0 80px; }
  .hero-visual { max-width: 560px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-intro { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .service-row:nth-child(odd) { padding-right: 0; }
  .service-row:nth-child(even) { padding-left: 0; border-right: 0; }
  .service-cta { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cs-layout { grid-template-columns: 1fr; gap: 48px; }
  .cs-side { position: static; }
  .cs-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--paper); padding: 24px; gap: 18px;
    box-shadow: 0 20px 40px rgba(26,35,50,0.10);
    border-bottom: 1px solid var(--hairline);
  }
  .section { padding: 64px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .stat { padding: 0 16px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .cases-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-row { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .award-row { grid-template-columns: 1fr auto; }
  .award-category { grid-column: 1 / -1; }
  .hero-note { left: 8px; bottom: -16px; }
  .contact-form-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }
  .article-body { padding: 40px 20px 64px; }
  .simple-body { padding: 40px 20px 64px; }
}
