:root {
  --paper: #f4efe6;
  --paper-deep: #e8e0d2;
  --cream: #fffaf2;
  --ink: #1c1712;
  --ink-soft: #3f352b;
  --muted: #5c5146;
  --line: #d3c7b4;
  --pine: #24382e;
  --pine-mid: #315043;
  --copper: #a94422;
  --copper-deep: #863318;
  --focus: #1d4f8a;
  --shadow: 0 18px 50px rgba(28, 23, 18, 0.08);
  --radius: 22px;
  --header-h: 5.5rem;
  --content: 1520px;
  --page-pad: 4rem;
  --font-body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --step: 1;
  --space: 1.15rem;
}

html[data-font="large"] { --step: 1.12; }
html[data-font="xlarge"] { --step: 1.26; }

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: calc(1.125rem * var(--step));
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 250, 242, 0.9), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(49, 80, 67, 0.08), transparent 28%),
    var(--paper);
  padding-bottom: 0;
}

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

a {
  color: var(--copper-deep);
}

a:hover {
  color: var(--copper);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

body:has(.hero) .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(14, 11, 8, 0.55), rgba(14, 11, 8, 0.08));
  border-bottom-color: transparent;
}

body:has(.hero) .site-header .brand,
body:has(.hero) .site-header .nav a {
  color: #fffaf2;
}

body:has(.hero) .site-header .brand-text span,
body:has(.hero) .site-header .nav a {
  color: #efe7dc;
}

body:has(.hero) .site-header .nav a:hover,
body:has(.hero) .site-header .nav a:focus-visible {
  color: #fffaf2;
  border-bottom-color: #e8b48a;
}

body:has(.hero) .site-header .font-controls {
  border-color: rgba(255, 250, 242, 0.35);
  background: rgba(255, 250, 242, 0.12);
}

body:has(.hero) .site-header .font-controls button {
  color: #fffaf2;
}

body:has(.hero) .site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.94);
  border-bottom-color: var(--line);
}

body:has(.hero) .site-header.is-scrolled .brand,
body:has(.hero) .site-header.is-scrolled .nav a,
body:has(.hero) .site-header.is-scrolled .font-controls button {
  color: var(--ink);
}

body:has(.hero) .site-header.is-scrolled .brand-text span,
body:has(.hero) .site-header.is-scrolled .nav a {
  color: var(--muted);
}

body:has(.hero) .site-header.is-scrolled .nav a:hover,
body:has(.hero) .site-header.is-scrolled .nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--copper);
}

body:has(.hero) .site-header.is-scrolled .font-controls {
  border-color: var(--line);
  background: var(--cream);
}

.section,
.trust,
.site-footer .footer-inner {
  width: min(var(--content), calc(100% - var(--page-pad)));
  margin-inline: auto;
}

.header-inner {
  width: min(1760px, calc(100% - 4rem));
  margin-inline: auto;
  min-height: 6.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: calc(1.15rem * var(--step));
  font-weight: 600;
}

.brand-text span {
  color: var(--muted);
  font-size: calc(0.92rem * var(--step));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  padding: 0.55rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--copper);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.font-controls {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}

.font-controls button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  min-width: 2.6rem;
  min-height: 2.6rem;
  cursor: pointer;
}

.font-controls button[aria-pressed="true"] {
  background: var(--pine);
  color: var(--cream);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  min-height: 3.3rem;
  white-space: nowrap;
}

.phone-pill .pill-short {
  display: none;
}

.phone-pill:hover {
  background: var(--copper-deep);
  color: #fff;
}

.phone-pill-label {
  font-size: calc(0.78rem * var(--step));
  opacity: 0.9;
}

.phone-pill-number {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #1c1712;
}

.hero-frame picture {
  display: contents;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 62% 28%;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 11, 8, 0.78) 0%, rgba(14, 11, 8, 0.4) 46%, rgba(14, 11, 8, 0.22) 72%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.12) 35%, rgba(14, 11, 8, 0.55) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 7.5rem 5vw 3.2rem;
  pointer-events: none;
  color: #fffaf2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-panel,
.orient {
  pointer-events: auto;
  background: none;
  border: 0;
  box-shadow: none;
}

.hero-panel {
  max-width: 36rem;
}

.hero-panel .eyebrow {
  color: #f0d7b4;
}

.hero-panel h1,
.orient h2 {
  color: #fffaf2;
}

.hero-panel .lead,
.orient-list {
  color: #f4efe6;
}

.hero-panel h1 {
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
}

.hero-panel .lead {
  margin: 0;
  font-size: calc(1.12rem * var(--step));
}

.hero-actions {
  margin: 1.35rem 0 0;
}

.hero-actions .btn {
  text-shadow: none;
}

.hero-panel .btn-ghost {
  color: #fffaf2;
  border-color: #fffaf2;
}

.hero-panel .btn-ghost:hover {
  background: #fffaf2;
  color: var(--ink);
}

.orient {
  align-self: flex-end;
  width: min(22.5rem, 36%);
}

.orient .hero-card-kicker {
  color: #e8b48a;
}

.orient h2 {
  font-size: calc(1.32rem * var(--step));
  margin-bottom: 0.35rem;
}

.orient-list {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  font-size: calc(1.02rem * var(--step));
}

.orient-list li + li {
  margin-top: 0.32rem;
}

.portrait-grid,
.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: calc(0.82rem * var(--step));
  font-weight: 700;
  color: var(--pine-mid);
}

.eyebrow.light {
  color: #d7e4dc;
}

h1,
h2,
h3,
.price-value {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: calc(1.35rem * var(--step));
}

.lead,
.section-lead {
  font-size: calc(1.22rem * var(--step));
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.btn-xl {
  min-height: 4rem;
  padding-inline: 1.6rem;
  font-size: calc(1.15rem * var(--step));
}

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

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

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

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-icon {
  width: 1.3rem;
  height: 1.3rem;
}

.hero-note {
  color: var(--muted);
  font-size: calc(0.98rem * var(--step));
}

.service-card,
.price-board,
.callback-form,
.portrait-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-kicker {
  margin: 0 0 0.3rem;
  color: var(--copper);
  font-weight: 700;
}

.text-link {
  font-weight: 700;
  color: var(--pine-mid);
}

.trust {
  padding-top: 2.4rem;
  padding-bottom: 1rem;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--pine);
  color: #f3efe6;
  border-radius: 20px;
}

.trust-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: calc(1.25rem * var(--step));
  margin-bottom: 0.2rem;
}

.trust-row span {
  color: #d5ddd7;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 250, 242, 0.55);
  width: 100%;
  padding-inline: max(2rem, calc((100% - var(--content)) / 2));
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-card {
  padding: 0 0 1rem;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.service-body {
  padding: 0.9rem 1.05rem 0;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-board {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0.4rem 0.4rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.55rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.featured {
  background: #f3efe4;
  border-radius: 18px;
  border-bottom: 0;
  margin: 0.2rem 0;
}

.price-tag {
  margin: 0 0 0.3rem;
  color: var(--copper);
  font-weight: 700;
  font-size: calc(0.9rem * var(--step));
}

.price-copy p,
.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.price-value {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--pine);
  white-space: nowrap;
  text-align: right;
}

.price-value small {
  display: block;
  font-family: var(--font-body);
  font-size: calc(0.95rem * var(--step));
  color: var(--muted);
  font-weight: 700;
}

.price-footnote {
  margin-top: 1rem;
  color: var(--muted);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.steps li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem;
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.portrait-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: 50% 18%;
}

.portrait-panel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1.4rem 1.3rem;
  background: linear-gradient(transparent, rgba(20, 16, 12, 0.78));
  color: #fffaf2;
}

.portrait-panel strong,
.portrait-panel span {
  display: block;
}

.portrait-panel strong {
  font-family: var(--font-display);
  font-size: calc(1.35rem * var(--step));
}

.portrait-panel span {
  color: #e4ddd2;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.3rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

.contact {
  padding-bottom: 5rem;
}

.contact-panel {
  background: var(--pine);
  color: #f6f1e8;
  border-radius: 28px;
  padding: 2.8rem 3rem;
  align-items: stretch;
}

.contact-panel h2,
.contact-panel a {
  color: #fffaf2;
}

.phone-display {
  display: inline-block;
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-decoration: none;
  letter-spacing: -0.03em;
  border-bottom: 2px solid rgba(255, 250, 242, 0.35);
}

.contact-mail a {
  font-weight: 700;
}

.callback-form {
  padding: 1.5rem;
  color: var(--ink);
}

.callback-form h3 {
  margin-top: 0;
}

.callback-form label,
.callback-form input,
.callback-form textarea {
  display: block;
  width: 100%;
}

.callback-form label {
  margin: 0.9rem 0 0.35rem;
  font-weight: 700;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.callback-form input,
.callback-form textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 2px solid #cfc4b1;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--focus);
}

.callback-form .btn {
  width: 100%;
  margin-top: 1.1rem;
}

.form-status {
  min-height: 1.4em;
  font-weight: 700;
  color: var(--pine-mid);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 7rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.footer-inner p,
.footer-inner a {
  margin: 0.15rem 0 0;
  color: var(--muted);
  text-decoration: none;
}

.footer-phone {
  font-weight: 700;
  font-size: calc(1.2rem * var(--step));
  color: var(--ink) !important;
}

.legal-page {
  padding: 4rem 0 6rem;
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 1280px) {
  .header-inner {
    width: min(1760px, calc(100% - 2.4rem));
    gap: 1.2rem;
  }

  .nav {
    gap: 1.7rem;
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: 2rem;
    --page-pad: 4rem;
  }

  body {
    padding-bottom: 0;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    min-height: 3.6rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.55rem var(--gutter);
    box-sizing: border-box;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text span,
  .font-controls,
  .nav {
    display: none;
  }

  .phone-pill {
    flex-shrink: 0;
    padding: 0.5rem 0.85rem;
    min-height: 2.5rem;
    font-size: 0.88rem;
  }

  .phone-pill .pill-long {
    display: none;
  }

  .phone-pill .pill-short {
    display: inline;
  }

  .hero-frame {
    display: block;
    height: 100svh;
    min-height: 100svh;
    border-radius: 0;
  }

  .hero-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 12%;
  }

  .hero-frame::after {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(14, 11, 8, 0.42) 0%,
      rgba(14, 11, 8, 0.12) 28%,
      rgba(14, 11, 8, 0.55) 58%,
      rgba(14, 11, 8, 0.88) 100%
    );
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 0.75rem;
    padding: 5rem var(--gutter) 1.7rem;
    color: #fffaf2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    background: none;
  }

  .hero-panel,
  .orient {
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .orient {
    display: none;
  }

  .hero-panel .eyebrow {
    color: #f0d7b4;
    letter-spacing: 0.06em;
  }

  .hero-panel h1 {
    color: #fffaf2;
    font-size: 2.05rem;
    line-height: 1.18;
    margin-bottom: 0.5rem;
    white-space: normal;
  }

  .hero-panel .lead {
    color: #f4efe6;
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 0.95rem;
  }

  .hero-panel .btn-ghost {
    color: #fffaf2;
    border-color: #fffaf2;
  }

  .hero-panel .btn-ghost:hover {
    background: #fffaf2;
    color: var(--ink);
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.15rem;
  }

  .orient {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.05rem;
    box-shadow: none;
  }

  .orient .hero-card-kicker {
    color: var(--copper);
  }

  .orient h2 {
    font-size: 1.25rem;
  }

  .section-alt {
    padding-inline: var(--gutter);
  }

  .legal-page {
    width: min(760px, calc(100% - var(--page-pad)));
    padding-top: 3rem;
  }

  .portrait-grid,
  .contact-panel,
  .steps,
  .trust-row,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.8rem 0;
  }

  .section-head {
    margin-bottom: 1.8rem;
  }

  .trust {
    width: 100%;
    padding: 0;
  }

  .trust-row {
    gap: 0;
    padding: 0.45rem var(--gutter);
    border-radius: 0;
  }

  .trust-row li {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  }

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

  .trust-row strong {
    font-size: 1.22rem;
  }

  .service-grid {
    gap: 2.2rem;
  }

  .service-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .service-card img {
    aspect-ratio: 3 / 2;
    border-radius: 12px;
  }

  .service-body {
    padding: 1rem 0 0.15rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card p {
    font-size: 1.06rem;
  }

  .price-board {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.35rem 0;
  }

  .price-row.featured {
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding-left: 0.9rem;
    border-left: 3px solid var(--copper);
  }

  .price-value {
    text-align: left;
  }

  .steps {
    gap: 0;
  }

  .steps li {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    column-gap: 1rem;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 1.45rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.35rem;
  }

  .steps li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .steps li .step-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .steps li h3 {
    grid-column: 2;
    margin: 0.2rem 0 0.35rem;
  }

  .steps li p {
    grid-column: 2;
    margin: 0;
  }

  .portrait-panel {
    border-radius: 12px;
  }

  details {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0.15rem 0;
  }

  .section.contact {
    width: 100%;
    padding: 0;
  }

  .contact-panel {
    padding: 2rem var(--gutter) 2.2rem;
    border-radius: 0;
  }

  .callback-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 1.5rem 0 0;
    margin-top: 0.4rem;
    border-top: 1px solid rgba(255, 250, 242, 0.18);
    color: #f6f1e8;
  }

  .callback-form h3 {
    color: #fffaf2;
  }

  .callback-form .optional,
  .contact-panel .hero-note {
    color: #d2c8b8;
  }

  .contact-panel .form-status {
    color: #e8b48a;
  }

  .callback-form input,
  .callback-form textarea {
    background: rgba(255, 250, 242, 0.96);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }
}

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