:root {
  color-scheme: light;
  --ink: #111316;
  --muted: #626a73;
  --paper: #f5f4f1;
  --white: #ffffff;
  --soft: #e7e3db;
  --steel: #273039;
  --graphite: #171b20;
  --red: #d91f26;
  --red-dark: #a80f15;
  --lime: #b3d23f;
  --line: rgba(17, 19, 22, 0.12);
  --shadow: 0 24px 70px rgba(17, 19, 22, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(17, 19, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f7f7f4, #cfd2d0);
  color: #111316;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.site-nav a.is-current {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-small {
  min-height: 40px;
  padding-inline: 14px;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 72px 0 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.82) 32%, rgba(8, 9, 11, 0.38) 64%, rgba(8, 9, 11, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.66)),
    url("hero-workshop.png") center / cover no-repeat;
}

.hero-content,
.hero-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  max-width: 720px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ff5a5f;
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  min-height: 92px;
  padding: 18px;
  background: rgba(12, 14, 17, 0.72);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.5rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.section-pad {
  padding: 90px 0;
}

.section-tight {
  padding: 52px 0 78px;
}

.section-heading {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.section-heading.wide {
  width: min(var(--max), calc(100% - 40px));
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:last-child {
  max-width: 800px;
  font-size: 1.05rem;
}

.quick-entry {
  background: var(--white);
}

.audience-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.segment {
  min-height: 46px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.segment.is-active {
  color: var(--white);
  background: var(--ink);
}

.audience-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 190px;
  margin-top: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(17, 19, 22, 0.08);
}

.audience-panel h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.audience-panel p {
  max-width: 590px;
  margin-bottom: 0;
}

.services {
  background: #ededeb;
}

.service-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.product-card,
.shop-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 244px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.service-card:focus-visible,
.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(217, 31, 38, 0.38);
  box-shadow: 0 18px 50px rgba(17, 19, 22, 0.1);
  outline: 0;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card h3,
.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p,
.product-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.fileservice-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: center;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 22, 0.98), rgba(39, 48, 57, 0.96)),
    var(--graphite);
}

.fileservice-band p {
  color: rgba(255, 255, 255, 0.72);
}

.fileservice-band h2 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.03;
}

.band-content > p {
  max-width: 650px;
  font-size: 1.04rem;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 18px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.process-list span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime);
  font-weight: 900;
}

.process-list strong {
  align-self: end;
  font-size: 1.08rem;
}

.process-list p {
  margin-bottom: 0;
}

.shop {
  background: var(--paper);
}

.shop-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.4fr);
  gap: 16px;
}

.shop-feature {
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 19, 22, 0.12), rgba(17, 19, 22, 0.78)),
    radial-gradient(circle at 78% 18%, rgba(179, 210, 63, 0.28), transparent 31%),
    linear-gradient(135deg, #d9d7d1, #f8f7f4 45%, #858b91);
  color: var(--white);
  overflow: hidden;
}

.shop-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.shop-feature h3 {
  max-width: 340px;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
}

.availability {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-line {
  display: grid;
  gap: 4px;
  margin: 22px 0;
}

.price-line strong {
  font-size: 1.6rem;
}

.price-line span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 227px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.product-card span {
  align-self: flex-start;
  margin-bottom: 26px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--steel);
  font-weight: 900;
  font-size: 0.77rem;
}

.product-card strong {
  margin-top: auto;
  color: var(--red);
  font-size: 1.2rem;
}

.shop-actions {
  width: min(var(--max), calc(100% - 40px));
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workflow {
  background: var(--white);
}

.timeline {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9f8f5;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin-bottom: 0;
}

.links {
  background: #e8e7e1;
}

.link-columns {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-group {
  min-height: 314px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.link-group h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.link-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 37px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.92rem;
}

.link-group a::after {
  content: "->";
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 32px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  outline: 0;
}

.page-hero {
  padding: 112px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(8, 9, 11, 0.72)),
    url("hero-workshop.png") center / cover no-repeat;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.split-content,
.cart-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.split-content > article,
.cart-box,
.legal-content {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.split-content h2,
.legal-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.info-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.info-panel p,
.info-panel li,
.info-panel a {
  color: rgba(255, 255, 255, 0.76);
}

.info-panel h3 {
  margin-bottom: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.feature-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9f8f5;
}

.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.catalog-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  min-height: 302px;
}

.catalog-card[hidden] {
  display: none !important;
}

.card-actions {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.old-price {
  margin-right: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: line-through;
}

.search-field {
  display: grid;
  gap: 8px;
  max-width: 440px;
  margin-top: 24px;
  font-weight: 800;
}

.search-field input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.public-contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.public-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 900;
}

.public-contact-form input,
.public-contact-form textarea,
.public-contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.public-contact-form textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin: 18px 0;
  padding: 16px;
  border-radius: var(--radius);
}

.form-message p,
.form-message ul {
  margin-bottom: 0;
}

.form-message.success {
  border: 1px solid rgba(179, 210, 63, 0.42);
  background: rgba(179, 210, 63, 0.16);
}

.form-message.error {
  border: 1px solid rgba(217, 31, 38, 0.34);
  background: rgba(217, 31, 38, 0.09);
}

.cart-table {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 36px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.qty-control button {
  height: 36px;
  border: 0;
  background: var(--paper);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.qty-control span {
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  font-size: 1.2rem;
}

.empty-cart {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cart-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.embed-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(17, 19, 22, 0.08);
}

.embed-shell iframe {
  display: block;
  width: 100%;
  max-width: 1200px;
  min-height: 720px;
  margin: 0 auto;
  border: 0;
}

.embed-fallback {
  max-width: 1200px;
  margin: 14px auto 0;
  font-size: 0.92rem;
}

.embed-fallback a {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    padding: 18px 20px 24px;
    background: rgba(17, 19, 22, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .service-grid,
  .link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fileservice-band,
  .shop-layout,
  .split-content,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding-top: 56px;
    background-position: 62% center;
  }

  .hero-content,
  .hero-panel,
  .section-heading,
  .section-heading.wide,
  .audience-shell,
  .service-grid,
  .shop-layout,
  .shop-actions,
  .timeline,
  .link-columns {
    width: min(100% - 28px, var(--max));
  }

  .hero-content {
    margin-left: 14px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 3.35rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .band-actions,
  .shop-actions {
    display: grid;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .section-tight {
    padding: 44px 0 58px;
  }

  .section-heading h2 {
    font-size: 2.15rem;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    display: grid;
    padding: 22px;
  }

  .service-grid,
  .product-grid,
  .link-columns,
  .catalog-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 82px 0 54px;
  }

  .page-hero-inner,
  .split-content,
  .cart-layout,
  .catalog-grid,
  .legal-content,
  .embed-shell {
    width: min(100% - 28px, var(--max));
  }

  .split-content > article,
  .cart-box,
  .legal-content {
    padding: 22px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .embed-shell {
    padding: 8px;
  }

  .embed-shell iframe {
    min-height: 680px;
  }

  .fileservice-band {
    padding: 64px 14px;
  }

  .process-list div,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .process-list span,
  .timeline span {
    grid-row: auto;
  }

  .shop-feature {
    min-height: 380px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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