:root {
  --color-bg: #f2eadc;
  --color-surface: #fff9ee;
  --color-text: #2d231c;
  --color-text-muted: #65584d;
  --color-primary: #6b472f;
  --color-accent: #b88522;
  --color-dark: #2b241f;
  --color-line: #cdbda8;
  --color-soft: #e6d7c4;
  --color-white: #fffdf7;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --text-display: clamp(3rem, 8vw, 6.6rem);
  --text-h1: clamp(2.5rem, 6vw, 4.4rem);
  --text-h2: clamp(2rem, 4vw, 3.2rem);
  --text-h3: clamp(1.35rem, 2.2vw, 1.8rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 55px rgba(54, 38, 27, .12);
  --shadow-lift: 0 24px 70px rgba(54, 38, 27, .18);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-style: normal;
  line-height: 1;
}

i[data-lucide]::before {
  font-family: Georgia, serif;
  font-weight: 700;
}

i[data-lucide="menu"]::before {
  content: "☰";
  font-family: Arial, sans-serif;
}

i[data-lucide="arrow-down-right"]::before {
  content: "↘";
}

i[data-lucide="clock-3"]::before {
  content: "◷";
}

i[data-lucide="calendar-range"]::before {
  content: "□";
}

i[data-lucide="map-pinned"]::before {
  content: "⌾";
}

i[data-lucide="layers-3"]::before {
  content: "≋";
}

i[data-lucide="scan-search"]::before {
  content: "⌕";
}

i[data-lucide="fingerprint"]::before {
  content: "◎";
}

i[data-lucide="house-plug"]::before {
  content: "⌂";
}

i[data-lucide="move-horizontal"]::before {
  content: "↔";
}

i[data-lucide="search-check"]::before {
  content: "✓";
}

i[data-lucide="shield-check"]::before {
  content: "◇";
}

i[data-lucide="landmark"]::before {
  content: "⌑";
}

i[data-lucide="arrow-up-right"]::before {
  content: "↗";
}

i[data-lucide="plus"]::before {
  content: "+";
  font-family: Arial, sans-serif;
}

i[data-lucide="calendar-days"]::before {
  content: "◫";
}

i[data-lucide="arrow-up-left"]::before {
  content: "↖";
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(64px, 8vw, 112px) 0;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 234, 220, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107, 71, 47, .16);
}

.header-notice {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .92rem;
  font-weight: 600;
}

.site-nav a {
  transition: color .25s ease, transform .25s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(32, 24, 18, .88) 0%, rgba(32, 24, 18, .52) 56%, rgba(32, 24, 18, .16) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(64px, 8vw, 104px);
  color: var(--color-white);
}

.hero-content h1 {
  max-width: 900px;
  margin: 14px 0 24px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: var(--text-display);
  line-height: .94;
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 247, .88);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.eyebrow,
.kicker,
.chapter-label {
  margin: 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}

.eyebrow {
  color: #f2d28e;
}

.kicker,
.chapter-label {
  color: var(--color-primary);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.reading-note {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 253, 247, .74);
  font-size: .86rem;
}

.reading-note svg {
  width: 17px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 19px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-light {
  background: var(--color-white);
  color: var(--color-dark);
}

.button-dark {
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
}

.button-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}

.button-ghost {
  border-color: var(--color-line);
  background: transparent;
}

.hero-ruler {
  position: absolute;
  right: 30px;
  top: 120px;
  bottom: 32px;
  z-index: 3;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, .74);
  font-size: .67rem;
  letter-spacing: .12em;
}

.hero-ruler::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .7) 0 1px, transparent 1px 18px);
  opacity: .5;
}

.hero-ruler span {
  position: relative;
  padding-right: 18px;
}

.intro {
  background: var(--color-surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.section-mark {
  min-height: 200px;
  border-left: 1px solid var(--color-primary);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-mark span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-text-muted);
}

.section-mark strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2.5rem;
  color: var(--color-primary);
}

.intro-copy h2,
.section-heading h2,
.difference-copy h2,
.service-copy h2,
.faq-intro h2,
.story-chapter h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: var(--text-h2);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 12px 0 24px;
}

.intro-copy p:not(.kicker),
.section-heading>p,
.difference-copy p:not(.kicker),
.service-copy>p:not(.kicker),
.faq-intro>p:not(.kicker) {
  color: var(--color-text-muted);
  max-width: 740px;
}

.editor-note {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.editor-note::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -40px;
  bottom: -40px;
  border: 1px solid rgba(184, 133, 34, .7);
  border-radius: 50%;
}

.note-index {
  color: #e2ba68;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
}

.editor-note p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
}

.story {
  background: var(--color-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 44px minmax(0, 780px);
  justify-content: center;
  gap: 34px;
}

.story-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
}

.rail-dot {
  width: 11px;
  height: 11px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-bg);
}

.rail-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.rail-line {
  width: 1px;
  flex: 1;
  min-height: 170px;
  background: repeating-linear-gradient(to bottom, var(--color-primary) 0 4px, transparent 4px 10px);
  opacity: .55;
}

.story-chapter {
  padding: 6px 0 44px;
}

.story-chapter h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.022em;
  margin: 12px 0 24px;
}

.story-chapter p:not(.chapter-label) {
  font-size: 1.07rem;
  color: var(--color-text-muted);
}

.story-pull {
  margin: 4px 0 60px;
  padding: 30px 30px 30px 64px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  position: relative;
}

.pull-symbol {
  position: absolute;
  left: 24px;
  top: 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 3.8rem;
  color: #e2ba68;
  line-height: 1;
}

.story-pull p {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.35;
}

.story-image {
  margin: 4px 0 66px;
}

.media-frame {
  background: var(--color-soft);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-wide {
  aspect-ratio: 1000 / 503;
}

.story-image figcaption {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: .78rem;
}

.inspection-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin: 2px 0 68px;
}

.inspection-strip div {
  padding: 22px 18px;
  border-right: 1px solid var(--color-line);
}

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

.inspection-strip span {
  display: block;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.inspection-strip strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.finds {
  background: var(--color-dark);
  color: var(--color-white);
}

.finds .kicker {
  color: #e2ba68;
}

.finds .section-heading>p {
  color: rgba(255, 255, 255, .72);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 840px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.split-heading p {
  margin-bottom: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.photo-card {
  margin: 0;
  background: #3a3028;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.photo-card-large {
  grid-row: auto;
  position: relative;
}

.media-card {
  border-radius: 0;
  width: 100%;
}

.photo-card:nth-child(1) .media-card {
  aspect-ratio: 800 / 403;
}

.photo-card:nth-child(2) .media-card {
  aspect-ratio: 650 / 366;
}

.photo-card:nth-child(3) .media-card {
  aspect-ratio: 650 / 366;
}

.photo-card-large .media-card {
  height: auto;
  min-height: 0;
}

.photo-card figcaption,
.photo-card-large figcaption {
  position: static;
  padding: 19px 20px 21px;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: baseline;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}

.photo-card figcaption span {
  color: #e2ba68;
  font-size: .72rem;
  font-weight: 700;
}

.photo-card figcaption strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
}

.photo-card figcaption small {
  grid-column: 2;
  color: rgba(255, 255, 255, .68);
  margin-top: 5px;
  line-height: 1.5;
}

.features {
  background: var(--color-surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--color-surface);
  padding: 30px;
  min-height: 270px;
  position: relative;
  transition: background .25s ease, transform .25s ease;
}

.feature-card:hover {
  background: #f7eddb;
  z-index: 2;
}

.feature-card>svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-bottom: 50px;
}

.feature-card>span {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-accent);
}

.feature-card h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: var(--text-h3);
  margin: 0 0 12px;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .92rem;
}

.difference {
  background: #dfccb0;
}

.difference-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.compare-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: stretch;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.compare-side {
  padding: 34px;
}

.compare-side strong {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 14px 0 12px;
}

.compare-side p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: .92rem;
}

.compare-label {
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.compare-axis {
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.compare-axis span {
  width: 1px;
  height: 38px;
  background: var(--color-accent);
}

.compare-axis svg {
  width: 20px;
}

.process {
  background: var(--color-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  min-height: 300px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2.6rem;
  color: var(--color-accent);
  margin-bottom: auto;
}

.process-card h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.38rem;
  margin: 28px 0 10px;
}

.process-card p {
  color: var(--color-text-muted);
  font-size: .9rem;
  margin: 0;
}

.service {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, .055) 38px 39px);
  pointer-events: none;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.service .kicker {
  color: #f3d08c;
}

.service-copy h2 {
  color: var(--color-white);
}

.service-copy>p:not(.kicker) {
  color: rgba(255, 255, 255, .76);
}

.service-points {
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.service-points>div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.service-points svg {
  width: 22px;
  min-width: 22px;
  color: #f3d08c;
  margin-top: 2px;
}

.service-points strong,
.service-points small {
  display: block;
}

.service-points small {
  color: rgba(255, 255, 255, .66);
  margin-top: 3px;
  line-height: 1.5;
}

.lead-form {
  background: var(--color-surface);
  color: var(--color-text);
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.form-head {
  margin-bottom: 28px;
}

.form-head>span {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
}

.form-head h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2rem;
  margin: 8px 0 10px;
}

.form-head p {
  margin: 0;
  color: var(--color-text-muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: #fffdf8;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 71, 47, .1);
  outline: 0;
}

.check-row {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  font-size: .78rem !important;
  line-height: 1.5;
}

.check-row input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.check-row a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq {
  background: var(--color-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

.accordion {
  border-top: 1px solid var(--color-line);
}

.accordion-item {
  border-bottom: 1px solid var(--color-line);
}

.accordion-item button {
  width: 100%;
  min-height: 78px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
}

.accordion-item button svg {
  min-width: 22px;
  transition: transform .25s ease;
}

.accordion-item.open button svg {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 46px 24px 0;
  color: var(--color-text-muted);
}

.accordion-item.open .accordion-panel {
  max-height: 260px;
}

.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 66px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .55fr .85fr;
  gap: 52px;
}

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

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, .65);
}

.site-footer h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #e2ba68;
  margin: 0 0 14px;
}

.site-footer a,
.site-footer p {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 46px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
}

.footer-disclaimer p {
  max-width: 870px;
  font-size: .76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .56);
}

.footer-disclaimer span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .48);
  /* white-space: nowrap; */
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.legal-hero {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 72px 0 54px;
}

.legal-hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: var(--text-h1);
  line-height: 1;
  margin: 12px 0 14px;
  word-break: break-word;
}

.legal-hero p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.legal-main {
  background: var(--color-surface);
  padding: 72px 0 100px;
}

.legal-wrap {
  max-width: 880px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.legal-section {
  border-top: 1px solid var(--color-line);
  padding: 30px 0 10px;
}

.legal-section h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 16px;
  word-break: break-word;
}

.legal-section h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.3rem;
  margin: 26px 0 10px;
}

.legal-section p {
  color: var(--color-text-muted);
  margin: 0 0 14px;
}

.legal-contact {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 22px 0;
}

.legal-contact p {
  color: var(--color-text);
  margin: 4px 0;
}

.thanks-main {
  min-height: 70vh;
  background: var(--color-surface);
}

.thanks-hero {
  padding: 92px 0 60px;
  word-break: break-word;
}

.thanks-hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: var(--text-h1);
  line-height: 1.02;
  margin: 12px 0 20px;
  max-width: 820px;
}

.thanks-hero p {
  max-width: 700px;
  color: var(--color-text-muted);
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}

.thanks-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.thanks-card span {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2.2rem;
  color: var(--color-accent);
}

.thanks-card h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
  margin: 24px 0 10px;
}

.thanks-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: .9rem;
}

.thanks-note {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.thanks-note p {
  color: rgba(255, 255, 255, .74);
  margin: 8px 0 0;
  max-width: 680px;
  word-break: break-word;
}

.thanks-note h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  margin: 0;
  font-size: 1.8rem;
}

@media (max-width: 1023px) {
  :root {
    --shell: min(100% - 32px, 960px);
  }

  .intro-grid {
    grid-template-columns: 90px 1fr;
  }

  .editor-note {
    grid-column: 2;
  }

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

  .photo-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-card-large .media-card {
    min-height: 0;
    aspect-ratio: 800 / 403;
  }

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

  .difference-grid,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-disclaimer {
    grid-template-columns: 100%;
  }

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

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 24px, 720px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .site-nav {
    position: fixed;
    inset: 93px 12px auto;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
    padding: 18px;
    display: grid;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 11px 12px;
    min-height: 44px;
  }

  .nav-cta {
    border-radius: var(--radius-sm);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(32, 24, 18, .9) 0%, rgba(32, 24, 18, .5) 66%, rgba(32, 24, 18, .3) 100%);
  }

  .hero-ruler {
    display: none;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

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

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

  .section-mark {
    display: none;
  }

  .editor-note {
    grid-column: auto;
  }

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

  .story-rail {
    display: none;
  }

  .story-pull {
    padding: 28px 24px 28px 54px;
  }

  .inspection-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .inspection-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-line);
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

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

  .photo-card-large {
    grid-column: auto;
  }

  .photo-card:nth-child(1) .media-card,
  .photo-card-large .media-card {
    aspect-ratio: 800 / 403;
  }

  .photo-card:nth-child(2) .media-card,
  .photo-card:nth-child(3) .media-card {
    aspect-ratio: 650 / 366;
  }

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

  .compare-panel {
    grid-template-columns: 1fr;
  }

  .compare-axis {
    min-height: 66px;
    flex-direction: row;
  }

  .compare-axis span {
    width: 38px;
    height: 1px;
  }

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

  .process-card {
    min-height: 240px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .thanks-note {
    grid-template-columns: 100%;
  }
}

@media (max-width: 374px) {
  :root {
    --shell: min(100% - 18px, 350px);
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .inspection-strip {
    grid-template-columns: 1fr;
  }

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

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

.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 26px 30px;
  background: rgba(255, 249, 238, .98);
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.cookie-banner__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-soft);
  border: 1px solid rgba(184, 133, 34, .35);
  border-radius: 50%;
}

.cookie-banner__icon svg {
  width: 27px;
  height: 27px;
}

.cookie-banner__label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-banner__text h2 {
  margin: 0 0 6px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.cookie-banner__text p {
  max-width: 700px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: .84rem;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.cookie-banner__button--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-banner__button--primary:hover {
  background: var(--color-dark);
}

.cookie-banner__button--secondary {
  border-color: var(--color-line);
  background: transparent;
  color: var(--color-text);
}

.cookie-banner__button--secondary:hover {
  background: var(--color-soft);
}

@media (max-width: 1023px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner__inner {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .cookie-banner__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__icon {
    width: 46px;
    height: 46px;
  }

  .cookie-banner__text h2 {
    font-size: 1.35rem;
  }

  .cookie-banner__text p {
    font-size: .8rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-banner__button {
    width: 100%;
    padding-inline: 8px;
  }
}

@media (max-width: 460px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}