:root {
  --ink: #1a1a1b;
  --ink-soft: #625f5c;
  --muted: #8a8680;
  --bg: #fbf9f6;
  --paper: #ffffff;
  --paper-deep: #f2eee9;
  --primary: #8c2f23;
  --primary-dark: #5d1f17;
  --border: #d8d2cb;
  --shadow: 0 28px 80px rgba(26, 26, 27, 0.07);
  --max: 72rem;
  --px: clamp(20px, 4vw, 56px);
  --radius: 2px;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-ui: "Public Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  touch-action: manipulation;
  position: relative;
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 0% 0%, rgba(140, 47, 35, 0.07), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 10%, rgba(98, 95, 92, 0.05), transparent 45%);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.65;
}

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

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  margin-bottom: 0.65rem;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
}

.steps article h3,
.service-cards article h3 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

p {
  color: var(--ink-soft);
  margin-top: 0.85rem;
}

ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

li + li {
  margin-top: 0.45rem;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 249, 246, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--primary-dark);
}

.nav-link:focus-visible,
.header-cta:focus-visible,
.menu-btn:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--primary-dark);
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-btn {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-btn .icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px var(--px) 32px;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--paper-deep);
  }

  .header-cta {
    display: none;
  }

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

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.hero--masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) 0 clamp(52px, 8vw, 96px);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--primary);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.section-head--center {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.hero-copy .lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 500;
  max-width: 34rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero--masthead .hero-copy > p:not(.notice) {
  max-width: 38rem;
  font-size: 0.94rem;
  line-height: 1.68;
}

.hero--masthead .hero-copy > p:not(.notice) + p:not(.notice) {
  margin-top: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.75rem;
}

.notice {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--muted);
  max-width: 36rem;
}

.hero-media {
  position: relative;
}

.hero-visual {
  position: relative;
  padding: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--primary);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero-visual figure {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero-visual figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140, 47, 35, 0.09) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-caption {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-top: none;
  position: relative;
  z-index: 1;
}

.figcap {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.section {
  padding: clamp(56px, 9vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--paper-deep);
}

.section.ink {
  background: var(--ink);
  color: #f2eee9;
}

.section.ink h2,
.section.ink h3 {
  color: #fff;
}

.section.ink p,
.section.ink li {
  color: rgba(242, 238, 233, 0.82);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-process {
  background: var(--paper) !important;
}

.section-modules {
  background: linear-gradient(180deg, var(--bg) 0%, var(--paper-deep) 100%);
}

.section-cta-band {
  background: var(--ink);
  color: #f2eee9;
  border-bottom: none;
}

.section-cta-band h2,
.section-cta-band p {
  color: rgba(242, 238, 233, 0.92);
}

.section-cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.section-cta-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.steps {
  margin-top: 2.5rem;
  max-width: 44rem;
  margin-inline: auto;
  padding-left: 1.25rem;
  border-left: 2px solid var(--ink);
}

.steps article {
  position: relative;
  padding: 1.35rem 0 1.35rem 1.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.steps article:last-child {
  border-bottom: none;
}

.steps article::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 6px);
  top: 1.55rem;
  width: 11px;
  height: 11px;
  background: var(--primary);
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.steps article span.step-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.service-cards {
  margin-top: 2.5rem;
  counter-reset: svc;
}

@media (min-width: 880px) {
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-cards article {
    counter-increment: svc;
    display: grid;
    grid-template-columns: 2.75rem 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.35rem 2.25rem;
    align-items: start;
    padding: 1.65rem 0;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid var(--border);
  }

  .service-cards article::before {
    content: counter(svc, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.9;
    padding-top: 0.15rem;
  }

  .service-cards article h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .service-cards article p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }

  .service-cards article a {
    grid-column: 3;
    grid-row: 1 / -1;
    align-self: center;
    margin-top: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .service-cards a:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
}

@media (max-width: 879px) {
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-cards article {
    padding: 1.35rem 0 1.35rem 1rem;
    border: none;
    border-left: 3px solid var(--primary);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
  }

  .service-cards a {
    margin-top: 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
  }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}

.pillars article {
  padding: 1.25rem 1.25rem 1.25rem 1.35rem;
  border-left: 4px solid var(--primary);
  background: transparent;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.section-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 0.65rem;
  color: var(--ink-soft);
}

.check-list .icon {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-mini {
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

.faq-mini details {
  border: none;
  border-radius: 0;
  padding: 1rem 0;
  background: transparent;
  margin-top: 0;
  border-bottom: 1px solid var(--border);
}

.faq-mini summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 2rem;
}

.faq-grid article {
  border: none;
  border-radius: 0;
  padding: 1.35rem 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.faq-grid article h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 40px);
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }
}

.section-has-scope .scope-grid {
  gap: clamp(32px, 5vw, 48px);
}

.scope-block {
  padding-top: 0.35rem;
  border-top: 2px solid var(--ink);
}

.scope-block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.scope-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-block li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.55;
}

.scope-block li:last-child {
  border-bottom: none;
}

.scope-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.cta-band {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.section-cta-band .cta-band {
  max-width: 48rem;
}

.section-cta-band .btn-primary {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.section-cta-band .btn-primary:hover {
  background: var(--paper-deep);
  border-color: var(--paper-deep);
  color: var(--ink);
}

.stack-actions {
  margin-top: 1.5rem;
}

.stack-actions--lg {
  margin-top: 2rem;
}

.hero-actions.stack-actions--center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.lead-form {
  max-width: 560px;
  margin-top: 1.5rem;
  padding: 1.75rem 0;
  border: none;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.field__optional {
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #c0392b;
  background: #fdecea;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 1rem 0 1.25rem;
  line-height: 1.55;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #2d7a5f;
}

.form-status.is-error {
  color: #c0392b;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h2 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.site-footer .footer-brand {
  color: inherit;
  text-decoration: none;
}

.footer-grid > div > a {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 16px var(--px) 20px;
  background: rgba(26, 26, 27, 0.94);
  color: #f2eee9;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.cookie-banner__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  flex: 1 1 280px;
  margin: 0;
  color: rgba(242, 238, 233, 0.88);
  font-size: 0.88rem;
}

.cookie-banner a {
  color: #fff;
}

.btn-cookie {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.btn-cookie--primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-cookie + .btn-cookie {
  margin-left: 8px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-article {
  max-width: 52rem;
}

.legal-article h2 {
  margin-top: 2rem;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.photo-frame {
  position: relative;
  margin: 0;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.photo-frame--ribbon::after {
  inset: 8px;
}

.page-hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, var(--paper) 0%, var(--paper-deep) 55%, var(--paper) 100%);
}

.page-hero--rust {
  background: linear-gradient(115deg, #fffdfb 0%, #f6ebe8 48%, #fbf9f6 100%);
}

.page-hero--ink {
  background: linear-gradient(125deg, #fbf9f6 0%, #ebe4df 45%, #f7f4f1 100%);
}

.page-hero--slate {
  background: linear-gradient(118deg, #fdfcfa 0%, #ece8e4 50%, #faf7f4 100%);
}

.page-hero--oxide {
  background: linear-gradient(122deg, #fffaf8 0%, #f3e9e5 46%, #fbf9f6 100%);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 8vw, 96px);
}

@media (max-width: 960px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
  }
}

.page-hero__copy h1 {
  margin-top: 0.35rem;
}

.page-hero__visual {
  position: relative;
}

.page-hero__img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero--masthead {
  position: relative;
}

.page-hero--masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  pointer-events: none;
}

.page-hero--masthead .page-hero__media {
  position: relative;
}

.page-hero--masthead .page-hero__visual {
  position: relative;
  padding: 0;
}

.page-hero--masthead .page-hero__visual::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--primary);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.page-hero--masthead .page-hero__visual figure {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.page-hero--masthead .page-hero__visual figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140, 47, 35, 0.09) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.page-hero--masthead .page-hero__img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  display: block;
  position: relative;
  z-index: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.page-hero--masthead .page-hero__copy > p:not(.notice) {
  max-width: 38rem;
  font-size: 0.94rem;
  line-height: 1.68;
}

.page-hero--masthead .page-hero__copy > p:not(.notice) + p:not(.notice) {
  margin-top: 0.75rem;
}

.page-hero--masthead .hero-caption {
  border: 2px solid var(--ink);
  border-top: none;
}

.page-services .section-has-timeline .steps,
.page-about .section-has-timeline .steps {
  max-width: 52rem;
}

.page-about .pillars article,
.page-faq .pillars article,
.page-services .pillars article {
  border: none;
  border-radius: 0;
  border-left: 3px solid var(--primary);
  padding: 0.35rem 0 0.35rem 1.15rem;
  background: transparent;
}

.page-contact .contact-split__photo .hero-caption {
  border: 2px solid var(--ink);
  border-top: none;
}

.section-editorial {
  background: var(--paper);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

@media (max-width: 900px) {
  .editorial-split {
    grid-template-columns: 1fr;
  }
}

.editorial-split__copy h2 {
  margin-top: 0.25rem;
}

.section-media-ribbon {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--paper-deep);
}

.media-ribbon__img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.contact-split__img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-split__panel .lead-form {
  max-width: none;
  margin-top: 1rem;
}

.legal-ambient {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}

.legal-ambient__inner {
  max-height: 200px;
  overflow: hidden;
}

.legal-ambient__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.88;
  display: block;
}
