:root {
  color-scheme: light;
  --ink: #102033;
  --ink-heavy: #061421;
  --paper: #f4e6c8;
  --paper-light: #fff2d2;
  --paper-deep: #dec28e;
  --cream: #fff8e4;
  --navy: #0b2a42;
  --blue: #1f6a86;
  --red: #a72420;
  --red-dark: #6f1715;
  --teal: #236a64;
  --gold: #d69c37;
  --line: rgba(16, 32, 51, 0.22);
  --line-strong: rgba(16, 32, 51, 0.48);
  --shadow: 0 22px 58px rgba(6, 20, 33, 0.22);
  --max: 1180px;
  --wide: 1360px;
  --display: Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(167, 36, 32, 0.055), transparent 16%, transparent 84%, rgba(11, 42, 66, 0.06)),
    repeating-linear-gradient(0deg, rgba(16, 32, 51, 0.022) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(16, 32, 51, 0.018) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #edd4a2 0%, #fff4d7 22%, #f1dfb9 100%);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(6, 20, 33, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 62%, rgba(167, 36, 32, 0.075) 0 1px, transparent 1px);
  background-size: 21px 21px, 27px 27px;
  mix-blend-mode: multiply;
  opacity: 0.38;
}

body::after {
  background:
    linear-gradient(90deg, rgba(6, 20, 33, 0.14), transparent 9%, transparent 91%, rgba(6, 20, 33, 0.14)),
    linear-gradient(180deg, rgba(6, 20, 33, 0.12), transparent 18%, transparent 86%, rgba(6, 20, 33, 0.14));
  opacity: 0.62;
}

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

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 12px;
  border-bottom: 3px solid var(--ink-heavy);
  background:
    linear-gradient(90deg, rgba(167, 36, 32, 0.13), transparent 12%, transparent 88%, rgba(31, 106, 134, 0.14)),
    linear-gradient(180deg, rgba(255, 248, 228, 0.97), rgba(224, 197, 142, 0.95));
  box-shadow:
    inset 0 -5px 0 rgba(167, 36, 32, 0.12),
    0 14px 38px rgba(6, 20, 33, 0.16);
}

.site-header::before {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, var(--red) 0 42px, var(--gold) 42px 72px, var(--blue) 72px 118px, transparent 118px 130px);
  content: "";
  opacity: 0.72;
}

.brand,
.nav-links {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: clamp(18px, 4vw, 64px);
  text-decoration: none;
}

.brand-logo {
  width: clamp(108px, 13vw, 154px);
  height: auto;
  filter: drop-shadow(0 3px 0 rgba(255, 248, 228, 0.78)) drop-shadow(0 8px 14px rgba(6, 20, 33, 0.16));
}

.nav-links {
  display: flex;
  max-width: 780px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  color: var(--ink-heavy);
  font-size: 0.77rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: rgba(16, 32, 51, 0.35);
  background: rgba(255, 248, 228, 0.58);
  outline: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  padding: 34px 20px 42px;
  border-bottom: 3px solid var(--ink-heavy);
  background:
    linear-gradient(112deg, rgba(11, 42, 66, 0.97) 0 35%, rgba(11, 42, 66, 0.84) 35% 35.4%, transparent 35.4% 100%),
    repeating-linear-gradient(115deg, rgba(255, 248, 228, 0.12) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 248, 228, 0.18), rgba(255, 248, 228, 0.72)),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, transparent 0 58%, rgba(167, 36, 32, 0.12) 58% 59%, transparent 59% 100%),
    repeating-linear-gradient(90deg, rgba(6, 20, 33, 0.045) 0 1px, transparent 1px 58px);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--wide));
  min-height: clamp(610px, 76svh, 820px);
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding: clamp(20px, 3vw, 36px) 0;
  color: var(--cream);
}

.stamp {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 14px;
  transform: rotate(-2deg);
  border: 2px solid rgba(255, 248, 228, 0.86);
  border-radius: 4px;
  background: var(--red);
  box-shadow:
    4px 4px 0 rgba(6, 20, 33, 0.48),
    inset 0 0 0 2px rgba(255, 248, 228, 0.16);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 {
  max-width: 590px;
  color: var(--cream);
  font-size: clamp(3.1rem, 5.8vw, 5.45rem);
  text-shadow:
    0 3px 0 rgba(167, 36, 32, 0.88),
    0 8px 0 rgba(6, 20, 33, 0.42),
    0 18px 34px rgba(6, 20, 33, 0.36);
}

.hero-lede,
.section-heading p,
.method-copy p,
.roots-copy p,
.future-section p,
.contact-section p {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}

.hero-lede {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 248, 228, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 2px solid var(--ink-heavy);
  border-radius: 6px;
  box-shadow: 4px 4px 0 rgba(6, 20, 33, 0.22);
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.button svg,
.feature-card svg,
.contact-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button.primary {
  background: linear-gradient(180deg, #e9b349, var(--gold));
  color: var(--ink-heavy);
}

.button.secondary,
.button.outline {
  background: rgba(255, 248, 228, 0.12);
  color: var(--cream);
}

.button.outline {
  background: var(--cream);
  color: var(--ink-heavy);
}

.button:hover,
.button:focus-visible {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(6, 20, 33, 0.28);
  outline: none;
}

.hero-postcard {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(8px, 1.2vw, 12px);
  transform: rotate(1.1deg);
  border: 3px solid rgba(6, 20, 33, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.96), rgba(218, 185, 118, 0.96));
  box-shadow:
    14px 18px 0 rgba(167, 36, 32, 0.72),
    22px 28px 0 rgba(6, 20, 33, 0.82),
    var(--shadow);
}

.hero-postcard::before,
.hero-postcard::after {
  position: absolute;
  z-index: 2;
  width: clamp(82px, 10vw, 138px);
  height: 28px;
  transform: rotate(-13deg);
  border: 1px solid rgba(6, 20, 33, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.74), rgba(222, 194, 142, 0.72));
  box-shadow: 0 4px 10px rgba(6, 20, 33, 0.14);
  content: "";
}

.hero-postcard::before {
  top: -14px;
  left: clamp(24px, 5vw, 78px);
}

.hero-postcard::after {
  right: clamp(22px, 4vw, 66px);
  bottom: -14px;
}

.hero-postcard img {
  width: 100%;
  aspect-ratio: 1.798 / 1;
  border: 2px solid rgba(6, 20, 33, 0.54);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: inset 0 0 0 2px rgba(255, 248, 228, 0.5);
}

.marquee {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--wide));
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: -18px auto 0;
  transform: rotate(-0.35deg);
  border: 3px solid var(--ink-heavy);
  border-radius: 6px;
  background: var(--red);
  box-shadow: 8px 8px 0 rgba(6, 20, 33, 0.82);
  color: var(--cream);
  overflow: hidden;
}

.marquee span {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.3vw, 1.12rem);
  font-weight: 900;
  text-transform: uppercase;
}

.marquee span + span::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "*";
}

.poster-strip {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 44px auto 0;
  border-top: 3px double var(--line-strong);
  border-bottom: 3px double var(--line-strong);
}

.poster-strip div {
  min-height: 108px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.54), rgba(255, 248, 228, 0.22));
}

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

.poster-strip span,
.detail-board span,
.contact-row small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-strip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.04;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) 20px;
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.method-copy h2,
.roots-copy h2,
.future-section h2,
.contact-section h2,
.feedback-copy h1,
.feedback-panel h2 {
  color: var(--ink-heavy);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

.section-heading p,
.method-copy p,
.roots-copy p,
.future-section p,
.contact-section p,
.feedback-copy p {
  max-width: 760px;
  margin: 20px 0 0;
}

.pricing-section {
  width: min(100%, var(--wide));
}

.price-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.price-card {
  position: relative;
  min-height: 245px;
  padding: 26px 22px 24px;
  border: 3px solid var(--ink-heavy);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(16, 32, 51, 0.025) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, rgba(255, 248, 228, 0.92), rgba(224, 197, 142, 0.88));
  box-shadow:
    7px 7px 0 rgba(167, 36, 32, 0.72),
    12px 12px 0 rgba(6, 20, 33, 0.82);
}

.price-card:nth-child(even) {
  transform: rotate(0.65deg);
}

.price-card:nth-child(odd) {
  transform: rotate(-0.45deg);
}

.price-card span {
  display: block;
  min-height: 42px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 20px;
  font-family: var(--display);
  color: var(--ink-heavy);
  font-size: clamp(3.1rem, 5.4vw, 5.45rem);
  line-height: 0.88;
}

.price-card p {
  margin: 16px 0 0;
  color: rgba(16, 32, 51, 0.82);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dryer-card {
  background:
    repeating-linear-gradient(0deg, rgba(255, 248, 228, 0.055) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, rgba(11, 42, 66, 0.98), rgba(15, 61, 83, 0.96));
}

.dryer-card span,
.dryer-card strong,
.dryer-card p {
  color: var(--cream);
}

.dryer-card span {
  color: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 26px 22px 24px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.78), rgba(238, 212, 160, 0.7));
  box-shadow:
    inset 0 0 0 2px rgba(255, 248, 228, 0.48),
    6px 6px 0 rgba(16, 32, 51, 0.1);
}

.feature-card::after {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 28px, transparent 28px 40px, var(--blue) 40px 68px, transparent 68px 80px);
  content: "";
  opacity: 0.55;
}

.feature-card svg {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--red);
  stroke-width: 2.1;
}

.feature-card h3,
.steps h3,
.detail-board strong {
  margin: 0;
  font-family: var(--display);
  color: var(--ink-heavy);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.05;
}

.feature-card p,
.steps p,
.detail-board p,
.future-list li {
  margin: 15px 0 0;
  color: rgba(16, 32, 51, 0.82);
  font-size: 0.98rem;
  line-height: 1.56;
}

.method-section {
  display: grid;
  width: min(100%, var(--wide));
  grid-template-columns: minmax(300px, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 128px;
  align-self: start;
  padding-left: clamp(0px, 2vw, 28px);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  min-height: 142px;
  align-items: center;
  padding: 24px 24px 24px 0;
  border-top: 2px solid var(--line-strong);
}

.steps article:last-child {
  border-bottom: 2px solid var(--line-strong);
}

.steps span {
  display: inline-flex;
  width: 72px;
  height: 72px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
  border: 3px solid var(--ink-heavy);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 4px 4px 0 var(--red);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.image-band {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 54vw, 640px);
  margin: 0;
  border-top: 4px solid var(--ink-heavy);
  border-bottom: 4px solid var(--ink-heavy);
  overflow: hidden;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 33, 0.24), transparent 24%, transparent 76%, rgba(6, 20, 33, 0.16)),
    linear-gradient(180deg, rgba(6, 20, 33, 0.12), transparent 34%, rgba(6, 20, 33, 0.22));
  content: "";
  pointer-events: none;
}

.image-band img {
  width: 100%;
  height: clamp(360px, 54vw, 640px);
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: clamp(18px, 5vw, 70px);
  z-index: 1;
  min-width: min(420px, calc(100% - 36px));
  padding: 20px 24px 22px;
  transform: rotate(-1deg);
  border: 3px solid var(--cream);
  border-radius: 8px;
  background: rgba(111, 23, 21, 0.88);
  box-shadow: 8px 8px 0 rgba(6, 20, 33, 0.7);
  color: var(--cream);
}

.image-caption span {
  display: block;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.image-caption strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.92;
}

.roots-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.roots-copy p + p {
  margin-top: 18px;
}

.roots-aside {
  display: grid;
  gap: 26px;
}

.history-card {
  display: grid;
  gap: 1px;
  transform: rotate(-0.7deg);
  border: 3px solid var(--ink-heavy);
  border-radius: 8px;
  background: var(--ink-heavy);
  box-shadow:
    8px 8px 0 rgba(167, 36, 32, 0.72),
    14px 14px 0 rgba(6, 20, 33, 0.82);
  overflow: hidden;
}

.history-card div {
  padding: 22px 22px 20px;
  background:
    repeating-linear-gradient(0deg, rgba(16, 32, 51, 0.026) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 248, 228, 0.94), rgba(224, 197, 142, 0.9));
}

.history-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.history-card strong {
  display: block;
  font-family: var(--display);
  color: var(--ink-heavy);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.04;
}

.history-card p {
  margin: 12px 0 0;
  color: rgba(16, 32, 51, 0.82);
  line-height: 1.5;
}

.quote-panel {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  transform: rotate(1.2deg);
  border: 3px solid var(--ink-heavy);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 228, 0.9), rgba(221, 193, 132, 0.88));
  box-shadow:
    10px 10px 0 var(--teal),
    18px 18px 0 rgba(6, 20, 33, 0.88);
}

.quote-panel::before {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.55;
  content: "\201C";
}

.quote-panel p {
  margin: 0;
  font-family: var(--display);
  color: var(--ink-heavy);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.08;
}

.details-section {
  width: min(100%, var(--wide));
}

.detail-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 3px solid var(--ink-heavy);
  border-radius: 8px;
  background: var(--ink-heavy);
  box-shadow: 10px 10px 0 rgba(167, 36, 32, 0.76);
  overflow: hidden;
}

.detail-board div {
  min-height: 190px;
  padding: 26px 24px;
  background:
    repeating-linear-gradient(0deg, rgba(16, 32, 51, 0.025) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #fff6da, #ead2a0);
}

.future-section {
  display: grid;
  width: min(100%, var(--wide));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(46px, 7vw, 82px);
  padding-top: clamp(60px, 8vw, 90px);
  padding-bottom: clamp(60px, 8vw, 90px);
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
  background:
    linear-gradient(110deg, rgba(11, 42, 66, 0.98), rgba(15, 61, 83, 0.96)),
    var(--navy);
  box-shadow:
    inset 0 0 0 3px rgba(6, 20, 33, 0.72),
    0 20px 48px rgba(6, 20, 33, 0.22);
  color: var(--cream);
}

.future-section h2,
.future-section p,
.future-section .eyebrow,
.future-list li {
  color: var(--cream);
}

.future-section .eyebrow {
  color: var(--gold);
}

.future-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.future-list li {
  position: relative;
  min-height: 72px;
  padding: 19px 20px 18px 54px;
  border: 2px solid rgba(255, 248, 228, 0.42);
  border-radius: 8px;
  background: rgba(255, 248, 228, 0.08);
}

.future-list li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border: 2px solid var(--gold);
  background: var(--red);
  content: "";
}

.feedback-main {
  min-height: calc(100svh - 110px);
  background:
    linear-gradient(112deg, rgba(11, 42, 66, 0.98), rgba(11, 42, 66, 0.82) 48%, transparent 48%),
    repeating-linear-gradient(115deg, rgba(255, 248, 228, 0.1) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255, 248, 228, 0.2), rgba(255, 248, 228, 0.74)),
    var(--paper);
}

.feedback-hero {
  display: grid;
  width: min(100%, var(--wide));
  min-height: calc(100svh - 196px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.feedback-copy {
  max-width: 760px;
  color: var(--cream);
}

.feedback-copy .eyebrow {
  color: var(--gold);
}

.feedback-copy h1 {
  color: var(--cream);
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.94;
  text-shadow:
    0 3px 0 rgba(167, 36, 32, 0.88),
    0 8px 0 rgba(6, 20, 33, 0.42);
}

.feedback-copy p {
  color: rgba(255, 248, 228, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}

.feedback-panel {
  transform: rotate(1deg);
  padding: clamp(28px, 4vw, 42px);
  border: 3px solid var(--ink-heavy);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(16, 32, 51, 0.026) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(255, 248, 228, 0.95), rgba(224, 197, 142, 0.9));
  box-shadow:
    9px 9px 0 rgba(167, 36, 32, 0.72),
    16px 16px 0 rgba(6, 20, 33, 0.82);
}

.feedback-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
}

.feedback-panel ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feedback-panel li {
  position: relative;
  padding-left: 32px;
  color: rgba(16, 32, 51, 0.84);
  font-size: 1.02rem;
  line-height: 1.5;
}

.feedback-panel li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border: 2px solid var(--ink-heavy);
  background: var(--red);
  content: "";
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding-top: 0;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 248, 228, 0.62);
  color: var(--ink-heavy);
  text-decoration: none;
}

.contact-row svg {
  color: var(--red);
}

.contact-row strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.08;
}

.contact-row:hover,
.contact-row:focus-visible {
  border-color: var(--red);
  background: rgba(255, 248, 228, 0.88);
  outline: none;
}

.site-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 20px;
  border-top: 4px solid var(--ink-heavy);
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 228, 0.08) 0 1px, transparent 1px 28px),
    var(--ink-heavy);
  color: var(--cream);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero-inner,
  .method-section,
  .roots-section,
  .future-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(11, 42, 66, 0.98) 0 56%, transparent 56% 100%),
      repeating-linear-gradient(115deg, rgba(255, 248, 228, 0.12) 0 1px, transparent 1px 34px),
      linear-gradient(180deg, rgba(255, 248, 228, 0.16), rgba(255, 248, 228, 0.72)),
      var(--paper);
  }

  .hero-inner {
    min-height: 0;
    gap: 44px;
    padding-top: 24px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-postcard {
    max-width: 920px;
    margin: 0 auto;
  }

  .feature-grid,
  .price-board,
  .poster-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 235px;
  }

  .method-copy {
    position: static;
    padding-left: 0;
  }

  .detail-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feedback-main {
    background:
      linear-gradient(180deg, rgba(11, 42, 66, 0.98) 0 56%, transparent 56% 100%),
      repeating-linear-gradient(115deg, rgba(255, 248, 228, 0.1) 0 1px, transparent 1px 34px),
      linear-gradient(180deg, rgba(255, 248, 228, 0.16), rgba(255, 248, 228, 0.72)),
      var(--paper);
  }
}

@media (min-width: 1081px) {
  .hero-copy::before {
    position: absolute;
    inset: -46px -38px -46px -120vw;
    z-index: -1;
    transform: skewX(-13deg);
    transform-origin: right center;
    border-right: 6px solid rgba(214, 156, 55, 0.42);
    background:
      linear-gradient(90deg, rgba(6, 20, 33, 0.98), rgba(11, 42, 66, 0.96));
    box-shadow: 14px 0 0 rgba(167, 36, 32, 0.2);
    content: "";
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 82px;
    padding: 8px 12px 13px;
  }

  .brand {
    margin-right: 0;
  }

  .brand-logo {
    width: 98px;
  }

  .nav-links {
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 3px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 8px 7px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 0;
    padding: 24px 14px 34px;
  }

  .hero-inner {
    gap: 34px;
  }

  .stamp {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.6vw, 3.8rem);
  }

  .hero-postcard {
    transform: rotate(0.45deg);
    box-shadow:
      7px 9px 0 rgba(167, 36, 32, 0.72),
      12px 15px 0 rgba(6, 20, 33, 0.82),
      0 14px 34px rgba(6, 20, 33, 0.2);
  }

  .marquee {
    margin-top: 20px;
    transform: none;
    box-shadow: 5px 5px 0 rgba(6, 20, 33, 0.82);
  }

  .marquee span {
    flex: 1 1 50%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.85rem;
    text-align: center;
  }

  .marquee span + span::before {
    content: "";
  }

  .poster-strip {
    width: calc(100% - 28px);
    margin-top: 32px;
  }

  .poster-strip div:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding: 64px 14px;
    scroll-margin-top: 96px;
  }

  .feature-grid,
  .price-board,
  .detail-board,
  .poster-strip {
    grid-template-columns: 1fr;
  }

  .poster-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .poster-strip div:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .detail-board div {
    min-height: 0;
  }

  .steps article {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    padding-right: 0;
  }

  .steps span {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .image-band,
  .image-band img {
    min-height: 330px;
    height: 330px;
  }

  .image-band img {
    object-position: 42% center;
  }

  .image-caption {
    right: 14px;
    bottom: 16px;
    min-width: 0;
    width: calc(100% - 28px);
    padding: 17px 18px;
    transform: rotate(-0.5deg);
  }

  .quote-panel {
    transform: none;
    box-shadow:
      7px 7px 0 var(--teal),
      12px 12px 0 rgba(6, 20, 33, 0.88);
  }

  .history-card {
    transform: none;
    box-shadow:
      6px 6px 0 rgba(167, 36, 32, 0.72),
      10px 10px 0 rgba(6, 20, 33, 0.82);
  }

  .price-card,
  .price-card:nth-child(even),
  .price-card:nth-child(odd),
  .feedback-panel {
    transform: none;
  }

  .future-section {
    width: 100%;
    margin-bottom: 54px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: relative;
    flex-direction: column;
    min-height: 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 4px);
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 11.6vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .marquee span {
    flex-basis: 50%;
    font-size: 0.8rem;
  }

  .marquee span:last-child {
    flex-basis: 100%;
  }

  .marquee span:first-child {
    flex-basis: 100%;
  }

  .section-heading h2,
  .method-copy h2,
  .roots-copy h2,
  .future-section h2,
  .contact-section h2,
  .feedback-copy h1,
  .feedback-panel h2 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .contact-row {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 15px 14px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
