:root {
  --page: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --line: rgba(0, 0, 0, 0.1);
  --soft-blue: #edf5ff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid rgba(0, 113, 227, 0.7); outline-offset: 4px; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow-shell { width: min(980px, calc(100% - 40px)); }

/* Reusable project media: preserve the complete image and let its ratio set the height. */
.natural-media { display: block; overflow: hidden; align-self: start; }
.natural-media img { display: block; width: 100%; height: auto; object-fit: contain; }
.media-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--page);
}
.media-card figcaption { padding: 16px 18px; color: var(--muted); font-size: 12px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header,
.case-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(250, 250, 252, 0.88);
  backdrop-filter: saturate(180%) blur(18px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.nav-links { margin-left: auto; display: flex; gap: 30px; }
.nav-links a,
.back-link { color: #424245; }
.nav-links a:hover,
.back-link:hover { color: var(--blue); }
.nav-contact {
  margin-left: 4px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
}
.case-header .back-link { margin-left: auto; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero {
  min-height: calc(100vh - 58px);
  padding-block: 88px 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}
.hero h1,
.section-heading h2,
.credentials-intro h2,
.about-grid h2,
.contact-band h2,
.case-hero h1,
.case-story h2,
.outcome-grid h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.hero h1 {
  font-size: clamp(58px, 7.2vw, 92px);
  line-height: 0.98;
}
.hero h1 span { color: #86868b; }
.hero-intro {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: var(--blue-hover); }
.button-secondary { border-color: var(--line); background: white; }
.quick-facts {
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quick-facts dt { color: var(--muted); font-size: 11px; }
.quick-facts dd { margin: 6px 0 0; font-size: 13px; font-weight: 650; line-height: 1.35; }
.hero-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dedede;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 62% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
}
.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 22px 20px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 12px;
}
.hero-photo figcaption span { opacity: 0.7; }

.section { padding-block: 112px; }
.section-white { background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2,
.credentials-intro h2,
.about-grid h2,
.contact-band h2 {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.04;
}
.section-heading > p:last-child,
.credentials-intro > p,
.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}
.section-heading > p:last-child { max-width: 650px; margin: 24px 0 0; }
.compact-heading { max-width: 860px; }

.project-list { display: grid; gap: 28px; }
.featured-project {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 18px;
}
.featured-project .project-image { border: 1px solid var(--line); border-radius: 30px; }
.project-image { background: #dfe2e8; }
.project-image-cloud { background: #111827; }
.project-image-retail { background: #edf4f6; }
.project-copy { padding: clamp(34px, 5vw, 64px); border: 1px solid var(--line); border-radius: 30px; align-self: start; background: var(--page); }
.project-copy h3 { margin: 0; font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -0.055em; }
.project-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.project-results { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.project-results div { padding: 20px 8px 20px 0; }
.project-results strong,
.project-results span { display: block; }
.project-results strong { font-size: 24px; letter-spacing: -0.04em; }
.project-results span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.tag-list { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.tag-list li { padding: 8px 11px; border-radius: 999px; background: #e8e8ed; font-size: 12px; font-weight: 650; }
.text-link { display: inline-block; margin-top: 28px; color: var(--blue); font-weight: 650; }
.project-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; }
.project-links .text-link { margin-top: 0; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.capability-grid article {
  padding: 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: white;
}
.capability-grid article > span { margin: 3px 6px 0; color: var(--muted); font-size: 12px; }
.capability-illustration { width: 100%; height: auto; margin: 18px 0 24px; border-radius: 16px; background: #101012; }
.capability-grid h3 { margin: 0 6px 14px; font-size: 29px; letter-spacing: -0.04em; }
.capability-grid p { margin: 0 6px 6px; color: var(--muted); font-size: 15px; line-height: 1.5; }

.timeline { border-top: 1px solid var(--line); }
.timeline article { padding: 40px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.timeline-meta strong,
.timeline-meta span { display: block; }
.timeline-meta span { margin-top: 8px; color: var(--muted); font-size: 13px; }
.timeline h3 { margin: 0 0 14px; font-size: 31px; letter-spacing: -0.04em; }
.timeline p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.58; }

.credentials-section { background: #ededf0; }
.credentials-section .shell { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 76px; }
.credentials-intro > p { margin: 24px 0 0; }
.credential-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.credential-grid > a {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.credential-grid > a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.credential-logo { width: 100px; height: 100px; display: grid; place-items: center; }
.badge-logo img { width: 100%; height: 100%; object-fit: contain; }
.atlassian-logo img,
.claude-logo img { width: 100%; height: 100%; object-fit: contain; }
.credential-grid small,
.credential-grid strong,
.credential-grid span { display: block; }
.credential-grid small { color: var(--muted); font-size: 11px; }
.credential-grid strong { margin-top: 7px; font-size: 17px; line-height: 1.3; }
.credential-grid span { margin-top: 12px; color: var(--blue); font-size: 12px; font-weight: 650; }

.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 90px; }
.about-copy p { margin: 0 0 22px; }
.about-copy p:last-child { margin-bottom: 0; }

.connect-section { background: var(--page); }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.social-grid > a,
.social-card {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.social-grid > a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 16px;
}
.social-grid > a:hover,
.social-card:hover { border-color: rgba(0, 113, 227, 0.35); }
.social-grid img { width: 38px; height: 38px; object-fit: contain; }
.social-grid strong,
.social-grid span { display: block; }
.social-grid strong { font-size: 20px; }
.social-grid span { margin-top: 5px; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.social-grid b { color: var(--blue); font-size: 18px; font-weight: 500; }
.email-social-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.email-card-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.copy-email-button {
  padding: 9px 12px;
  border: 1px solid rgba(0, 113, 227, 0.25);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.copy-email-button:hover { border-color: rgba(0, 113, 227, 0.45); background: #e3f0ff; }
.copy-email-button.is-copied { border-color: rgba(27, 127, 55, 0.24); background: #eaf7ed; color: #1b7f37; }

.contact-band { padding-block: 130px; text-align: center; background: white; }
.contact-band h2 { max-width: 900px; margin-inline: auto; }
.contact-band .button { margin-top: 34px; }
footer { min-height: 82px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

/* Case study */
.case-page { background: white; }
.case-hero { padding-block: 120px 70px; text-align: center; }
.case-hero h1 { font-size: clamp(66px, 10vw, 124px); line-height: 0.88; }
.aws-case-hero h1 { font-size: clamp(58px, 8.4vw, 104px); line-height: 0.92; }
.retail-case-hero h1 { font-size: clamp(54px, 8vw, 98px); line-height: 0.92; }
.case-hero > p:not(.eyebrow) { max-width: 740px; margin: 30px auto 0; color: var(--muted); font-size: clamp(19px, 2.4vw, 27px); line-height: 1.45; }
.case-report-link { margin-top: 24px; }
.case-cover { margin-bottom: 26px; border-radius: 28px; background: #dfe2e8; }
.architecture-cover { background: #111827; }
.retail-cover { background: #edf4f6; }
.case-cover figcaption { padding: 15px 20px; color: var(--muted); font-size: 12px; }
.metrics { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.metrics div { padding: 34px 18px; border-right: 1px solid var(--line); }
.metrics div:last-child { border-right: 0; }
.metrics strong,
.metrics span { display: block; }
.metrics strong { font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.05em; }
.metrics span { margin-top: 7px; color: var(--muted); font-size: 12px; }
.case-content { padding-block: 110px; display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 90px; }
.case-sidebar dl { margin: 30px 0 0; }
.case-sidebar dl div { padding: 16px 0; border-top: 1px solid var(--line); }
.case-sidebar dt { color: var(--muted); font-size: 11px; }
.case-sidebar dd { margin: 6px 0 0; font-size: 14px; font-weight: 650; }
.case-story h2 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; }
.case-story h3 { margin: 50px 0 13px; font-size: 24px; }
.case-story p { margin: 24px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.scope-note { margin-top: 36px; padding: 24px; border: 1px solid #f2d29a; border-radius: 20px; background: #fff8e8; }
.scope-note strong { font-size: 16px; }
.scope-note p { margin-top: 8px; color: #5f5443; font-size: 15px; line-height: 1.55; }
.process-section { padding-block: 100px; background: var(--page); }
.process-grid { margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; list-style: none; }
.process-grid li { min-width: 0; padding: 25px; border: 1px solid var(--line); border-radius: 22px; display: flex; flex-direction: column; background: white; }
.process-grid li > span:first-child { color: var(--muted); font-size: 11px; }
.process-grid strong { font-size: 22px; letter-spacing: -0.03em; }
.process-grid p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.ai-process-grid { --visual-accent: #0068d7; --visual-soft: #eaf3ff; }
.aws-process-grid { --visual-accent: #9a4f00; --visual-soft: #fff3e5; }
.retail-process-grid { --visual-accent: #087f86; --visual-soft: #e7f5f5; }
.process-visual {
  min-height: 108px;
  margin: 22px 0 27px;
  padding: 17px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  background: var(--visual-soft);
  color: var(--visual-accent);
}
.process-visual span { color: inherit; }
.visual-node,
.visual-stack b,
.visual-database {
  padding: 10px 11px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.visual-node.visual-large { font-size: 18px; letter-spacing: -0.03em; }
.visual-connector { font-size: 15px; font-weight: 800; }
.visual-stack { display: grid; gap: 3px; }
.visual-stack b { padding: 5px 8px; font-size: 7px; text-align: center; }
.visual-compare { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--visual-accent); color: white !important; font-size: 8px; font-weight: 800; }
.visual-check { width: 31px; height: 31px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: 16px; font-weight: 800; }
.visual-caption { font-size: 8px; font-weight: 800; line-height: 1.25; }
.visual-device { position: relative; padding-right: 22px; }
.visual-device i { position: absolute; right: 8px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: #34c759; transform: translateY(-50%); }
.visual-network { position: relative; }
.visual-network i { position: absolute; width: 7px; height: 7px; border: 2px solid currentColor; border-radius: 50%; }
.visual-network i:nth-of-type(1) { left: 24px; bottom: 18px; }
.visual-network i:nth-of-type(2) { right: 24px; top: 18px; }
.visual-code { font-family: "SFMono-Regular", Consolas, monospace; font-size: 28px; font-weight: 750; letter-spacing: -0.08em; }
.visual-database { position: relative; padding-block: 14px; border-radius: 50% / 18%; }
.visual-read { padding: 5px 7px; border-radius: 999px; background: var(--visual-accent); color: white !important; font-size: 7px; font-weight: 800; }
.visual-filter { position: relative; padding: 7px 10px 14px; font-size: 7px; font-weight: 800; }
.visual-filter::before { content: ""; position: absolute; inset: 0; border: 2px solid currentColor; clip-path: polygon(0 0, 100% 0, 62% 60%, 62% 100%, 38% 100%, 38% 60%); }
.visual-bars { height: 50px; display: flex; align-items: end; gap: 4px; }
.visual-bars i { width: 8px; border-radius: 3px 3px 1px 1px; background: currentColor; }
.visual-bars i:nth-child(1) { height: 17px; }
.visual-bars i:nth-child(2) { height: 32px; }
.visual-bars i:nth-child(3) { height: 24px; }
.visual-bars i:nth-child(4) { height: 44px; }
.gallery-section { padding-block: 110px; }
.project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; gap: 18px; }
.retail-gallery .wide-media-card { grid-column: 1 / -1; }
.retail-gallery img { background: white; }
.evidence-section { padding-block: 110px; background: white; }
.evidence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.evidence-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--page); }
.evidence-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.evidence-card-top span { color: var(--muted); font-size: 12px; font-weight: 700; }
.evidence-card-top b { padding: 7px 10px; border-radius: 999px; background: #e7f7ed; color: #15763d; font-size: 11px; font-weight: 700; }
.evidence-card h3 { margin: 28px 0 0; font-size: clamp(27px, 3vw, 36px); line-height: 1.05; letter-spacing: -0.04em; }
.evidence-card > p { margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.retail-insight-grid { grid-template-columns: repeat(3, 1fr); }
.insight-stat { margin-top: 26px; color: #087f86; font-size: clamp(34px, 4vw, 52px); font-weight: 750; letter-spacing: -0.05em; }
.evidence-console { margin-top: 26px; padding: 22px; border-radius: 18px; background: #111827; color: white; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.evidence-console span,
.evidence-console strong,
.evidence-console em { display: block; }
.evidence-console span { color: #93c5fd; font-size: 12px; }
.evidence-console strong { margin-top: 13px; font-size: 16px; line-height: 1.45; }
.evidence-console em { margin-top: 9px; color: #86efac; font-size: 12px; font-style: normal; line-height: 1.45; }
.outcome-section { padding-block: 110px; background: #101012; color: white; }
.outcome-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: start; }
.outcome-grid h2 { max-width: 760px; font-size: clamp(42px, 5.5vw, 70px); line-height: 1.05; }
.outcome-section .eyebrow { color: rgba(255, 255, 255, 0.54); }
.learning-card { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 22px; background: rgba(255, 255, 255, 0.06); }
.learning-card > p:last-child { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 1.58; }
.technology-block { padding-block: 100px; text-align: center; }
.technology-block .tag-list { justify-content: center; }
.technology-block .button { margin-top: 34px; }
.case-next { padding-block: 90px; text-align: center; background: var(--page); }
.case-next p { margin: 0 0 12px; color: var(--muted); }
.case-next a { color: var(--blue); font-size: clamp(32px, 5vw, 54px); font-weight: 700; letter-spacing: -0.05em; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr 0.72fr; gap: 45px; }
  .quick-facts { grid-template-columns: 1fr; gap: 12px; }
  .quick-facts dd { margin-top: 3px; }
  .featured-project { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-section .shell { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid { grid-template-columns: 1fr; }
  .retail-insight-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell,
  .narrow-shell { width: min(100% - 28px, 1160px); }
  .site-header,
  .case-header { height: 52px; }
  .nav { gap: 14px; }
  .nav-links { display: none; }
  .nav-contact { margin-left: auto; }
  .hero { min-height: 0; padding-block: 72px 50px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(51px, 16vw, 72px); }
  .hero-photo { order: -1; width: min(82vw, 390px); margin-inline: auto; }
  .quick-facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .section { padding-block: 84px; }
  .section-heading h2,
  .credentials-intro h2,
  .about-grid h2,
  .contact-band h2 { font-size: 42px; }
  .featured-project .project-image,
  .project-copy { border-radius: 22px; }
  .project-copy { padding: 30px 22px; }
  .project-results { grid-template-columns: 1fr; }
  .project-results div { border-bottom: 1px solid var(--line); }
  .project-results div:last-child { border-bottom: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .timeline article,
  .about-grid,
  .case-content { grid-template-columns: 1fr; gap: 28px; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-grid > a { min-height: 250px; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-band { padding-block: 100px; }
  footer { min-height: 100px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; }
  .case-hero { padding-block: 90px 50px; }
  .case-hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .aws-case-hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .retail-case-hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .case-cover { border-radius: 18px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics div:nth-child(2) { border-right: 0; }
  .metrics div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .case-content { padding-block: 84px; }
  .process-grid,
  .project-gallery { grid-template-columns: 1fr; }
  .retail-gallery .wide-media-card { grid-column: auto; }
  .process-visual { min-height: 96px; }
  .evidence-card { padding: 22px; border-radius: 20px; }
}

@media (max-width: 420px) {
  .email-social-card { grid-template-columns: 1fr; }
  .copy-email-button { justify-self: start; margin-left: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
