:root {
  color-scheme: light;
  --ink: #141210;
  --paper: #f5f0e8;
  --panel: #fffaf1;
  --muted: #756d63;
  --line: #dfd2c1;
  --charcoal: #26211d;
  --signal: #ef5b2a;
  --mint: #8fd8bd;
  --butter: #f4cd6b;
  --blue: #285f8f;
  --wine: #7f2d45;
  --shadow: 0 22px 55px rgba(20, 18, 16, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 18, 16, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  line-height: 0.98;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(245, 240, 232, 0.91);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand::after {
  position: absolute;
  left: 56px;
  bottom: -7px;
  width: 0;
  height: 4px;
  background: var(--signal);
  border-radius: 999px;
  content: "";
  transition: width 180ms ease;
}

.brand:hover::after {
  width: calc(100% - 56px);
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.brand:hover .brand-mark {
  background: var(--mint);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.nav-links a:hover {
  background: #eadfcd;
}

.nav-links .nav-cta {
  color: #fffaf1;
  background: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(360px, 0.9fr);
  min-height: 78svh;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 104px) clamp(16px, 6vw, 76px) clamp(34px, 6vw, 70px);
}

.hero-copy {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 104px);
}

.hero-copy h1 {
  white-space: nowrap;
}

h2 {
  font-size: clamp(34px, 5.6vw, 70px);
}

h3 {
  font-size: clamp(25px, 3vw, 38px);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: #4d463f;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink);
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.showcase-tile:hover,
.template-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button-secondary {
  background: var(--panel);
}

.showcase-wrap {
  display: grid;
  gap: 14px;
}

.showcase-label {
  margin-bottom: 0;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 360px;
}

.showcase-tile {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  color: #fffaf1;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.showcase-tile::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.12), rgba(20, 18, 16, 0.78));
}

.showcase-tile span,
.showcase-tile strong {
  position: relative;
}

.showcase-tile span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-tile strong {
  max-width: 100%;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.tile-premium {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1200&auto=format&fit=crop");
}

.tile-growth {
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?q=80&w=1200&auto=format&fit=crop");
}

.tile-starter {
  background-image: url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?q=80&w=1200&auto=format&fit=crop");
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--charcoal);
}

.quick-strip a {
  min-height: 148px;
  padding: clamp(22px, 4vw, 42px);
  color: #fffaf1;
  border-right: 2px solid rgba(255, 250, 241, 0.18);
  text-decoration: none;
}

.quick-strip span,
.tier-label,
.template-card span {
  display: block;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.quick-strip em {
  color: rgba(255, 250, 241, 0.7);
  font-style: normal;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(16px, 6vw, 76px);
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 32px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(22px, 6vw, 70px);
  align-items: end;
}

.split-heading p:not(.eyebrow) {
  margin-bottom: 8px;
  font-size: 18px;
}

.pitch-section {
  background: var(--panel);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.proof-grid article {
  padding: 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.proof-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--butter);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.packages-section {
  background: #e9f4ee;
}

.package-heading {
  display: grid;
  gap: 12px;
}

.pricing-stack {
  display: grid;
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.price-row {
  scroll-margin-top: 28vh;
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 5vw, 58px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.premium-row {
  background: #fff6df;
}

.growth-row {
  background: #eef8ff;
}

.starter-row {
  background: #fff0ea;
}

.price-main h3 {
  margin: 8px 0 4px;
  font-size: clamp(44px, 6vw, 76px);
}

.price-main p,
.price-detail p,
.price-detail ul {
  margin-bottom: 0;
}

.price-detail h4 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.price-detail ul {
  padding-left: 18px;
  color: var(--muted);
}

.price-detail li {
  margin-bottom: 7px;
}

.row-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.row-actions a {
  justify-self: end;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.packages-hero {
  padding: clamp(62px, 9vw, 118px) clamp(16px, 6vw, 76px) clamp(42px, 6vw, 72px);
  background: var(--panel);
  border-bottom: 2px solid var(--ink);
}

.packages-hero h1,
.packages-hero p {
  width: min(1320px, 100%);
}

.packages-hero h1 {
  font-size: clamp(42px, 6vw, 88px);
}

.packages-hero p:not(.eyebrow) {
  max-width: 920px;
  color: #4d463f;
  font-size: clamp(18px, 2vw, 23px);
}

.call-required-note {
  display: inline-block;
  max-width: 860px;
  margin-top: 20px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.package-page-section {
  background: var(--paper);
}

.package-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.detail-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.detail-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.featured-card {
  transform: translateY(-12px);
  background: #eef8ff;
}

.featured-card:hover {
  transform: translate(-2px, -14px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 22px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card-top span,
.care-grid span {
  display: block;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card-top strong,
.care-grid strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.detail-card ul,
.care-grid ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.care-grid li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
  color: var(--muted);
}

.detail-card li::before,
.care-grid li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--signal);
  content: "+";
  font-weight: 900;
}

.package-button {
  width: 100%;
  margin-top: auto;
}

.value-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 6vw, 70px);
  width: min(1160px, 100%);
  margin: 42px auto 0;
  padding: 26px;
  background: var(--charcoal);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.value-explainer h2 {
  color: #fffaf1;
  font-size: clamp(30px, 4.2vw, 52px);
}

.value-explainer p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.78);
}

.care-section {
  background: var(--panel);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(780px, 100%);
  margin: 0 auto;
}

.care-grid article {
  padding: 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.package-note {
  width: min(780px, 100%);
  margin: 28px auto 0;
  color: #4d463f;
  font-weight: 900;
  text-align: center;
}

.work-section {
  scroll-margin-top: 12vh;
  background: var(--paper);
}

#examples-grid {
  scroll-margin-top: 16vh;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.template-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: inherit;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.template-card h3 {
  margin: 20px 0 12px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.template-card strong {
  color: var(--signal);
  font-size: 14px;
}

.premium-card {
  background: #fff7e2;
}

.growth-card {
  background: #ecf7ff;
}

.starter-card {
  background: #fff0ea;
}

.revamp-preview {
  background: #e9f4ee;
}

.revamp-band {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--charcoal);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.revamp-band span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.revamp-band strong {
  color: #fffaf1;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.revamp-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(20, 18, 16, 0.9) 0%, rgba(20, 18, 16, 0.78) 40%, rgba(239, 91, 42, 0.18) 72%),
    linear-gradient(135deg, rgba(239, 91, 42, 0.78) 0 22%, transparent 22% 100%),
    linear-gradient(315deg, rgba(143, 216, 189, 0.82) 0 18%, transparent 18% 100%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2200&auto=format&fit=crop");
  background-position: center right;
  background-size: cover;
  color: #fffaf1;
}

.revamp-hero::after {
  position: absolute;
  right: clamp(18px, 7vw, 92px);
  bottom: clamp(18px, 5vw, 62px);
  width: clamp(150px, 23vw, 340px);
  height: clamp(82px, 12vw, 170px);
  border: 2px solid rgba(255, 250, 241, 0.72);
  border-radius: 8px;
  box-shadow: 12px 12px 0 rgba(244, 205, 107, 0.86);
  content: "";
  transform: rotate(-4deg);
}

.revamp-hero .eyebrow,
.revamp-hero h1,
.revamp-hero p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: #fffaf1;
  text-shadow: 0 2px 18px rgba(20, 18, 16, 0.28);
}

.revamp-hero .eyebrow {
  color: var(--butter);
}

.revamp-card-grid .detail-card:first-child {
  background: #fff0ea;
}

.revamp-card-grid .detail-card:last-child {
  background: #fff7e2;
}

.contact-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: clamp(20px, 5vw, 62px);
  align-items: center;
  padding: clamp(44px, 7vw, 76px) clamp(16px, 6vw, 76px);
  background: var(--butter);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.contact-preview h2,
.contact-preview p:not(.eyebrow) {
  max-width: 760px;
}

.contact-preview p:not(.eyebrow) {
  color: #4d463f;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  background: var(--paper);
}

.contact-form,
.contact-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.contact-form {
  scroll-margin-top: 22vh;
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-card h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.contact-card ul {
  margin: 24px 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-card li {
  margin-bottom: 10px;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.88), rgba(239, 91, 42, 0.62), rgba(255, 250, 241, 0.18)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=2000&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
}

.contact-hero .eyebrow,
.contact-hero h1,
.contact-hero p:not(.eyebrow) {
  color: #fffaf1;
  text-shadow: 0 2px 18px rgba(20, 18, 16, 0.24);
}

.contact-hero .eyebrow {
  color: var(--butter);
}

.commerce-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.7fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: center;
  padding: clamp(64px, 9vw, 116px) clamp(16px, 6vw, 76px);
  color: #fffaf1;
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.9), rgba(20, 18, 16, 0.52)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=2000&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
}

.commerce-section p {
  max-width: 720px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
}

.commerce-grid {
  display: grid;
  gap: 14px;
}

.commerce-grid article {
  padding: 20px;
  color: var(--ink);
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.commerce-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-weight: 900;
}

.commerce-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.process-section {
  background: var(--charcoal);
  color: #fffaf1;
}

.process-section .section-heading h2 {
  color: #fffaf1;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.process-list article {
  padding: 22px;
  background: #fffaf1;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.process-list h3 {
  color: var(--ink);
  font-size: 24px;
}

.process-list p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(16px, 6vw, 76px);
  background: var(--butter);
  border-top: 2px solid var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-size: 22px;
}

.site-footer span {
  margin-top: 5px;
  color: #4d463f;
}

@media (max-width: 1060px) {
  .hero,
  .split-heading,
  .commerce-section,
  .value-explainer,
  .revamp-band,
  .contact-preview,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .row-actions,
  .row-actions a {
    justify-self: start;
    justify-items: start;
  }

  .template-grid,
  .process-list,
  .package-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    transform: none;
  }

  .featured-card:hover {
    transform: translate(-2px, -2px);
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .menu-toggle span {
    margin: 0;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    display: none;
    min-width: 205px;
    padding: 8px;
    background: var(--panel);
    border: 2px solid var(--ink);
    border-radius: 8px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .nav-links.open {
    display: grid;
    justify-items: start;
  }

  .nav-links a {
    width: 100%;
    padding: 9px 10px;
    text-align: left;
  }

  .quick-strip,
  .proof-grid,
  .template-grid,
  .process-list,
  .package-card-grid,
  .care-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-tile {
    min-height: 210px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    max-width: 230px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 66px);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .button {
    width: 100%;
  }
}
