:root {
  --wine: #6b0d27;
  --wine-dark: #470718;
  --ink: #171719;
  --graphite: #4f5154;
  --green: #1f604f;
  --paper: #f6f7f7;
  --white: #ffffff;
  --line: #dfe1e2;
  --max: 1180px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 5vw, 4.75rem); max-width: 850px; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); margin-bottom: 22px; }
h3 { font-size: 1.34rem; margin-bottom: 12px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.eyebrow {
  margin-bottom: 15px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(23,23,25,.08);
  backdrop-filter: blur(12px);
  transition: box-shadow .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 12px 34px rgba(16,17,18,.08); }
.site-header.is-hero { background: transparent; border-color: transparent; backdrop-filter: none; box-shadow: none; }
.header-inner { width: min(1280px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: block; line-height: 0; }
.brand-mark { position: relative; display: block; width: 196px; aspect-ratio: 1000 / 229; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .35s ease; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo-light { opacity: 0; }
.brand-logo-dark { opacity: 1; }
.site-header.is-hero .brand-logo-light { opacity: 1; }
.site-header.is-hero .brand-logo-dark { opacity: 0; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 650; transition: color .25s ease, background .25s ease; }
.main-nav a:not(.nav-cta):hover { color: var(--wine); }
.main-nav .nav-cta { padding: 11px 17px; color: var(--white); background: var(--wine); border-radius: 4px; }
.nav-cta:hover { background: var(--wine-dark); }
.site-header.is-hero .main-nav a { color: white; }
.site-header.is-hero .main-nav a:not(.nav-cta):hover { color: #f3c6d2; }
.site-header.is-hero .main-nav .nav-cta { color: var(--wine); background: white; }
.site-header.is-hero .main-nav .nav-cta:hover { color: var(--wine-dark); background: #f5f5f5; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.site-header.is-hero .menu-toggle { color: white; }
.menu-toggle svg { width: 25px; height: 25px; }
.menu-fallback { font-size: 25px; line-height: 1; }
.menu-toggle:has(svg) .menu-fallback { display: none; }

.hero-story {
  position: relative;
  height: 195svh;
  background: white;
}
.hero-sticky {
  --visual-width: 100vw;
  --visual-height: 100svh;
  --visual-top: 0px;
  --visual-radius: 0px;
  --copy-top: 50svh;
  --hero-title-size: clamp(3.4rem, 6.8vw, 6.9rem);
  --shade-opacity: .5;
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #202123;
}
.hero-media {
  position: absolute;
  top: var(--visual-top);
  left: 50%;
  z-index: -2;
  width: var(--visual-width);
  height: var(--visual-height);
  overflow: hidden;
  border-radius: var(--visual-radius);
  box-shadow: var(--visual-shadow, none);
  transform: translateX(-50%);
  will-change: width, height, top, border-radius;
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(4,5,6,.7); opacity: var(--shade-opacity); transition: opacity .12s linear; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); }
.hero-media picture, .service-visual picture, .training-image picture { display: block; width: 100%; height: 100%; }
.hero-shade { display: none; }
.hero-content {
  position: absolute;
  top: var(--copy-top);
  left: 50%;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  padding: 0;
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
  will-change: top, color;
}
.hero-content h1 { max-width: 1180px; margin: 0 auto 24px; font-size: var(--hero-title-size); }
.hero-sticky .eyebrow { color: #f0bbc9; transition: color .3s ease; }
.hero-copy { max-width: 760px; margin: 0 auto 30px; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.45vw, 1.25rem); transition: color .3s ease; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-sticky:not(.is-light) .button-primary { color: var(--wine); background: white; }
.hero-sticky:not(.is-light) .button-primary:hover { color: var(--wine-dark); background: #f5f5f5; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0,0,0,.14); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--wine); color: white; }
.button-primary:hover { background: #84143a; }
.button-ghost { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.18); }
.button-ghost:hover { background: white; color: var(--ink); }
.button-secondary { background: var(--green); color: white; }
.button svg { width: 18px; height: 18px; }
.hero-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 24px; max-height: 60px; margin: 32px 0 0; padding: 0; overflow: hidden; list-style: none; color: rgba(255,255,255,.86); font-size: .86rem; font-weight: 700; text-transform: uppercase; transition: opacity .25s ease, transform .25s ease, max-height .25s ease, margin .25s ease; }
.hero-points li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 9px 2px 0; background: #f0bbc9; }
.hero-sticky.is-light { color: var(--ink); background: white; }
.hero-sticky.is-light .hero-content { color: var(--ink); }
.hero-sticky.is-light .eyebrow { color: var(--wine); }
.hero-sticky.is-light .hero-copy { color: var(--graphite); }
.hero-sticky.is-light .button-ghost { color: var(--ink); border-color: #a9aaac; background: white; }
.hero-sticky.is-light .button-ghost:hover { color: white; background: var(--ink); }
.hero-sticky.is-light .hero-points { max-height: 0; margin-top: 0; opacity: 0; transform: translateY(-8px); pointer-events: none; }

.proof-bar { border-bottom: 1px solid var(--line); background: white; }
.proof-grid { min-height: 112px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.proof-grid p { margin: 0; padding: 0 30px; border-left: 1px solid var(--line); }
.proof-grid p:first-child { padding-left: 0; border-left: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: 1rem; }
.proof-grid span { color: var(--graphite); font-size: .88rem; }

.section-heading { max-width: 790px; margin-bottom: 52px; }
.section-heading > p:last-child { color: var(--graphite); font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 370px; padding: 38px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); outline: none; transition: background .35s ease, box-shadow .35s ease; }
.service-card:nth-child(2), .service-card:nth-child(3) { background: var(--paper); }
.service-card:hover { background: white; box-shadow: inset 0 -4px 0 var(--wine); }
.service-card:focus-visible { z-index: 4; box-shadow: inset 0 0 0 3px var(--wine); }
.service-card.is-preview-source { background: white; box-shadow: inset 0 -4px 0 var(--wine); }
.service-number { display: block; margin-bottom: 52px; color: var(--wine); font-weight: 850; transition: transform .35s ease; }
.service-card:hover .service-number { transform: translateX(8px); }
.service-card.is-preview-source .service-number { transform: translateX(8px); }
.service-card > p { color: var(--graphite); }
.service-card ul { padding: 0; margin: 24px 0 0; list-style: none; }
.service-card li { padding: 7px 0; border-top: 1px solid var(--line); font-size: .91rem; }
.service-visual { position: absolute; inset: 0; z-index: 3; overflow: hidden; background: var(--ink); opacity: 0; pointer-events: none; transform: scale(1.035); transition: opacity .4s ease, transform .65s cubic-bezier(.2,.75,.25,1); }
.service-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.service-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-card.showcase-active .service-visual { opacity: 1; transform: scale(1); }

.system-section { color: white; background: var(--ink); }
.system-section .eyebrow { color: #f0bbc9; }
.system-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.system-copy { position: sticky; top: calc(var(--header) + 40px); }
.lead { color: #c8c9cb; font-size: 1.08rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: white; text-decoration: none; font-weight: 750; border-bottom: 1px solid #777; padding-bottom: 6px; }
.text-link svg { width: 18px; height: 18px; }
.system-steps { list-style: none; margin: 0; padding: 0; }
.system-steps li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 32px 0; border-top: 1px solid #414145; }
.system-steps li:last-child { border-bottom: 1px solid #414145; }
.system-steps > li > span { color: #f0bbc9; font-size: .82rem; font-weight: 800; }
.system-steps h3 { margin-bottom: 9px; font-size: 1.6rem; }
.system-steps p { margin: 0; color: #b8b9bb; }

.training-section { display: grid; grid-template-columns: 1.15fr .85fr; padding: 0; background: var(--paper); }
.training-image { min-height: 650px; display: flex; align-items: center; overflow: hidden; background: var(--paper); }
.training-image img { width: 100%; height: 100%; object-fit: contain; transform: none; }
.training-copy { align-self: center; max-width: 590px; padding: 80px clamp(34px, 6vw, 90px); }
.training-copy > p:not(.eyebrow) { color: var(--graphite); }
.check-list { margin: 28px 0 32px; }
.check-list p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--ink) !important; font-weight: 650; }
.check-list svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--green); margin-top: 4px; }

.experience-section { padding: 104px 0 80px; color: white; background: #17191b; overflow: hidden; }
.case-showcase { max-width: 1320px; }
.case-stage { min-height: 570px; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(54px, 8vw, 118px); align-items: center; transition: opacity .18s ease, transform .18s ease; }
.case-stage.is-changing { opacity: .2; transform: translateY(10px); }
.case-copy { max-width: 540px; padding-left: clamp(0px, 2vw, 28px); }
.case-type { margin: 0 0 20px; color: #f0bbc9; font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.case-copy h2 { margin-bottom: 14px; color: white; font-size: clamp(3.25rem, 5.2vw, 5rem); }
.case-meta { margin: 0 0 25px; color: #bfc1c3; font-size: .88rem; font-weight: 700; }
.case-description { min-height: 150px; margin: 0 0 34px; color: #f0f0f0; font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.58; }
.case-button { color: var(--ink); background: white; }
.case-button:hover { color: white; background: var(--wine); }
.case-media { position: relative; width: 100%; min-height: 520px; overflow: hidden; border: 1px solid #3f4245; border-radius: 8px; background: #232629; }
.case-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); pointer-events: none; }
.case-media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity .35s ease, transform .6s cubic-bezier(.2,.75,.25,1); }
.case-media.has-image img { opacity: 1; transform: scale(1); }
.case-image-placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; text-align: center; color: #777b7f; transition: opacity .25s ease; }
.case-image-placeholder span { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.case-image-placeholder strong { color: #aeb1b4; font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 650; letter-spacing: 0; text-transform: lowercase; }
.case-media.has-image .case-image-placeholder { opacity: 0; }
.case-tabs { display: flex; gap: 10px; margin: 34px 0 0 auto; padding: 3px 2px 10px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: #5b5e61 transparent; }
.case-tab { flex: 1 0 max-content; min-height: 50px; padding: 0 23px; color: white; background: transparent; border: 1px solid #8d9093; border-radius: 26px; font: inherit; font-size: .88rem; font-weight: 750; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.case-tab:hover { border-color: white; transform: translateY(-2px); }
.case-tab.is-active { color: var(--ink); background: white; border-color: white; }
.case-tab:focus-visible { outline: 3px solid #f0bbc9; outline-offset: 3px; }

.web-packages { background: #e9eeec; }
.package-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.package-intro p:last-child { color: var(--graphite); }
.package-list { border-top: 1px solid #bfc7c4; }
.package-list article { display: grid; grid-template-columns: 110px 1fr 1.1fr; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 1px solid #bfc7c4; }
.package-list span { color: var(--green); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.package-list h3, .package-list p { margin: 0; }
.package-list p { color: var(--graphite); font-size: .9rem; }

.faq-section { background: white; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 auto; width: 20px; height: 20px; transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 690px; padding: 0 48px 24px 0; color: var(--graphite); }

.contact-section { padding: 104px 0; color: white; background: var(--wine-dark); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-section .eyebrow { color: #f0bbc9; }
.contact-copy > p:not(.eyebrow) { color: #dccbd0; }
.contact-form { padding: 36px; color: var(--ink); background: white; border-radius: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: .82rem; font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fafafa; border: 1px solid #cfd1d2; border-radius: 3px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(107,13,39,.1); }
.contact-form textarea { resize: vertical; }
.form-note { margin: 14px 0 0; color: #6a6b6e; font-size: .77rem; }

.site-footer { padding: 18px 0 9px; background: white; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr .6fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.footer-brand img { width: 220px; height: auto; object-fit: contain; }
.footer-brand > p { display: none; }
.footer-label { margin: 0 0 5px !important; color: var(--wine) !important; font-size: .68rem !important; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.footer-contact { display: grid; gap: 2px; font-size: .78rem; }
.footer-contact a, .footer-contact > p:not(.footer-label) { display: flex; align-items: flex-start; gap: 12px; margin: 0; color: var(--ink); text-decoration: none; }
.footer-contact a:hover { color: var(--wine); }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.footer-nav { display: grid; gap: 1px; }
.footer-nav a { width: fit-content; color: var(--graphite); text-decoration: none; font-size: .76rem; }
.footer-nav a:hover { color: var(--wine); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 10px; padding-top: 7px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: var(--graphite); font-size: .78rem; }

.reveal { opacity: 1; transform: none; }
.will-reveal { opacity: 0; transform: translateY(38px) scale(.985); transition: opacity .8s cubic-bezier(.2,.75,.25,1), transform .8s cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.will-reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-rise {
  from { transform: translateY(28px); }
  to { transform: translateY(0); }
}
.hero-content > * { animation: hero-rise .75s cubic-bezier(.2,.75,.25,1) both; }
.hero-content > :nth-child(1) { animation-delay: .08s; }
.hero-content > :nth-child(2) { animation-delay: .16s; }
.hero-content > :nth-child(3) { animation-delay: .24s; }
.hero-content > :nth-child(4) { animation-delay: .32s; }
.hero-content > :nth-child(5) { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .case-stage, .case-media img, .case-tab, .service-card, .service-number, .will-reveal { transition: none; }
  .hero-content > * { animation: none; }
  .will-reveal { opacity: 1; transform: none; }
  .hero-media img { transform: scale(1.035); }
}

@media (max-width: 940px) {
  :root { --header: 70px; }
  .section { padding: 78px 0; }
  .brand-mark { width: 176px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: fixed; inset: var(--header) 0 auto 0; display: grid; gap: 0; padding: 10px 20px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.1); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .22s ease; }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border: 0; }
  .site-header.is-hero .main-nav.is-open a { color: var(--ink); }
  .site-header.is-hero .main-nav.is-open .nav-cta { color: white; background: var(--wine); }
  .site-header.is-hero.menu-open { background: white; border-color: var(--line); }
  .site-header.is-hero.menu-open .brand-logo-light { opacity: 0; }
  .site-header.is-hero.menu-open .brand-logo-dark { opacity: 1; }
  .site-header.is-hero.menu-open .menu-toggle { color: var(--ink); }
  .hero-story { height: 185svh; }
  .hero-media img { object-position: 62% center; }
  .hero-content { width: min(calc(100% - 34px), 820px); }
  .system-layout, .package-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .system-copy { position: static; }
  .training-section { grid-template-columns: 1fr; }
  .training-image { min-height: 430px; }
  .training-copy { max-width: none; padding: 68px 40px; }
  .experience-section { padding: 82px 0 66px; }
  .case-stage { min-height: auto; grid-template-columns: 1fr; gap: 46px; }
  .case-copy { max-width: 680px; padding-left: 0; }
  .case-description { min-height: auto; }
  .case-media { min-height: 460px; }
  .case-tabs { margin-top: 28px; }
  .package-list article { grid-template-columns: 90px 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .header-inner { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 66px 0; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  h2 { font-size: 2.15rem; }
  .brand-mark { width: 158px; }
  .hero-story { height: 175svh; }
  .hero-media img { object-position: 67% center; }
  .hero-content { width: min(calc(100% - 30px), 540px); }
  .hero-copy { font-size: .95rem; max-width: 95%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .proof-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .proof-grid p, .proof-grid p:first-child { padding: 14px 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof-grid p:first-child { border-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 30px 25px; }
  .service-card:nth-child(2), .service-card:nth-child(3) { background: white; }
  .service-card:nth-child(even) { background: var(--paper); }
  .service-number { margin-bottom: 32px; }
  .system-steps li { grid-template-columns: 42px 1fr; }
  .training-image { min-height: 300px; }
  .training-copy { padding: 58px 24px; }
  .experience-section { padding: 64px 0 48px; }
  .case-copy h2 { font-size: 2.9rem; }
  .case-description { font-size: .96rem; }
  .case-media { min-height: 360px; }
  .case-tabs { width: calc(100% + 15px); margin-right: -15px; }
  .case-tab { min-height: 46px; padding-inline: 19px; }
  .package-list article { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }
  .site-footer { padding-top: 18px; }
  .footer-main { grid-template-columns: 1.25fr .75fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { width: 210px; }
  .footer-bottom { display: grid; gap: 3px; margin-top: 12px; }
}
