:root {
  --ink: #050505;
  --paper: #f4f3ef;
  --white: #ffffff;
  --muted: #6a6a67;
  --line: rgba(5, 5, 5, 0.2);
  --accent: #ff4a18;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--white); background: var(--accent); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--accent);
  color: var(--white);
  padding: .85rem 1rem;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}
.brand-logo { width: auto; object-fit: contain; }
.brand-logo-header {
  height: 58px;
  filter: invert(1);
}
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 3vw, 2.75rem); }
.site-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.site-nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: .7rem 1rem;
  border: 1px solid var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.header-cta:hover { color: var(--white); background: var(--ink); }
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: calc(100svh - 76px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(4rem, 8vw, 8rem) var(--pad) 2rem;
}
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 2.75rem;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.record-dot { width: .65rem; height: .65rem; border-radius: 50%; background: var(--accent); }
.hero h1, .section-head h2, .pricing-intro h2, .short-form h2, .studio-heading h2, .feature-panel h2, .process h2, .about h2, .contact h2, .intro h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .92;
}
.hero h1 { font-size: clamp(3.3rem, 7vw, 7.6rem); text-transform: uppercase; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.hero-lede {
  max-width: 43rem;
  margin: 2.5rem 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.15rem;
  border: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.text-link {
  display: inline-flex;
  gap: .45rem;
  width: max-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: .25rem;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link-light { color: var(--white); }
.hero-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: auto; padding-top: 3rem; }
.hero-meta span { padding: .35rem .65rem; border: 1px solid rgba(255,255,255,.28); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #000;
  border-left: 1px solid rgba(255,255,255,.2);
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.25);
  pointer-events: none;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 45%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.hero-stamp {
  position: absolute;
  left: 2.25rem;
  bottom: 2.25rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(6rem, 10vw, 9.5rem);
  aspect-ratio: 1;
  padding: .8rem;
  background: rgba(5,5,5,.9);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; }
.hero-art-label, .hero-art-year { position: absolute; z-index: 1; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-art-label, .hero-art-year { z-index: 4; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero-art-label { left: 2.25rem; top: 2.5rem; }
.hero-art-year { right: 2.25rem; bottom: 2.5rem; }

.service-strip { overflow: hidden; color: var(--ink); background: var(--accent); border-bottom: 1px solid var(--ink); }
.service-strip-track { display: flex; align-items: center; width: max-content; padding: .8rem 0; animation: strip 26s linear infinite; }
.service-strip span { font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.service-strip i { display: block; width: .45rem; height: .45rem; margin: 0 2rem; background: var(--ink); border-radius: 50%; }
@keyframes strip { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section-pad-x { padding-left: var(--pad); padding-right: var(--pad); }
.section-kicker { margin-bottom: 3rem; }
.section-kicker-light { color: rgba(255,255,255,.65); }
.intro { background: var(--white); border-bottom: 1px solid var(--ink); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: start; }
.intro h2 { max-width: 12ch; font-size: clamp(3rem, 7vw, 7.3rem); text-transform: uppercase; }
.intro-copy { max-width: 39rem; padding-top: .35rem; font-size: clamp(1.1rem, 1.7vw, 1.5rem); }
.intro-copy p { margin: 0 0 1.5rem; }
.intro-copy p:last-child { color: var(--muted); }

.services { padding-top: clamp(5rem, 9vw, 8rem); background: var(--paper); border-bottom: 1px solid var(--ink); }
.section-head { display: grid; grid-template-columns: 1fr .6fr; gap: 5vw; align-items: end; margin-bottom: 4rem; }
.section-head h2, .pricing-intro h2 { font-size: clamp(3rem, 6.5vw, 7rem); text-transform: uppercase; }
.section-head p { max-width: 31rem; margin: 0 0 .75rem auto; font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 2rem;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background .25s ease, color .25s ease;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:hover { background: #e8e6e0; }
.service-card-featured { background: var(--accent); }
.service-card-featured:hover { background: #ff6437; }
.service-card-dark { color: var(--white); background: var(--ink); }
.service-card-dark:hover { color: var(--ink); background: var(--accent); }
.service-card-wide { grid-column: span 3; min-height: 240px; display: grid; grid-template-columns: 1fr auto; align-items: end; }
.card-index { font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { max-width: 12ch; margin: auto 0 1rem; font-size: clamp(1.75rem, 2.8vw, 3rem); letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }
.service-card p { max-width: 33rem; margin: 0 0 1.5rem; }
.service-card a { width: max-content; font-size: .75rem; font-weight: 900; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid currentColor; }

.podcasts { background: var(--white); border-bottom: 1px solid var(--ink); }
.pricing-intro { display: grid; grid-template-columns: 1.25fr .55fr; gap: 6vw; align-items: end; margin-bottom: 4rem; }
.pricing-intro h2 { max-width: 14ch; }
.pricing-intro p { margin: 0 0 .5rem; color: var(--muted); font-size: 1.05rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.pricing-card { display: flex; flex-direction: column; min-height: 680px; padding: 2rem; border-right: 1px solid var(--ink); }
.pricing-card:last-child { border-right: 0; }
.pricing-card-dark { color: var(--white); background: var(--ink); }
.plan-top { min-height: 350px; }
.plan-number, .plan-badge { display: block; margin-bottom: 2rem; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.plan-badge { float: right; margin-left: 1rem; padding: .3rem .45rem; color: var(--ink); background: var(--accent); }
.pricing-card h3 { margin: 0 0 1.4rem; font-size: clamp(2rem, 3.3vw, 3.5rem); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: .5rem; margin: 0 0 1.6rem; }
.price strong { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.06em; line-height: 1; }
.price span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.pricing-card-dark .price span { color: rgba(255,255,255,.58); }
.pricing-card ul { min-height: 130px; margin: 0; padding: 1.5rem 0 1.5rem 1.2rem; border-top: 1px solid currentColor; font-size: .86rem; }
.pricing-card li + li { margin-top: .6rem; }
.checkout-group { margin-top: auto; border: 1px solid currentColor; }
.checkout-group a { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 1rem; font-size: .76rem; font-weight: 900; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.checkout-group a + a { border-top: 1px solid currentColor; }
.checkout-group a:hover { color: var(--white); background: var(--accent); }
.pricing-card-dark .checkout-group a:hover { color: var(--ink); }
.pricing-note { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1rem; color: var(--muted); font-size: .68rem; }

.short-form { display: grid; grid-template-columns: .85fr 1.15fr; color: var(--white); background: var(--ink); border-bottom: 1px solid var(--ink); }
.short-form-title { position: sticky; top: 76px; align-self: start; min-height: calc(100svh - 76px); padding: clamp(5rem, 9vw, 8rem) var(--pad); border-right: 1px solid rgba(255,255,255,.25); }
.short-form h2 { font-size: clamp(3.8rem, 7vw, 7.5rem); text-transform: uppercase; }
.short-form-title p { max-width: 34rem; margin: 2rem 0; color: rgba(255,255,255,.66); font-size: 1.05rem; }
.short-form-plans { padding: clamp(5rem, 9vw, 8rem) var(--pad); }
.short-form-plans article { padding: 3rem 0; border-top: 1px solid rgba(255,255,255,.35); }
.short-form-plans article:first-child { padding-top: 0; border-top: 0; }
.short-form-plans .content-plan-index { color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.short-form-plans h3 { margin: .85rem 0 1rem; font-size: clamp(2.5rem, 5vw, 5.25rem); letter-spacing: -.06em; line-height: 1; }
.short-form-plans small { font-size: .8rem; letter-spacing: .02em; text-transform: uppercase; }
.short-form-plans p { max-width: 37rem; margin: 0; color: rgba(255,255,255,.7); }
.content-plan ul { display: grid; gap: .5rem; margin: 1.5rem 0 2rem; padding: 1.25rem 0 0 1.15rem; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.76); font-size: .82rem; }
.pending-checkout-group { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; border: 1px solid rgba(255,255,255,.55); }
.pending-checkout-group button {
  display: grid;
  gap: .2rem;
  min-width: 0;
  padding: 1rem;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.04);
  border: 0;
  border-right: 1px solid rgba(255,255,255,.32);
  text-align: left;
  cursor: not-allowed;
}
.pending-checkout-group button:last-child { border-right: 0; }
.pending-checkout-group button span { font-size: .67rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.pending-checkout-group button strong { font-size: 1.2rem; }
.pending-checkout-group button small { color: var(--accent); font-size: .58rem; font-weight: 900; letter-spacing: .04em; }
.short-form-plans .fine-print { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.35); font-size: .75rem; }

.studio { background: var(--paper); border-bottom: 1px solid var(--ink); }
.studio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.studio-heading { position: sticky; top: 120px; align-self: start; }
.studio-heading h2 { font-size: clamp(3rem, 6vw, 6.5rem); text-transform: uppercase; }
.studio-heading p { margin: 2rem 0; color: var(--muted); font-size: 1.1rem; }
.rate-list { border-top: 1px solid var(--ink); }
.rate-list article { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.rate-list article > span { grid-row: span 2; font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.rate-list strong { font-size: 1.1rem; }
.rate-list p { margin: .35rem 0 0; color: var(--muted); font-size: .85rem; }

.feature-pair { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--ink); }
.feature-panel { display: flex; flex-direction: column; min-height: 650px; padding: clamp(3rem, 7vw, 7rem) var(--pad); }
.feature-panel + .feature-panel { border-left: 1px solid var(--ink); }
.feature-panel > span { margin-bottom: auto; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.feature-panel h2 { max-width: 12ch; margin-top: 4rem; font-size: clamp(3rem, 5.5vw, 6rem); text-transform: uppercase; }
.feature-panel p { max-width: 38rem; margin: 2rem 0; font-size: 1.05rem; }
.feature-panel-dark { color: var(--white); background: var(--ink); }
.feature-panel-dark p { color: rgba(255,255,255,.68); }
.feature-panel-light { background: var(--accent); }

.process { background: var(--white); border-bottom: 1px solid var(--ink); }
.process > h2 { max-width: 13ch; font-size: clamp(3rem, 6.5vw, 7rem); text-transform: uppercase; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-grid article { min-height: 300px; padding: 1.5rem; border-right: 1px solid var(--ink); }
.process-grid article:last-child { border-right: 0; }
.process-grid span { color: var(--accent); font-size: .7rem; font-weight: 900; }
.process-grid h3 { margin: 5rem 0 1rem; font-size: 2.4rem; letter-spacing: -.05em; text-transform: uppercase; }
.process-grid p { max-width: 25rem; color: var(--muted); }

.about { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 760px; color: var(--white); background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.25); }
.about-gallery { position: relative; min-width: 0; overflow: hidden; background: #111; border-right: 1px solid rgba(255,255,255,.25); }
.about-photo-main { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.about-photo-label { position: absolute; left: 1.5rem; top: 1.5rem; padding: .5rem .7rem; color: var(--ink); background: var(--accent); font-size: .64rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem) var(--pad); }
.about-copy h2 { max-width: 13ch; font-size: clamp(3rem, 6.5vw, 7rem); text-transform: uppercase; }
.about-copy p { max-width: 43rem; margin: 2rem 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.5vw, 1.25rem); }

.contact { background: var(--accent); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.contact h2 { font-size: clamp(4rem, 8vw, 9rem); text-transform: uppercase; }
.contact-grid > div:first-child p { max-width: 32rem; margin-top: 2rem; font-size: 1.05rem; }
.contact-actions { border-top: 1px solid var(--ink); }
.contact-link, .contact-location { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center; padding: 1.35rem 0; border-bottom: 1px solid rgba(5,5,5,.45); text-decoration: none; }
.contact-link span, .contact-location span { font-size: .68rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.contact-link strong, .contact-location strong { font-size: clamp(1rem, 1.7vw, 1.4rem); }
.contact-link i { font-style: normal; }
.contact-link:hover strong { text-decoration: underline; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; min-height: 125px; padding: 2rem var(--pad); color: var(--white); background: #000; }
.site-footer p { margin: 0; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.site-footer p:last-child { justify-self: end; }
.brand-logo-footer { height: 84px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; padding: 0; background: transparent; border: 1px solid var(--ink); }
  .nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem var(--pad) 2rem; background: var(--paper); border-bottom: 1px solid var(--ink); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: calc(100svh - 76px); }
  .hero-art { min-height: 75svh; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .intro-grid, .section-head, .pricing-intro, .studio-grid, .short-form, .about, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid, .section-head, .pricing-intro { gap: 2.5rem; }
  .section-head p { margin-left: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--ink); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .pricing-card:last-child { border-bottom: 0; }
  .plan-top { min-height: auto; }
  .pricing-card ul { min-height: auto; }
  .short-form-title, .studio-heading { position: static; min-height: 0; }
  .short-form-title { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .feature-pair { grid-template-columns: 1fr; }
  .feature-panel + .feature-panel { border-left: 0; border-top: 1px solid var(--ink); }
  .about-gallery { min-height: 0; height: min(110vw, 820px); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .about-photo-main { object-position: 68% 32%; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; }
  .brand-logo-header { height: 51px; }
  .site-nav { top: 68px; }
  .hero { min-height: calc(100svh - 68px); }
  .hero-copy { min-height: calc(100svh - 68px); padding-top: 4rem; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 62svh; }
  .hero-art::before { inset: .75rem; }
  .hero-art-label { left: 1.4rem; top: 1.5rem; }
  .hero-art-year { right: 1.4rem; bottom: 1.5rem; }
  .intro h2, .section-head h2, .pricing-intro h2, .short-form h2, .studio-heading h2, .feature-panel h2, .process h2, .about h2 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .section-kicker, .eyebrow { margin-bottom: 2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(n) { min-height: 290px; border-right: 0; }
  .service-card-wide { grid-column: auto; display: flex; align-items: stretch; }
  .pricing-card { padding: 1.4rem; }
  .price strong { font-size: 3.2rem; }
  .pricing-note { flex-direction: column; gap: .5rem; }
  .pending-checkout-group { grid-template-columns: 1fr; }
  .pending-checkout-group button { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.32); }
  .pending-checkout-group button:last-child { border-bottom: 0; }
  .rate-list article { grid-template-columns: 1fr; gap: .55rem; }
  .rate-list article > span { grid-row: auto; }
  .feature-panel { min-height: 580px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 3.5rem; }
  .about-gallery { height: 110vw; max-height: 700px; }
  .contact h2 { font-size: clamp(3.6rem, 18vw, 6.5rem); }
  .contact-link, .contact-location { grid-template-columns: 1fr auto; }
  .contact-link strong, .contact-location strong { grid-column: 1 / -1; }
  .contact-link i { grid-column: 2; grid-row: 1; }
  .site-footer { grid-template-columns: 1fr; gap: .75rem; }
  .site-footer p:last-child { justify-self: start; }
}

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