:root {
  --ink: #10110e;
  --paper: #f3f0e8;
  --acid: #d8ff38;
  --gray: #6d7068;
  --line: rgba(16, 17, 14, 0.22);
  --white: #fffef8;
  --display: "Gasoek One", "Arial Black", sans-serif;
  --body: "IBM Plex Sans KR", sans-serif;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  word-break: keep-all;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}

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

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

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

:focus-visible {
  outline: 3px solid #ff4e1f;
  outline-offset: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(18px, 3.4vw, 54px);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-height: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--acid);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.header-cta:hover {
  color: var(--acid);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: calc(100svh - var(--header-height));
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(38px, 5vw, 72px) clamp(22px, 5vw, 76px) clamp(28px, 4vw, 56px);
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 92px 92px;
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 830px;
  margin: 22px 0 40px;
  font-family: var(--display);
  font-size: clamp(62px, 7.8vw, 138px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--paper);
  text-shadow: -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 2px 2px 0 var(--ink);
}

.hero h1 span::after {
  position: absolute;
  right: -2%;
  bottom: -1%;
  left: -2%;
  z-index: -1;
  height: 30%;
  content: "";
  background: var(--acid);
  transform: rotate(-1.5deg);
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.hero-bottom p {
  max-width: 420px;
  margin: 0;
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.65;
}

.circle-link {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-weight: 700;
  line-height: 1.45;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.circle-link:hover {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-4px, -4px) rotate(-3deg);
}

.circle-arrow {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 22px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--ink);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover > img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 17, 14, 0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.inspection-stamp {
  position: absolute;
  top: 8%;
  right: 8%;
  display: grid;
  width: 144px;
  height: 144px;
  place-content: center;
  border: 3px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  text-align: center;
  transform: rotate(10deg);
}

.inspection-stamp::before,
.inspection-stamp::after {
  position: absolute;
  inset: 8px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  content: "";
}

.inspection-stamp span {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.inspection-stamp strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  min-height: 152px;
  color: var(--acid);
  background: var(--ink);
}

.proof-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(20px, 3vw, 46px);
  border-right: 1px solid rgba(216, 255, 56, 0.35);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-number {
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 400;
  line-height: 1;
}

.proof-label {
  max-width: 72px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.45;
}

.proof-location {
  justify-content: center;
  color: var(--white);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 7px rgba(216, 255, 56, 0.18);
}

.section-pad {
  padding: clamp(84px, 10vw, 160px) clamp(22px, 5vw, 80px);
}

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

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(50px, 8vw, 140px);
  margin: 44px 0 100px;
}

.manifesto h2,
.works h2,
.reviews h2,
.process h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 116px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.manifesto-copy {
  align-self: end;
  max-width: 520px;
}

.manifesto-copy > p:first-child {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.75;
}

.source-note {
  margin: 32px 0 0;
  padding-top: 18px;
  color: var(--gray);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.65;
}

.promise-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  padding: 28px 10px;
  border-bottom: 1px solid var(--ink);
  transition: padding 180ms ease, background 180ms ease;
}

.promise-list li:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: var(--acid);
}

.promise-no {
  color: var(--gray);
  font-size: 13px;
}

.promise-list h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 42px);
  letter-spacing: -0.04em;
}

.promise-list p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
}

.promise-list li:hover p,
.promise-list li:hover .promise-no {
  color: var(--ink);
}

.promise-icon {
  font-size: 42px;
}

.scope {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 160px);
  color: var(--white);
  background: var(--ink);
}

.scope-heading {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.scope h2 {
  margin: 46px 0 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.scope-list {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.scope-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  padding: 44px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.scope-item > span {
  color: var(--acid);
  font-size: 12px;
}

.scope-item h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.04em;
}

.scope-item p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.scope-item strong {
  align-self: start;
  color: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

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

.works-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.works-head .section-index {
  margin-bottom: 38px;
}

.works-head > p {
  max-width: 480px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.8;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.5vw, 38px);
  align-items: start;
}

.work-photo {
  grid-column: span 4;
  margin: 0;
}

.work-photo-wide {
  grid-column: span 8;
}

.work-photo-tall {
  grid-column: 7 / span 6;
  margin-top: -20%;
}

.work-photo img {
  width: 100%;
  height: clamp(390px, 48vw, 710px);
  border: 1px solid var(--ink);
  object-fit: cover;
  filter: saturate(0.78);
}

.work-photo-wide img {
  aspect-ratio: 1.45 / 1;
  height: auto;
}

.work-photo-tall img {
  aspect-ratio: 0.85 / 1;
  height: auto;
}

.work-photo figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.pricing {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 150px);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
}

.pricing h2 {
  margin: 38px 0 32px;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 90px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.pricing-intro > p:last-child {
  max-width: 460px;
  margin: 0;
  line-height: 1.8;
}

.price-sheet {
  align-self: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--ink);
}

.price-row > span {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
}

.price-row strong {
  font-family: var(--display);
  font-size: clamp(35px, 4.4vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.price-row small {
  margin-left: 7px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
}

.price-row.featured {
  color: var(--acid);
  background: var(--ink);
  margin-right: -18px;
  margin-left: -18px;
  padding-right: 26px;
  padding-left: 26px;
  transform: rotate(-0.5deg);
}

.price-date {
  margin: 0;
  padding: 18px 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.reviews {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
  color: var(--white);
  background: #1b1d18;
}

.reviews-title-wrap,
.review-list,
.review-source {
  margin-right: clamp(22px, 5vw, 80px);
  margin-left: clamp(22px, 5vw, 80px);
}

.reviews-title-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.rating-lockup {
  display: flex;
  align-items: end;
  gap: 16px;
  align-self: end;
  padding-bottom: 8px;
}

.rating-lockup strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.8;
}

.rating-lockup span {
  color: var(--acid);
  font-size: 11px;
  line-height: 1.5;
  white-space: nowrap;
}

.review-ticker {
  display: flex;
  width: max-content;
  margin: 100px 0 86px;
  padding: 18px 0;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 68px);
  transform: rotate(-1.4deg) translateX(-1%);
}

.review-ticker span {
  animation: ticker 24s linear infinite;
  padding-right: 0.35em;
}

@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.review-list blockquote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  margin: 0;
  padding: 40px clamp(24px, 3vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.review-list blockquote:last-child {
  border-right: 0;
}

.review-list blockquote p {
  margin: 0;
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

.review-list footer {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.review-source {
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

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

.process-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  margin-bottom: 90px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ink);
}

.process-line li {
  position: relative;
  min-height: 280px;
  padding: 0 clamp(18px, 2.4vw, 36px);
  border-right: 1px solid var(--ink);
}

.process-line li:first-child {
  padding-left: 0;
}

.process-line li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-line li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--display);
  font-size: 22px;
}

.process-line h3 {
  margin: 42px 0 20px;
  font-size: clamp(22px, 2.4vw, 34px);
}

.process-line p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 800px;
  color: var(--white);
  background: var(--ink);
}

.final-cta-photo {
  min-height: 650px;
  overflow: hidden;
}

.final-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.08);
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(30px, 7vw, 110px);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.final-cta h2 {
  margin: 46px 0 36px;
  color: var(--acid);
}

.final-cta-copy > p:not(.section-index) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.8;
}

.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-top: 58px;
  padding: 28px 0;
  color: var(--acid);
  border-top: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 700;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.mega-link:hover {
  padding-right: 22px;
  padding-left: 22px;
  color: var(--ink);
  background: var(--acid);
}

.coupon-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.coupon-note span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-weight: 700;
}

.coupon-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  padding: 52px clamp(22px, 5vw, 80px) 64px;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
}

.footer-note {
  justify-self: end;
  text-align: right;
}

.mobile-contact,
.toast {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-enabled .reveal.is-visible,
[data-capture="true"] .reveal,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 96px);
  }

  .hero-bottom {
    align-items: start;
    flex-direction: column;
  }

  .circle-link {
    width: 128px;
    height: 128px;
  }

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

  .proof-location {
    grid-column: 1 / -1;
    min-height: 78px;
    border-top: 1px solid rgba(216, 255, 56, 0.35);
  }

  .manifesto-grid,
  .works-head,
  .pricing,
  .reviews-title-wrap,
  .process-head {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    margin-left: 20%;
  }

  .scope {
    gap: 50px;
  }

  .rating-lockup {
    justify-self: start;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .review-list blockquote {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  }

  .review-list blockquote:last-child {
    border-bottom: 0;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }

  .process-line::before {
    display: none;
  }

  .process-line li:nth-child(2) {
    border-right: 0;
  }

  .final-cta {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding: 0 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 620px;
    padding: 32px 18px 38px;
    background-size: 58px 58px;
  }

  .hero h1 {
    margin: 26px 0 46px;
    font-size: clamp(58px, 18vw, 82px);
    line-height: 0.94;
  }

  .hero h1 span {
    text-shadow: -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink), 1px 1px 0 var(--ink);
  }

  .hero-bottom {
    flex-direction: row;
    align-items: end;
  }

  .hero-bottom p {
    max-width: 220px;
    font-size: 14px;
  }

  .circle-link {
    width: 112px;
    height: 112px;
    font-size: 13px;
  }

  .circle-arrow {
    top: 14px;
    right: 18px;
    font-size: 17px;
  }

  .hero-visual {
    min-height: 520px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .inspection-stamp {
    width: 110px;
    height: 110px;
  }

  .inspection-stamp strong {
    font-size: 26px;
  }

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

  .proof-strip > div {
    display: block;
    min-width: 0;
    padding: 22px 10px;
    text-align: center;
  }

  .proof-number {
    display: block;
    font-size: 36px;
  }

  .proof-label {
    display: block;
    max-width: none;
    margin-top: 8px;
    font-size: 10px;
  }

  .proof-location {
    display: flex !important;
    padding: 20px !important;
  }

  .section-pad {
    padding: 82px 18px;
  }

  .manifesto-grid {
    gap: 34px;
    margin: 30px 0 64px;
  }

  .manifesto h2,
  .works h2,
  .reviews h2,
  .process h2,
  .final-cta h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .manifesto-copy {
    margin-left: 0;
  }

  .manifesto-copy > p:first-child {
    font-size: 17px;
  }

  .promise-list li {
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    min-height: 130px;
  }

  .promise-list h3 {
    font-size: 24px;
  }

  .promise-list p {
    font-size: 13px;
  }

  .promise-icon {
    font-size: 28px;
  }

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

  .scope-heading {
    position: static;
  }

  .scope h2 {
    margin-top: 32px;
    font-size: clamp(50px, 15vw, 70px);
  }

  .scope-item {
    grid-template-columns: 36px 1fr;
    padding: 34px 0 40px;
  }

  .scope-item strong {
    display: none;
  }

  .scope-item h3 {
    font-size: 28px;
  }

  .works-head {
    gap: 34px;
    margin-bottom: 55px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 12px;
  }

  .work-photo,
  .work-photo-wide,
  .work-photo-tall {
    grid-column: auto;
    margin-top: 0;
  }

  .work-photo-wide {
    grid-column: 1 / -1;
  }

  .work-photo img,
  .work-photo-tall img {
    height: 290px;
    aspect-ratio: auto;
  }

  .work-photo-wide img {
    height: 340px;
  }

  .pricing {
    gap: 62px;
  }

  .pricing h2 {
    font-size: 56px;
  }

  .price-row {
    padding: 25px 4px;
  }

  .price-row strong {
    font-size: 37px;
  }

  .price-row.featured {
    margin-right: -8px;
    margin-left: -8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .reviews-title-wrap,
  .review-list,
  .review-source {
    margin-right: 18px;
    margin-left: 18px;
  }

  .reviews-title-wrap {
    gap: 32px;
  }

  .review-ticker {
    margin: 72px 0 56px;
  }

  .review-list blockquote {
    min-height: 250px;
    padding: 34px 22px;
  }

  .review-list blockquote p {
    font-size: 21px;
  }

  .process-head {
    gap: 32px;
    margin-bottom: 64px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-line li {
    min-height: 0;
    padding: 30px 0 44px 72px !important;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .process-line li > span {
    position: absolute;
    top: 27px;
    left: 0;
    width: 46px;
    height: 46px;
  }

  .process-line h3 {
    margin: 0 0 12px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-photo {
    min-height: 400px;
  }

  .final-cta-photo img {
    height: 400px;
  }

  .final-cta-copy {
    padding: 76px 18px 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .mega-link {
    font-size: 21px;
  }

  .coupon-note {
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 10px 12px 10px 18px;
    color: var(--white);
    border-top: 1px solid var(--acid);
    background: rgba(16, 17, 14, 0.96);
    font-size: 12px;
    backdrop-filter: blur(12px);
  }

  .mobile-contact span strong {
    color: var(--acid);
  }

  .mobile-contact a {
    display: grid;
    min-width: 116px;
    min-height: 48px;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    font-size: 14px;
    font-weight: 700;
  }

  .toast {
    position: fixed;
    right: 18px;
    bottom: 90px;
    left: 18px;
    z-index: 100;
    padding: 14px 16px;
    color: var(--white);
    border: 1px solid var(--acid);
    background: var(--ink);
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero-bottom p {
    max-width: 190px;
    font-size: 13px;
  }

  .circle-link {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }

  .proof-number {
    font-size: 31px;
  }

  .price-row strong {
    font-size: 31px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-contact {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
