:root {
  --ink: #0a0a09;
  --ink-soft: #11110f;
  --panel: #171613;
  --panel-raised: #1e1c18;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --paper: #f0ece2;
  --paper-muted: #b8b1a3;
  --accent: #c74b35;
  --accent-bright: #e06549;
  --brass: #c9a56a;
  --success: #8fbf87;
  --error: #ff9b88;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --content: 1180px;
  --radius: 4px;
  --header-height: 78px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% -10%, rgba(199, 75, 53, 0.1), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  color: #fff;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 7.5vw, 7rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.lead {
  max-width: 62ch;
  color: var(--paper-muted);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.65;
}

.text-accent {
  color: var(--accent-bright);
  font-style: italic;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--tight {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.section--paper {
  color: #20201d;
  background: var(--paper);
}

.section--paper .eyebrow {
  color: #9b3b2b;
}

.section--paper .lead,
.section--paper .muted {
  color: #5c584f;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.18));
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  border-color: var(--line);
  background: rgba(10, 10, 9, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(15px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: rotate(45deg);
}

.brand-mark span {
  transform: rotate(-45deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: var(--paper-muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav-link {
  position: relative;
  padding-block: 0.5rem;
  color: #d5d0c5;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--accent-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 92svh);
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.68) 38%, rgba(8, 8, 7, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.72) 0%, transparent 42%);
  content: "";
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: center;
  animation: slow-in 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding-block: calc(var(--header-height) + 5rem) clamp(5rem, 10vw, 8rem);
}

.hero .lead {
  max-width: 53ch;
  margin-bottom: 2rem;
  color: #d3cec4;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  color: #fff;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(10, 10, 9, 0.2);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: #292822;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 30px;
  height: 1px;
  background: var(--accent-bright);
  content: "";
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e0e0c;
}

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

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.45rem clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item svg {
  width: 28px;
  color: var(--brass);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

.trust-item span {
  color: var(--paper-muted);
  font-size: 0.78rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  transition: background 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0;
  height: 4px;
  background: var(--accent);
  content: "";
  transition: width 260ms ease;
}

.service-card:hover {
  background: var(--panel);
}

.service-card:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.service-card-number {
  color: var(--accent-bright);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.service-card-icon {
  width: 56px;
  margin: clamp(4rem, 8vw, 7rem) 0 1.5rem;
  color: var(--brass);
}

.service-card p {
  max-width: 33ch;
  color: var(--paper-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.section--paper .text-link {
  color: #25241f;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.split--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: -18px;
  width: 92px;
  height: 92px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  content: "";
}

.split-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy p:not(.eyebrow) {
  color: var(--paper-muted);
}

.split-copy .button-row {
  margin-top: 2rem;
}

.feature-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.feature-list svg {
  width: 18px;
  margin-top: 0.25rem;
  color: var(--accent-bright);
}

.section--paper .feature-list {
  border-color: rgba(0, 0, 0, 0.13);
}

.section--paper .feature-list li {
  border-color: rgba(0, 0, 0, 0.13);
}

.quote-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.quote-band::before {
  position: absolute;
  top: -3rem;
  right: 4vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: min(32vw, 25rem);
  line-height: 1;
  content: "&";
}

.quote-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.quote-kicker {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-band blockquote {
  max-width: 21ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.cta-band {
  color: var(--paper);
  background: var(--accent);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.cta-inner h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.25rem);
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.cta-contact a {
  color: #fff;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(700px, 78svh);
  align-items: end;
  overflow: hidden;
  background: var(--panel);
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.93) 0%, rgba(8, 8, 7, 0.64) 40%, rgba(8, 8, 7, 0.14) 74%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.76) 0%, transparent 45%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: calc(var(--header-height) + 5rem) clamp(4rem, 8vw, 6.5rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.6vw, 6rem);
}

.page-hero .lead {
  max-width: 54ch;
  color: #d3cec4;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.43fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.content-main h2 {
  margin-top: 4rem;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main h3 {
  margin-top: 2.2rem;
}

.content-main p,
.content-main li {
  color: var(--paper-muted);
}

.content-main ul:not(.feature-list) {
  padding-left: 1.25rem;
}

.content-main a {
  color: #fff;
}

.content-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.aside-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background: var(--panel);
}

.aside-card + .aside-card {
  margin-top: 1rem;
}

.aside-card h3 {
  font-size: 1.7rem;
}

.aside-card p {
  color: var(--paper-muted);
  font-size: 0.93rem;
}

.aside-card .button {
  width: 100%;
  margin-top: 0.6rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 250px;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step span {
  color: var(--accent-bright);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.process-step h3 {
  margin-top: 3.6rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: 0.94rem;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-list li {
  padding: 1.6rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  text-align: center;
}

.catalog-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(120deg, rgba(199, 75, 53, 0.1), transparent 48%),
    #e5dfd1;
  overflow: hidden;
}

.catalog-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(155, 59, 43, 0.25);
  content: "";
  transform: rotate(45deg);
}

.catalog-card h2 {
  max-width: 13ch;
}

.catalog-card p {
  max-width: 57ch;
  color: #5c584f;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.contact-list svg {
  width: 21px;
  margin-top: 0.15rem;
  color: var(--brass);
}

.contact-list strong,
.contact-list span,
.contact-list a {
  display: block;
}

.contact-list strong {
  margin-bottom: 0.1rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--paper-muted);
  text-decoration: none;
}

.contact-list a:hover {
  color: #fff;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.consent label {
  color: #dfdad0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: #fff;
  background: #0e0e0c;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0.75rem 0.9rem;
}

.field select {
  appearance: none;
  padding-right: 2.7rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.field select option {
  color: #fff;
  background: var(--panel);
}

.field textarea {
  min-height: 180px;
  padding: 0.9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.13);
  outline: 0;
}

.field small {
  color: var(--paper-muted);
  font-size: 0.73rem;
}

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

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-block: 1.4rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.consent a {
  color: #fff;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--paper-muted);
  font-size: 0.75rem;
}

.form-status {
  display: none;
  margin-bottom: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  border-color: rgba(143, 191, 135, 0.5);
  color: var(--success);
  background: rgba(143, 191, 135, 0.08);
}

.form-status--error {
  border-color: rgba(255, 155, 136, 0.45);
  color: var(--error);
  background: rgba(255, 155, 136, 0.08);
}

.legal-page {
  min-height: 70vh;
  padding-block: calc(var(--header-height) + 5rem) clamp(5rem, 10vw, 9rem);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 3.4rem;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
}

.legal-content h3 {
  margin-top: 2.2rem;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--paper-muted);
}

.legal-content a {
  color: #fff;
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
  border-top: 1px solid var(--line);
  background: #080807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-intro p {
  max-width: 38ch;
  margin-top: 1.4rem;
  color: var(--paper-muted);
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: var(--paper-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #7f7a70;
  font-size: 0.74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes slow-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1030px) {
  .nav-toggle {
    display: block;
  }

  .nav-shell > .brand {
    position: relative;
    z-index: 101;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    min-height: 100svh;
    height: 100dvh;
    padding: calc(var(--header-height) + clamp(1.5rem, 7vh, 4.5rem)) max(24px, 8vw) max(2.5rem, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ink);
    opacity: 0;
    touch-action: pan-y;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    z-index: 90;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-link {
    flex: 0 0 auto;
    font-family: var(--display);
    font-size: clamp(1.75rem, 3.8vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .site-nav .nav-cta {
    margin-top: 1.4rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 101;
  }

  body.nav-open .site-header {
    border-bottom-color: var(--line);
    background: var(--ink);
    box-shadow: none;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .split {
    gap: 3rem;
  }
}

@media (min-width: 560px) and (max-width: 1030px) and (max-height: 560px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0.2rem clamp(1.5rem, 6vw, 4rem);
    padding-top: calc(var(--header-height) + 0.85rem);
  }

  .site-nav .nav-link {
    width: max-content;
    max-width: 100%;
    padding-block: 0.35rem;
    font-size: clamp(1.45rem, 4vw, 2rem);
  }

  .site-nav .nav-cta {
    width: max-content;
    margin-top: 0.65rem;
  }
}

@media (max-width: 559px) and (max-height: 650px) {
  .site-nav {
    gap: 0.15rem;
    padding-top: calc(var(--header-height) + 1rem);
  }

  .site-nav .nav-link {
    padding-block: 0.38rem;
    font-size: 1.6rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.8rem;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--content));
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 830px;
    align-items: end;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.76), rgba(8, 8, 7, 0.18)),
      linear-gradient(0deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.42) 65%, rgba(8, 8, 7, 0.16) 100%);
  }

  .hero-media {
    object-position: 67% center;
  }

  .hero-content {
    padding-bottom: 5.5rem;
  }

  .hero-note {
    display: none;
  }

  .trust-grid,
  .section-heading,
  .split,
  .quote-inner,
  .content-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    gap: 1.2rem;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 330px;
  }

  .service-card-icon {
    margin-top: 3.5rem;
  }

  .split-media,
  .split--reverse .split-media {
    order: -1;
  }

  .split-media img {
    min-height: 360px;
  }

  .quote-inner {
    gap: 1rem;
  }

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

  .cta-contact {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 700px;
  }

  .page-hero-media {
    object-position: 62% center;
  }

  .content-aside {
    position: static;
  }

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

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

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-copy strong {
    font-size: 1rem;
  }

  .hero-actions,
  .button-row,
  .cta-contact {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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

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

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

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .button,
  .skip-link {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .legal-page {
    padding: 0;
  }

  .legal-content p,
  .legal-content li {
    color: #222;
  }
}
