:root {
  --ink: #171714;
  --ink-soft: #2a2924;
  --paper: #f5f2eb;
  --paper-deep: #eae4d8;
  --white: #fffdf8;
  --gold: #d4a33e;
  --gold-deep: #875700;
  --line: rgba(23, 23, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
  --radius: 2px;
  --shadow: 0 22px 70px rgba(19, 16, 10, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 23, 20, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.brand small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.57rem;
  letter-spacing: 0.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: #171714;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 15px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #e0b65f;
  background: #e0b65f;
}

.button-small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 0.69rem;
}

.header-cta-short {
  display: none;
}

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

.button-light:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.text-link-light {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 78px));
  overflow: hidden;
  background: #27251f;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.93) 0%, rgba(12, 12, 10, 0.76) 48%, rgba(12, 12, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(12, 12, 10, 0.54) 0%, transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(780px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 260px;
  padding-block: 88px;
}

.hero-copy {
  min-width: 0;
  max-width: 820px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.hero-card {
  align-self: end;
  margin-bottom: 12px;
  border-top: 1px solid var(--gold);
  background: rgba(16, 16, 14, 0.66);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.hero-card-number {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 0.9;
}

.hero-card strong {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card p {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-card a {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.proof {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.proof-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  min-height: 118px;
  align-content: center;
  border-left: 1px solid var(--line);
  padding: 22px 26px;
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid span {
  grid-row: 1 / 3;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.proof-grid strong {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.proof-grid small {
  color: #68645a;
  font-size: 0.76rem;
}

.section {
  padding-block: clamp(84px, 10vw, 140px);
}

.split-heading,
.section-heading,
.area-heading {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.split-heading h2,
.section-heading h2,
.area-heading h2,
.brief h2,
.company h2,
.faq h2,
.closing h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.intro-copy {
  align-self: end;
  max-width: 560px;
}

.intro-copy p,
.section-heading > p,
.area-heading > div:last-child > p,
.brief-lead,
.company-copy > p {
  color: #555147;
  font-size: 1.02rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy .text-link,
.area-heading .text-link {
  margin-top: 15px;
}

.services {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  max-width: 510px;
  margin: 0;
}

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

.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 36px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card > span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 38px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-card p {
  margin: 0 0 28px;
  color: #5e5a50;
  font-size: 0.9rem;
}

.service-card strong {
  margin-top: auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card:hover {
  z-index: 1;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-5px);
}

.service-card:hover p,
.service-card:hover > span {
  color: var(--gold);
}

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

.process::after {
  position: absolute;
  right: -0.05em;
  bottom: -0.35em;
  color: rgba(255, 255, 255, 0.026);
  content: "BYG";
  font-family: var(--display);
  font-size: min(34vw, 460px);
  line-height: 1;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-heading {
  max-width: 720px;
}

.process-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.process-heading > p:last-child {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  display: grid;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  align-items: start;
  gap: 28px;
  grid-template-columns: 82px 1fr;
  border-bottom: 1px solid var(--line-light);
  padding-block: 30px;
}

.process-list li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.process-list p {
  max-width: 660px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.process-cta {
  margin-top: 42px;
}

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

.brief-grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
}

.brief h2 {
  max-width: 690px;
}

.brief-lead {
  max-width: 630px;
  margin: 28px 0 0;
}

.copy-button {
  margin-top: 25px;
}

.copy-status {
  min-height: 1.6em;
  margin: 10px 0 0;
  color: #385d22;
  font-size: 0.82rem;
  font-weight: 750;
}

.template-card {
  position: relative;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}

.template-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.template-card p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-block: 13px;
  font-size: 0.86rem;
}

.template-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.area-heading {
  align-items: end;
}

.municipality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.municipality-list li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: #413f38;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 14px;
}

.company {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.company-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
  grid-template-columns: 0.72fr 1.28fr;
}

.company-mark {
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--gold);
}

.company-mark span {
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 12rem);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.company-mark small {
  margin-top: 28px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.48em;
}

.company-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
}

.company-facts {
  display: grid;
  margin: 40px 0;
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(140px, 0.8fr) 1.2fr;
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}

.company-facts dt {
  color: #6a665d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr auto;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.28rem;
  list-style: none;
  padding-block: 22px;
}

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

.faq summary span {
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin: -4px 0 24px;
  color: #5b574e;
  font-size: 0.94rem;
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(90px, 12vw, 160px);
}

.closing::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 163, 62, 0.18), transparent 34%),
    linear-gradient(135deg, transparent 0 70%, rgba(255, 255, 255, 0.025) 70% 100%);
  content: "";
}

.closing-inner {
  position: relative;
}

.closing h2 {
  max-width: 900px;
}

.closing-inner > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.closing-inner > small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

.site-footer {
  background: #0f0f0d;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 70px 30px;
}

.footer-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 430px;
}

.footer-brand img {
  flex: 0 0 60px;
  width: 60px;
}

.footer-brand p {
  margin: 5px 0 0;
  font-size: 0.86rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-underline-offset: 3px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .hero-inner {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 220px;
  }

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

  .proof-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .split-heading,
  .section-heading,
  .area-heading,
  .brief-grid,
  .company-grid,
  .faq-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

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

  .company-mark {
    width: min(440px, 100%);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: calc(67px + env(safe-area-inset-bottom));
  }

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

  .site-header {
    background: rgba(23, 23, 20, 0.97);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.85rem;
  }

  .brand small {
    display: none;
  }

  .header-inner > .button {
    flex: 0 0 auto;
    min-height: 40px;
    max-width: none;
    padding: 10px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 12, 10, 0.92) 0%, rgba(12, 12, 10, 0.54) 100%),
      linear-gradient(0deg, rgba(12, 12, 10, 0.86) 0%, transparent 62%);
  }

  .hero-inner {
    align-content: start;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 56px 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.8vw, 3.8rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero h1 br {
    display: block;
  }

  .hero h1 em {
    display: block;
    margin-top: 0.12em;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    gap: 18px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-card {
    display: grid;
    align-items: center;
    gap: 0 18px;
    grid-template-columns: auto 1fr;
    margin: 0;
    padding: 18px 20px;
  }

  .hero-card-number {
    grid-row: 1 / 3;
    font-size: 3.4rem;
  }

  .hero-card p,
  .hero-card a {
    display: none;
  }

  .proof-grid > div {
    min-height: 104px;
    gap: 0 9px;
    padding: 17px 12px;
  }

  .proof-grid span {
    font-size: 1.25rem;
  }

  .proof-grid strong,
  .proof-grid small {
    font-size: 0.66rem;
  }

  .section {
    padding-block: 78px;
  }

  .split-heading h2,
  .section-heading h2,
  .area-heading h2,
  .brief h2,
  .company h2,
  .faq h2,
  .closing h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

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

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

  .service-card {
    min-height: 270px;
    padding: 28px;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .process-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .process-list {
    margin-top: 52px;
  }

  .process-list li {
    gap: 14px;
    grid-template-columns: 50px 1fr;
  }

  .process-list li > span {
    font-size: 1.55rem;
  }

  .process-list h3 {
    font-size: 1.35rem;
  }

  .brief-grid {
    gap: 38px;
  }

  .template-card {
    padding: 26px 22px;
  }

  .municipality-list {
    gap: 7px;
    margin-top: 38px;
  }

  .municipality-list li {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .company-facts > div {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .faq summary {
    font-size: 1.12rem;
  }

  .closing-actions {
    align-items: stretch;
    gap: 20px;
  }

  .closing-actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    margin-top: 44px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(58px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--gold);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.2);
    color: var(--ink);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner > .button {
    max-width: none;
    padding-inline: 10px;
    font-size: 0.58rem;
  }

  .brand {
    gap: 7px;
  }

  .brand strong {
    letter-spacing: 0.14em;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 2.65rem);
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .proof-grid strong,
  .proof-grid small {
    font-size: 0.61rem;
  }
}

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

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

@media print {
  .site-header,
  .hero-media,
  .hero-shade,
  .mobile-cta,
  .copy-button,
  .site-footer {
    display: none !important;
  }

  body,
  .hero,
  .process,
  .closing {
    background: #fff;
    color: #000;
  }

  .hero *,
  .process *,
  .closing * {
    color: #000 !important;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .section,
  .hero-inner,
  .closing {
    padding-block: 28px;
  }
}
