:root {
  --paper: #eee9dc;
  --paper-light: #faf6eb;
  --paper-deep: #ded6c4;
  --ink: #1c211c;
  --ink-soft: #555c53;
  --rule: rgba(28, 33, 28, 0.2);
  --red: #a63b27;
  --red-dark: #7f2b1c;
  --green: #285a4c;
  --green-dark: #1e453a;
  --yellow: #dfb94e;
  --white: #fffdf7;
  --shadow: 8px 8px 0 rgba(28, 33, 28, 0.13);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Atkinson Hyperlegible", Arial, sans-serif;
  --mono: "Courier Prime", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(28, 33, 28, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 33, 28, 0.012) 1px, transparent 1px);
  background-size: 5px 5px;
  content: "";
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.8rem;
  transform: translateY(-150%);
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.town-line {
  background: var(--green-dark);
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.town-line__inner {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
}

.town-line__note {
  opacity: 0.72;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--red);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.brand__period {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 0.75rem;
}

.site-nav a {
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-nav a:hover {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

.site-nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  text-decoration: none;
}

.site-nav .nav-cta:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  min-height: 720px;
  padding-block: clamp(88px, 10vw, 136px);
}

.hero h1,
.section-heading h1,
.section-heading h2,
.pricing h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 580;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.hero h1 em {
  position: relative;
  color: var(--red-dark);
  font-weight: 470;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow) 86%, transparent 86%);
  content: "";
  opacity: 0.8;
  transform: rotate(-1deg);
}

.hero__lede {
  max-width: 660px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.button--primary {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--white);
}

.button--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.text-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link:hover {
  color: var(--red-dark);
  text-decoration-thickness: 3px;
}

.hero__aside {
  max-width: 600px;
  margin: 30px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--green);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.deal {
  position: relative;
  padding: 36px 34px 30px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.deal::before {
  position: absolute;
  inset: 9px;
  border: 1px solid var(--rule);
  content: "";
  pointer-events: none;
}

.deal__tape {
  position: absolute;
  top: -16px;
  left: calc(50% - 48px);
  width: 96px;
  height: 31px;
  background: rgba(223, 185, 78, 0.76);
  transform: rotate(-2.5deg);
}

.deal__kicker {
  position: relative;
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deal__price {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding-block: 15px;
  border-top: 1px solid var(--rule);
}

.deal__price strong {
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.deal__price strong sup {
  position: relative;
  top: -0.7em;
  margin-right: 2px;
  font-family: var(--mono);
  font-size: 0.35em;
}

.deal__price span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.35;
}

.deal__price--monthly strong {
  color: var(--green);
}

.deal__list {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 10px 0 26px;
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.deal__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.deal__list li::before {
  position: absolute;
  left: 0;
  color: var(--red-dark);
  content: "✓";
  font-weight: 700;
}

.deal__stamp {
  position: relative;
  width: max-content;
  margin: 0 0 0 auto;
  padding: 5px 9px;
  border: 2px solid var(--red-dark);
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.proof-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--green-dark);
  color: var(--paper-light);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip p {
  display: flex;
  flex-direction: column;
  min-height: 116px;
  justify-content: center;
  margin: 0;
  padding: 22px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-strip p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-strip strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 580;
}

.proof-strip span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.35;
}

.section-heading h1,
.section-heading h2,
.pricing h2,
.contact h2 {
  max-width: 890px;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.98;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  margin-bottom: 62px;
}

.section-heading--split > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading--work {
  align-items: start;
}

.section-heading--work > p {
  max-width: 460px;
}

.section-heading--narrow {
  max-width: 760px;
  margin-bottom: 52px;
}

.story {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px clamp(58px, 9vw, 128px);
  align-items: start;
}

.story__heading {
  grid-column: 1 / -1;
}

.portrait {
  position: sticky;
  top: 32px;
  margin: 0;
}

.portrait::before {
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: -1;
  border: 2px solid var(--ink);
  content: "";
}

.portrait img {
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
}

.prose {
  max-width: 690px;
}

.prose p {
  margin: 0 0 23px;
}

.story__lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.36;
}

.prose blockquote {
  position: relative;
  margin: 44px 0;
  padding: 26px 0 26px 32px;
  border-block: 1px solid var(--rule);
  border-left: 5px solid var(--yellow);
}

.prose blockquote::before {
  position: absolute;
  top: -29px;
  left: 15px;
  color: var(--red);
  content: "“";
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}

.prose blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.42;
}

.story__credentials {
  padding: 20px 22px;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 247, 0.45);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.work {
  border-block: 1px solid var(--rule);
  background: var(--paper-light);
}

.case {
  border: 1px solid var(--ink);
  background: var(--paper);
}

.case--featured {
  display: grid;
  grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr);
  min-height: 590px;
}

.case__intro {
  padding: clamp(30px, 4vw, 48px);
}

.case--featured .case__intro {
  border-right: 1px solid var(--ink);
}

.case__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 9px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.case__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9d9a6;
  box-shadow: 0 0 0 3px rgba(169, 217, 166, 0.2);
}

.case__status--concept {
  background: var(--paper-deep);
  color: var(--ink);
}

.case__place {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.case__intro > p:not(.case__place) {
  color: var(--ink-soft);
}

.case__wins {
  display: grid;
  gap: 10px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.case__wins li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.case__wins li::before {
  position: absolute;
  left: 0;
  color: var(--red-dark);
  content: "✓";
  font-weight: 700;
}

.case__visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: var(--paper-deep);
}

.case__image-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #d1ccbfe3;
}

.case__image-link > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(28, 33, 28, 0.9);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-decoration: none;
}

.case__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top;
  transition: opacity 120ms ease;
}

.case__image.is-changing {
  opacity: 0.4;
}

.view-switcher {
  display: none;
}

.js .view-switcher {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  padding: 4px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 3px 0 var(--ink);
}

.view-switcher button {
  min-height: 38px;
  padding: 7px 11px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
}

.view-switcher button[aria-pressed="true"] {
  background: var(--red-dark);
  color: var(--white);
}

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

.case--compact {
  display: flex;
  flex-direction: column;
}

.case--compact .case__visual {
  height: 370px;
  border-bottom: 1px solid var(--ink);
}

.case--compact .case__image-link {
  min-height: 100%;
}

.case--compact .case__intro {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.case--compact h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.case--compact .text-link {
  margin-top: auto;
  padding-top: 15px;
}

.work__note {
  max-width: 850px;
  margin: 32px 0 0;
  padding-left: 19px;
  border-left: 4px solid var(--yellow);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.work__note strong {
  color: var(--ink);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--rule);
}

.outcome-grid article {
  position: relative;
  min-height: 270px;
  padding: 36px 38px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.outcome-grid__number {
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.outcome-grid h3 {
  max-width: 390px;
  margin: 40px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.outcome-grid p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.process {
  background: var(--ink);
  color: var(--paper-light);
}

.process .eyebrow {
  color: #efc968;
}

.process .section-heading--split > p {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 38px 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.steps li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.steps li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #efc968;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.steps h3 {
  margin: 4px 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1.1;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px clamp(62px, 9vw, 128px);
}

.pricing__intro > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.price-card {
  align-self: start;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.price-card__row {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  padding: 38px;
}

.price-card__row + .price-card__row {
  border-top: 2px solid var(--ink);
}

.price-card__row--monthly {
  background: rgba(40, 90, 76, 0.08);
}

.price-card__label {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  display: inline-block;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 630;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price-card__row--monthly strong {
  color: var(--green);
}

.price-card strong + span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
  font-size: 0.9rem;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--red-dark);
  content: "✓";
  font-weight: 700;
}

.domain-rule {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px 38px;
  border: 2px solid var(--red-dark);
  background: rgba(255, 253, 247, 0.45);
}

.domain-rule__mark {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--red-dark);
  border-radius: 50%;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-7deg);
}

.domain-rule .eyebrow {
  margin-bottom: 6px;
}

.domain-rule h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.domain-rule p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
}

.faq {
  border-block: 1px solid var(--rule);
  background: var(--paper-deep);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(56px, 9vw, 130px);
}

.faq__list {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 590;
  line-height: 1.25;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--red-dark);
  content: "+";
  font-family: var(--mono);
  font-size: 1.6rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 680px;
  margin: -5px 0 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 144px);
  align-items: start;
}

.contact__copy {
  position: sticky;
  top: 30px;
}

.contact__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
}

.contact__privacy {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact__privacy span {
  color: var(--red-dark);
}

.contact-form {
  display: grid;
  gap: 25px;
  padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

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

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

.contact-form label > span {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form label small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.9em;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}

.contact-form input {
  min-height: 50px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px rgba(166, 59, 39, 0.17);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #747b72;
  opacity: 1;
}

.contact-form .button {
  justify-self: start;
  margin-top: 5px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  padding: 15px 17px;
  border: 1px solid currentColor;
  font-size: 0.88rem;
}

.form-status--success {
  background: rgba(40, 90, 76, 0.1);
  color: var(--green-dark);
}

.form-status--error {
  background: rgba(166, 59, 39, 0.1);
  color: var(--red-dark);
}

.site-footer {
  padding-block: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--green-dark);
  color: var(--paper-light);
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.brand--footer {
  color: var(--paper-light);
}

.brand--footer .brand__mark {
  stroke: #efc968;
}

.site-footer p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 0.69rem;
}

.site-footer__links {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.site-footer__links a {
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 5px;
}

.site-footer__links a:hover {
  color: #efc968;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 50px;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip p:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .proof-strip p:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .case--featured {
    grid-template-columns: 1fr;
  }

  .case--featured .case__intro {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .case--featured .case__visual {
    min-height: 540px;
  }

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

  .steps li {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .steps li + li {
    border-top: 0;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .section {
    padding-block: 82px;
  }

  .town-line__note {
    display: none;
  }

  .town-line__inner {
    justify-content: center;
    text-align: center;
  }

  .site-header {
    min-height: 78px;
  }

  .brand {
    gap: 8px;
    font-size: 1.12rem;
  }

  .brand__mark {
    width: 35px;
  }

  .nav-cta {
    padding: 9px 10px !important;
    font-size: 0.66rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 66px;
    min-height: 0;
    padding-block: 82px 96px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.4rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero__lede {
    margin-top: 31px;
    font-size: 1.12rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .deal {
    margin-inline: 7px 10px;
    transform: rotate(0.6deg);
  }

  .proof-strip__grid {
    width: 100%;
  }

  .proof-strip p {
    min-height: 104px;
    padding: 18px 16px;
  }

  .proof-strip p:nth-child(odd) {
    border-left: 0;
  }

  .proof-strip p:nth-child(even) {
    border-right: 0;
  }

  .proof-strip strong {
    font-size: 1.05rem;
  }

  .section-heading h1,
  .section-heading h2,
  .pricing h2,
  .contact h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 45px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story__heading {
    grid-column: auto;
  }

  .portrait,
  .contact__copy {
    position: static;
  }

  .portrait {
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .story__lead {
    font-size: 1.45rem;
  }

  .prose blockquote {
    margin-block: 36px;
  }

  .prose blockquote p {
    font-size: 1.3rem;
  }

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

  .case--featured .case__visual {
    min-height: 340px;
  }

  .case__visual {
    padding: 10px;
  }

  .case__image-link {
    min-height: 310px;
  }

  .case--compact .case__visual {
    height: 310px;
  }

  .js .view-switcher {
    top: 20px;
    left: 20px;
  }

  .case__image-link > span {
    right: 8px;
    bottom: 8px;
  }

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

  .outcome-grid article {
    min-height: 0;
    padding: 30px 26px 34px;
  }

  .outcome-grid h3 {
    margin-top: 30px;
  }

  .steps li {
    padding: 30px 22px;
  }

  .price-card__row {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .domain-rule {
    grid-template-columns: 1fr;
    padding: 28px 25px;
  }

  .domain-rule__mark {
    width: 55px;
    height: 55px;
    font-size: 2.2rem;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq summary {
    font-size: 1.2rem;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 17px;
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .site-header .brand__mark {
    display: none;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .deal {
    padding-inline: 25px;
  }

  .deal__price strong {
    font-size: 3rem;
  }

  .proof-strip span {
    font-size: 0.62rem;
  }

  .case__intro {
    padding: 27px 23px;
  }

  .case h3 {
    font-size: 2.15rem;
  }

  .case__image-link,
  .case--featured .case__visual,
  .case--compact .case__visual {
    min-height: 265px;
    height: 265px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
