:root {
  --page: #f3f0e7;
  --surface: #fffdf7;
  --surface-soft: #e9e4d8;
  --ink: #171819;
  --muted: #66635e;
  --line: #d8d1c3;
  --line-strong: #aaa294;
  --black: #171819;
  --black-soft: #252529;
  --white: #fffdf7;
  --coral: #ef5a4f;
  --mustard: #e8aa31;
  --green: #1eaa69;
  --brand-stripe: linear-gradient(90deg, var(--coral) 0 33.333%, var(--mustard) 33.333% 66.666%, var(--green) 66.666% 100%);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(28, 31, 29, 0.09);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Helvetica Neue", "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
main, .site-footer { position: relative; z-index: 1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--black);
  color: var(--white);
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 840px); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tight { padding: 54px 0; }
.surface { background: rgba(255, 253, 247, 0.97); }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head p { max-width: 650px; }
.section-head.compact { margin-bottom: 26px; }
.label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); letter-spacing: -0.03em; }
p { margin: 18px 0 0; text-wrap: pretty; }
li, summary, figcaption, .proof-main, .proof-item span, .pricing-row, .format span, .media-caption { text-wrap: pretty; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.55; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.kicker { font-size: 0.9rem; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 209, 195, 0.9);
  background: rgba(243, 240, 231, 0.99);
}
.nav-wrap { display: flex; min-height: 70px; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 48px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px 2px 2px 10px;
  background: linear-gradient(180deg, var(--coral) 0 33.333%, var(--mustard) 33.333% 66.666%, var(--green) 66.666% 100%);
  box-shadow: inset -3px 0 0 var(--ink);
}
.brand-mark::before, .brand-mark::after { display: none; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.03rem; font-weight: 700; letter-spacing: -0.055em; white-space: nowrap; }
.brand-copy strong b { font-size: 1.18rem; font-weight: 850; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: 0.61rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 0.9rem; font-weight: 650; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 3px; }
.nav-dropdown { position: relative; }
.nav-services { display: inline-flex; align-items: center; gap: 8px; }
.nav-services::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -17px; height: 17px; }
.nav-dropdown-menu a { display: block; padding: 11px 12px; border-radius: var(--radius-sm); line-height: 1.25; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: var(--surface-soft); text-decoration: none; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .nav-services::after, .nav-dropdown:focus-within .nav-services::after { transform: translateY(3px) rotate(225deg); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  background-image: var(--brand-stripe);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 4px;
  color: var(--white);
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover, .nav-cta:hover { background-color: #313136; }
.button:active, .nav-cta:active { transform: translateY(1px) scale(0.99); }
.button.secondary { background: transparent; background-image: none; color: var(--ink); }
.button.secondary:hover { background: var(--surface-soft); }
.button.light { border-color: var(--white); background: var(--white); background-image: none; color: var(--ink); }
.button.light:hover { background: #dfe1de; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: calc(100dvh - 70px); display: grid; align-items: center; padding: 30px 0 48px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); align-items: center; gap: clamp(34px, 5vw, 76px); }
.hero-copy { position: relative; z-index: 2; padding-block: 36px; }
.hero h1 { max-width: 680px; font-size: clamp(3.25rem, 4.35vw, 4.1rem); }
.hero h1 span { display: block; }
.hero .lead { max-width: 520px; }
.hero-visual { position: relative; min-width: 0; padding-top: 13px; }
.hero-visual::before { content: ""; position: absolute; top: 0; right: 34px; width: 180px; height: 13px; border-radius: 9px 9px 0 0; background: var(--brand-stripe); }
.hero-media {
  position: relative;
  height: min(70dvh, 720px);
  min-height: 580px;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 63%; }
.media-caption { display: flex; justify-content: space-between; gap: 24px; margin: 13px 4px 0; color: var(--muted); font-size: 0.78rem; }
.media-caption strong { color: var(--ink); font-weight: 680; }

.proof-band { padding: 0 0 38px; }
.proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.proof-grid::before { content: ""; position: absolute; left: 0; top: -4px; width: 190px; height: 7px; border-radius: 0 5px 5px 0; background: var(--brand-stripe); }
.proof-main { max-width: 430px; font-size: 1.06rem; font-weight: 700; letter-spacing: -0.02em; }
.proof-item { border-left: 1px solid var(--line); padding-left: 24px; }
.proof-item strong { display: block; font-size: 1.16rem; letter-spacing: -0.025em; }
.proof-item span { color: var(--muted); font-size: 0.82rem; }

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  grid-auto-flow: dense;
  gap: 16px;
}
.service-tile {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(23, 24, 25, 0.32);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  text-decoration: none;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, border-color 260ms ease;
}
.service-tile:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.service-tile h3 { max-width: 390px; }
.service-tile > h3 { padding-right: 92px; }
.service-tile p { max-width: 360px; color: var(--muted); }
.service-tile .tile-price { display: block; margin-top: 22px; font-size: 0.88rem; font-weight: 760; }
.tile-vhs { grid-column: 1 / 8; grid-row: 1 / 3; min-height: 500px; background: var(--black); color: var(--white); }
.tile-vhs p { color: #c4c8c5; }
.tile-vhs .tile-copy { position: relative; z-index: 2; max-width: 390px; }
.tile-vhs::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(23, 24, 24, 0.98) 0%, rgba(23, 24, 24, 0.9) 32%, rgba(23, 24, 24, 0) 70%); pointer-events: none; }
.tile-icon { position: absolute; top: 24px; right: 24px; width: 94px; height: auto; opacity: 0.26; transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 240ms ease; }
.service-tile:hover .tile-icon { transform: translateY(-3px) rotate(-3deg); opacity: 0.42; }
.tile-vhs .tile-icon { top: auto; right: 30px; bottom: 28px; z-index: 2; width: 190px; filter: invert(1); opacity: 0.28; }
.tile-vhs:hover .tile-icon { transform: translateY(-4px) rotate(-2deg); opacity: 0.42; }
.tile-minidv { grid-column: 8 / 13; grid-row: 1; background: #f4dfa9; }
.tile-hi8 { grid-column: 8 / 13; grid-row: 2; background: #d8eadc; }
.tile-film { grid-column: 1 / 6; grid-row: 3; background-color: #f2c8c1; background-image: radial-gradient(rgba(23, 24, 25, 0.28) 1px, transparent 1px); background-size: 18px 18px; }
.tile-archive { grid-column: 6 / 13; grid-row: 3; background: var(--surface); }
.tile-arrow { position: absolute; right: 28px; bottom: 25px; z-index: 2; font-size: 1.25rem; font-weight: 700; }

.process-section { padding-block: 68px; }
.process-layout { display: grid; grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr); gap: clamp(48px, 7vw, 96px); align-items: start; }
.process-image { position: sticky; top: 102px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); }
.process-image picture { display: block; width: 100%; height: 100%; }
.process-image img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: 50% 44%; }
.process-steps { display: grid; gap: 0; }
.process-step { padding: 30px 0 32px; border-bottom: 1px solid var(--line); }
.process-step:first-child { padding-top: 0; }
.process-step h3 { font-size: clamp(1.5rem, 2.4vw, 2.15rem); }
.process-step p { max-width: 590px; color: var(--muted); }
.step-meta { display: block; margin-bottom: 12px; color: var(--muted); font-size: 0.76rem; font-weight: 720; }

.price-highlight {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.price-highlight::before { content: ""; position: absolute; z-index: 2; top: 0; left: 0; width: 100%; height: 8px; background: var(--brand-stripe); }
.price-heading { padding: clamp(38px, 5vw, 64px); }
.price-heading p { color: #c4c8c6; }
.price-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #3a3c3b; }
.price-item { min-height: 180px; padding: 34px; background: var(--black-soft); }
.price-item:nth-child(1) { box-shadow: inset 0 5px 0 var(--coral); }
.price-item:nth-child(2) { box-shadow: inset 0 5px 0 var(--mustard); }
.price-item:nth-child(3) { box-shadow: inset 0 5px 0 var(--green); }
.price-item:nth-child(4) { box-shadow: inset 0 5px 0 var(--coral); }
.price-item strong { display: block; font-size: 1.8rem; letter-spacing: -0.04em; }
.price-item span { display: block; margin-top: 9px; color: #c4c8c6; font-size: 0.88rem; }
.price-item span b { display: block; margin-bottom: 7px; color: var(--white); font-size: 0.95rem; }

.article-feature { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 16px; min-width: 0; }
.article-card { min-width: 0; min-height: 280px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-decoration: none; transition: transform 220ms ease, border-color 220ms ease; }
.article-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.article-feature > .article-card { min-height: 400px; background: #f4dfa9; }
.article-card h3 { margin-top: 64px; max-width: 530px; }
.article-card:first-child h3 { margin-top: 122px; font-size: clamp(1.9rem, 3.6vw, 3.35rem); }
.article-card p { color: var(--muted); }
.article-stack { display: grid; min-width: 0; gap: 16px; }
.article-stack .article-card:first-child { background: #d8eadc; }
.article-stack .article-card:last-child { background: #f2c8c1; }
.article-stack .article-card h3 { margin-top: 26px; }

.article-library { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.article-list-card { position: relative; min-height: 250px; padding: 30px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); text-decoration: none; overflow: hidden; transition: transform 220ms ease, border-color 220ms ease; }
.article-list-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 7px; background: var(--brand-stripe); }
.article-list-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.article-list-card h3 { max-width: 570px; margin-top: 52px; }
.article-list-card p { max-width: 590px; color: var(--muted); }
.article-list-card:nth-child(4n + 1) { background: #f4dfa9; }
.article-list-card:nth-child(4n + 2) { background: #d8eadc; }
.article-list-card:nth-child(4n + 3) { background: #f2c8c1; }
.article-list-card:nth-child(5), .article-list-card:nth-child(10) { grid-column: 1 / -1; min-height: 230px; }

.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: rgba(255, 253, 247, 0.94); }
summary { position: relative; padding: 24px 58px 24px 24px; font-weight: 720; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 24px; top: 18px; font-size: 1.65rem; font-weight: 400; }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }

.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: clamp(42px, 5vw, 66px) clamp(36px, 5vw, 60px) clamp(36px, 5vw, 60px); border-radius: var(--radius-lg); background: var(--black); color: var(--white); overflow: hidden; }
.cta-panel::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 10px; background: var(--brand-stripe); }
.cta-panel p { max-width: 630px; color: #c5c8c6; }

.page-hero { position: relative; padding: 64px 0 54px; background: rgba(243, 240, 231, 0.72); }
.page-hero::before { content: ""; position: absolute; top: 0; left: 0; width: min(26vw, 330px); height: 8px; background: var(--brand-stripe); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: 0.82rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs > * + *::before { content: "/"; margin-right: 8px; color: #9b9f9d; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr); gap: 44px; align-items: end; min-width: 0; }
.page-hero-grid > * { width: 100%; min-width: 0; }
.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 5.4vw, 5.2rem); }
.page-hero .lead { max-width: 680px; }
.fact-box { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.fact-box strong { display: block; font-size: 1.75rem; letter-spacing: -0.04em; }
.fact-box span { color: var(--muted); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.52fr); gap: clamp(40px, 5vw, 64px); align-items: start; }
.content-grid > * { width: 100%; min-width: 0; }
.prose { font-size: 1.04rem; }
.prose h2 { margin-top: 52px; font-size: clamp(2rem, 3.8vw, 3.3rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #454947; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: 10px; }
.prose img { margin: 36px 0; border-radius: var(--radius); }
.callout { margin: 30px 0; padding: 26px; border-left: 6px solid var(--coral); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #f4dfa9; }
.callout p { margin-top: 6px; }
.side-card { position: sticky; top: 104px; padding: 36px 28px 28px; border-radius: var(--radius); background: var(--black); color: var(--white); overflow: hidden; }
.side-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: var(--brand-stripe); }
.side-card p { color: #c5c8c6; }
.side-card .button { width: 100%; margin-top: 22px; }
.side-links { display: grid; gap: 10px; margin-top: 24px; }
.side-links a { color: #dfe2e0; font-size: 0.9rem; }

.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.format { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.format:nth-child(3n + 1) { border-top: 5px solid var(--coral); }
.format:nth-child(3n + 2) { border-top: 5px solid var(--mustard); }
.format:nth-child(3n + 3) { border-top: 5px solid var(--green); }
.format strong { display: block; font-size: 1.08rem; }
.format span { color: var(--muted); font-size: 0.84rem; }
.pricing-groups { display: grid; gap: 22px; }
.pricing-group { position: relative; padding: 42px 36px 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.pricing-group::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 7px; background: var(--brand-stripe); }
.pricing-group h2 { margin-bottom: 26px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.pricing-row { display: grid; grid-template-columns: 1.25fr 1fr auto; gap: 28px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pricing-row:last-child { border-bottom: 0; }
.pricing-row p { margin: 4px 0 0; color: var(--muted); font-size: 0.86rem; }
.pricing-row .amount { font-size: 1.22rem; font-weight: 760; white-space: nowrap; }

.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 20px; }
.contact-card, .form-card { padding: 42px; border-radius: var(--radius-lg); background: var(--surface); }
.contact-card { position: relative; padding-top: 50px; background: var(--black); color: var(--white); overflow: hidden; }
.contact-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 9px; background: var(--brand-stripe); }
.contact-card a { color: var(--white); }
.contact-card p { color: #c8cbc9; }
.contact-group { margin-top: 32px; }
.contact-group strong { display: block; margin-bottom: 4px; }
.contact-group span, .contact-group address { color: #c8cbc9; font-style: normal; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #aeb3af; border-radius: var(--radius-sm); background: #fbfcfb; color: var(--ink); padding: 13px 14px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #707573; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: 2px solid rgba(21, 22, 22, 0.16); }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin-top: 14px; color: var(--muted); font-size: 0.88rem; }
.form-status.success { padding: 12px 14px; border-radius: var(--radius-sm); background: #d8eadc; color: var(--ink); }
.form-note { margin-top: 12px; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }

.site-footer { padding: 54px 0 26px; border-top: 8px solid var(--coral); border-image: var(--brand-stripe) 1; background: var(--page); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 0.7fr); gap: 44px; }
.footer-brand p { max-width: 380px; color: var(--muted); }
.footer-col strong { display: block; margin-bottom: 16px; font-size: 0.88rem; }
.footer-col a, .footer-col span { display: block; margin-top: 9px; color: var(--muted); font-size: 0.86rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }

.has-js .reveal { opacity: 0; transform: translateY(20px); }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 620ms cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 130ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 190ms; }
  .hero-visual { animation: reveal-image 850ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal-image { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 0.86rem; }
  .nav-cta { padding-inline: 17px; }
  .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr); gap: 34px; }
  .hero h1 { font-size: clamp(3.05rem, 4.75vw, 3.65rem); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .container, .narrow { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 60px 0; }
  .section-tight { padding: 44px 0; }
  .menu-toggle { display: block; }
  .nav-cta { margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 66px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 10px 8px; font-size: 1rem; }
  .nav-dropdown { display: grid; }
  .nav-services { justify-content: space-between; }
  .nav-services::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    display: grid;
    width: auto;
    padding: 2px 0 6px 14px;
    border: 0;
    border-left: 2px solid var(--mustard);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 8px 10px; font-size: 0.9rem; }
  .hero { min-height: auto; padding: 34px 0 50px; }
  .hero-grid, .page-hero-grid, .process-layout, .price-highlight, .article-feature, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(3rem, 8vw, 4.25rem); }
  .hero-media { height: 650px; min-height: 0; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-main { grid-column: 1 / -1; }
  .proof-item:first-of-type { border-left: 0; padding-left: 0; }
  .service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .service-tile, .tile-vhs, .tile-minidv, .tile-hi8, .tile-film, .tile-archive { grid-column: auto; grid-row: auto; min-height: 260px; }
  .tile-vhs { grid-column: 1 / -1; min-height: 420px; }
  .process-image { position: static; }
  .process-image { aspect-ratio: 16 / 10; }
  .process-image img { min-height: 0; }
  .price-list { grid-template-columns: repeat(2, 1fr); }
  .article-card:first-child { min-height: 330px; }
  .article-card:first-child h3 { margin-top: 70px; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero-grid { gap: 28px; }
  .fact-box { max-width: 500px; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand-copy span { display: none; }
  .nav-cta { display: none; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(1.9rem, 9.5vw, 3.2rem); }
  .page-hero h1 { font-size: clamp(1.75rem, 7.4vw, 2.45rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.35rem); }
  .prose h2 { font-size: clamp(1.65rem, 6.5vw, 2.15rem); }
  .hero-media { height: 520px; border-radius: var(--radius); }
  .hero-media img { object-position: 50% 62%; }
  .media-caption { display: block; }
  .media-caption span { display: block; margin-top: 3px; }
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .proof-main { grid-column: auto; }
  .proof-item { border-left: 0; border-top: 1px solid var(--line); padding: 14px 0 0; }
  .service-mosaic { grid-template-columns: 1fr; }
  .service-tile, .tile-vhs { grid-column: auto; min-height: 270px; padding: 26px; }
  .tile-vhs { min-height: 310px; }
  .tile-vhs .tile-copy { max-width: 250px; }
  .tile-vhs::after { background: linear-gradient(90deg, rgba(23, 24, 24, 1) 0%, rgba(23, 24, 24, 0.94) 45%, rgba(23, 24, 24, 0.16) 82%); }
  .tile-icon { width: 78px; }
  .tile-vhs .tile-icon { right: 20px; bottom: 18px; width: 112px; }
  .price-list, .format-grid, .form-grid { grid-template-columns: 1fr; }
  .article-library { grid-template-columns: 1fr; }
  .article-list-card:nth-child(5), .article-list-card:nth-child(10) { grid-column: auto; }
  .price-heading, .contact-card, .form-card { padding: 30px 24px; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px 24px; }
  .cta-panel .button { width: 100%; }
  .pricing-group { padding: 28px 22px; }
  .pricing-row { grid-template-columns: 1fr auto; gap: 14px; }
  .pricing-row > div:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .has-js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-panel, .side-card, .button-row { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero { padding: 24px 0; }
}
