:root {
  --black-main: #050505;
  --black-soft: #090806;
  --charcoal: #11100e;
  --charcoal-warm: #1a130d;
  --brown-deep: #24180f;
  --gold-dark: #8a5a1d;
  --gold-main: #c88928;
  --gold-bright: #d9a441;
  --gold-highlight: #e8b85a;
  --copper: #a86d1f;
  --text-main: #f1ece4;
  --text-secondary: #dcd5cc;
  --text-muted: #afa7a0;
  --border-muted: #3a352e;
  --border-gold: #5f3d16;
  --font-display: "Rye", "Bodoni 72 Smallcaps", "Bodoni Moda", Didot, serif;
  --font-title: "Oswald", "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", "Roboto Condensed", Arial, sans-serif;
  --max: 1180px;
  --space: 24px;
  --radius: 6px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--black-main);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(200, 137, 40, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200, 137, 40, 0.04) 1px, transparent 1px),
    var(--black-main);
  background-size: 90px 90px, 90px 90px, auto;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-highlight); text-underline-offset: 3px; }
p + p { margin-top: 14px; }
h1, h2, h3 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 18px;
}
h1 span, h2 span, h3 span { color: var(--gold-bright); }
@media (min-width: 760px) {
  h1 { font-size: 72px; }
  h2 { font-size: 46px; }
}

:focus-visible { outline: 3px solid var(--gold-highlight); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--gold-bright);
  color: var(--black-main);
  padding: 10px 16px;
}
.skip-link:focus { left: 0; }
.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;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--space);
}
.narrow { max-width: 760px; }
.section {
  padding-block: 72px;
  border-top: 1px solid rgba(95, 61, 22, 0.65);
  background: rgba(5, 5, 5, 0.9);
}
.section-alt { background: rgba(9, 8, 6, 0.94); }
.center { text-align: center; }
.section-lede {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--text-muted);
}
.muted, .helper { color: var(--text-muted); }
.helper {
  margin-top: 10px;
  font-size: 13px;
}
.eyebrow {
  color: var(--gold-main);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.grid-3 {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 760px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.card {
  background: rgba(17, 16, 14, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--gold-bright); margin-bottom: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid var(--gold-main);
  border-radius: 4px;
  color: var(--gold-bright);
  background: transparent;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover {
  background: var(--gold-main);
  border-color: var(--gold-highlight);
  color: var(--black-main);
}
.btn-filled {
  background: linear-gradient(180deg, var(--gold-highlight), var(--gold-main));
  color: var(--black-main);
}
.btn-filled:hover { background: var(--gold-bright); }
.btn-ghost {
  min-width: 92px;
  border-color: rgba(200, 137, 40, 0.55);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: rgba(200, 137, 40, 0.12);
  color: var(--gold-bright);
}
.btn-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 13px;
}
.cta-button {
  padding-inline: 22px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.93);
  border-bottom: 1px solid rgba(138, 90, 29, 0.55);
  backdrop-filter: blur(10px);
}
.nav-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img {
  width: 118px;
  max-height: 88px;
  object-fit: contain;
}
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 0;
  list-style: none;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-main);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(138, 90, 29, 0.65);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 1), rgba(5, 5, 5, 0.86) 48%, rgba(36, 24, 15, 0.75)),
    var(--black-main);
}
.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding-block: 64px;
}
.hero-copy { max-width: 650px; }
.hero h1 { margin-top: 18px; }
.hero .lede {
  max-width: 560px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 17px;
}
.hero-art {
  position: relative;
  border: 1px solid rgba(138, 90, 29, 0.75);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-art img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}
.quick-book {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  max-width: 720px;
  margin-top: 26px;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
}
.form-progress {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(95, 61, 22, 0.7);
  color: var(--gold-bright);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.conversation-step {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  animation: stepFade 180ms ease;
}
.conversation-step[hidden] { display: none; }
.conversation-step label {
  grid-column: 1 / -1;
  padding: 0 4px;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.quick-book input:not([type="hidden"]) {
  min-width: 0;
  border: 1px solid rgba(95, 61, 22, 0.7);
  border-radius: 4px;
  background: transparent;
  padding: 12px 14px;
}
.quick-book .btn {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 4px;
}
.form-error {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0 16px;
  color: var(--gold-highlight);
  font-size: 13px;
}
.form-error:not(:empty) {
  min-height: 34px;
  padding-block: 8px;
  border-top: 1px solid rgba(95, 61, 22, 0.7);
}
@keyframes stepFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.proof-band,
.footer-strip {
  border-block: 1px solid rgba(95, 61, 22, 0.75);
  background: rgba(17, 16, 14, 0.96);
}
.proof-grid,
.strip-grid {
  display: grid;
  gap: 1px;
}
.proof-grid div,
.strip-grid div {
  padding: 22px 12px;
  border-left: 1px solid rgba(95, 61, 22, 0.55);
}
.proof-grid div:first-child,
.strip-grid div:first-child { border-left: 0; }
.proof-grid strong,
.strip-grid strong {
  display: block;
  color: var(--text-main);
  font-family: var(--font-title);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.proof-grid span,
.strip-grid span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}
@media (min-width: 760px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
}

.path-card {
  text-align: left;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.path-card .btn { margin-top: auto; }
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--charcoal), inset 0 0 0 5px var(--gold-main);
}
.feature-panel,
.service-showcase {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-panel > * { min-width: 0; }
.feature-panel img,
.service-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.feature-panel > div {
  padding: 34px;
}
.step-list {
  display: grid;
  padding: 0;
  list-style: none;
}
.step-list li {
  padding: 24px;
  border-bottom: 1px solid rgba(95, 61, 22, 0.65);
  color: var(--text-main);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.step-list span { color: var(--gold-bright); margin-right: 12px; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 0.9fr; }
  .feature-panel { grid-template-columns: 0.8fr 1fr 1fr; }
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.mini-features span {
  color: var(--text-main);
  border-left: 1px solid var(--border-gold);
  padding-left: 16px;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-showcase {
  text-align: left;
}
.service-tabs {
  display: grid;
  background: rgba(9, 8, 6, 0.9);
}
.service-trigger {
  width: 100%;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(95, 61, 22, 0.65);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: var(--text-main);
  background: transparent;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
.service-trigger:hover,
.service-trigger.is-active {
  background: rgba(200, 137, 40, 0.1);
  color: var(--gold-bright);
}
.service-detail { padding: 28px; }
.service-row {
  display: grid;
  min-height: 100%;
  align-content: center;
}
.service-row[hidden] { display: none; }
.service-row p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}
@media (min-width: 900px) {
  .service-showcase { grid-template-columns: 0.85fr 1.1fr 0.95fr; }
}

.split-section,
.reviews-split,
.faq-grid,
.cta-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.split-section h2,
.reviews-split h2,
.faq-grid h2,
.cta-grid h2 { margin-top: 10px; }
@media (min-width: 860px) {
  .split-section,
  .reviews-split,
  .faq-grid { grid-template-columns: 0.78fr 1.22fr; }
  .cta-grid { grid-template-columns: 0.75fr 1.2fr auto; }
}
.result-bars {
  display: grid;
  gap: 24px;
}
.result-bars div {
  display: grid;
  gap: 10px;
  color: var(--text-main);
  font-family: var(--font-title);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.result-bars i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-highlight), var(--gold-main));
}
.bar-strong { width: 88%; }
.bar-stronger { width: 92%; }
.bar-full { width: 95%; }
.faq-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
}
details {
  background: rgba(17, 16, 14, 0.9);
  border-bottom: 1px solid rgba(95, 61, 22, 0.65);
}
details:last-child { border-bottom: 0; }
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--text-main);
  cursor: pointer;
}
summary::after {
  content: "+";
  color: var(--gold-bright);
}
details[open] summary::after { content: "-"; }
details p { padding: 0 24px 20px; color: var(--text-muted); }

.review-card blockquote {
  color: var(--text-secondary);
  font-size: 16px;
}
.review-card figcaption {
  margin-top: 18px;
  color: var(--gold-bright);
  font-family: var(--font-title);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-band {
  padding-block: 42px;
  border-block: 1px solid var(--border-gold);
  background: linear-gradient(90deg, rgba(26, 19, 13, 0.92), rgba(5, 5, 5, 0.96));
}
.cta-band img {
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
}
.image-frame {
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-hero {
  display: grid;
  min-height: 780px;
  border-bottom: 1px solid var(--border-gold);
}
.contact-side,
.contact-form-panel {
  padding: 56px var(--space);
}
.contact-side {
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.98)),
    url("/assets/img/goodfellaz-placeholder.png") center / cover;
}
.contact-copy {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
}
.contact-copy h1 { margin-top: 18px; }
.contact-copy .lede { margin-top: 18px; }
.availability {
  display: grid;
  gap: 6px;
  max-width: 430px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(95, 61, 22, 0.7);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
}
.availability strong,
.contact-list strong {
  color: var(--gold-bright);
  font-family: var(--font-title);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.contact-list p {
  display: grid;
  gap: 4px;
}
.contact-form-panel {
  display: grid;
  align-content: center;
  background: var(--black-soft);
}
.form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.form label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  background: #0b0a08;
  color: var(--text-main);
  font: 400 14px var(--font-body);
  padding: 14px 16px;
}
input::placeholder,
textarea::placeholder { color: #8f8780; }
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%),
    linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }
.contact-wizard {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(17, 16, 14, 0.82);
}
.contact-wizard .form-progress {
  min-height: auto;
  justify-content: start;
  place-items: center start;
  padding: 0 0 14px;
  border-right: 0;
  border-bottom: 1px solid rgba(95, 61, 22, 0.7);
}
.contact-wizard-step {
  display: grid;
  gap: 16px;
  animation: stepFade 180ms ease;
}
.contact-wizard-step[hidden] { display: none; }
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.goal-grid,
.field-grid {
  display: grid;
  gap: 12px;
  border: 0;
  padding: 0;
}
.goal-grid label {
  position: relative;
  min-height: 74px;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  cursor: pointer;
}
.goal-grid input {
  position: absolute;
  opacity: 0;
}
.goal-grid span {
  color: var(--text-main);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font: 600 14px var(--font-body);
}
.goal-grid label:has(input:checked) {
  border-color: var(--gold-highlight);
  box-shadow: inset 0 0 0 1px var(--gold-main);
}
@media (min-width: 640px) {
  .goal-grid,
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .contact-hero { grid-template-columns: 1fr 1fr; }
  .contact-side,
  .contact-form-panel { padding-inline: 52px; }
}

.site-footer {
  border-top: 1px solid var(--border-gold);
  background: rgba(5, 5, 5, 0.98);
}
.footer-grid {
  display: grid;
  gap: 30px;
  padding-block: 42px;
}
.footer-logo { width: 170px; margin-bottom: 14px; }
.footer-heading {
  color: var(--gold-bright);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin-top: 12px;
  list-style: none;
}
.site-footer a { color: var(--text-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
  border-top: 1px solid rgba(95, 61, 22, 0.65);
  font-size: 13px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .brand img { width: 96px; }
  .nav-toggle { display: grid; }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    padding-bottom: 16px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }
  .primary-nav li { border-top: 1px solid rgba(95, 61, 22, 0.55); }
  .primary-nav a {
    width: fit-content;
    justify-self: center;
  }
  .nav-cta { display: none; }
}
@media (max-width: 700px) {
  :root { --space: 18px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .section { padding-block: 54px; }
  .hero-grid {
    min-height: 0;
    padding-block: 46px;
    text-align: center;
  }
  .hero-copy,
  .hero .lede {
    margin-inline: auto;
  }
  .mini-features span {
    border-left: 0;
    padding-left: 0;
  }
  .quick-book {
    grid-template-columns: auto minmax(0, 1fr);
    margin-inline: auto;
    text-align: left;
  }
  .form-progress {
    min-height: 100%;
    padding: 0 10px;
    border-right: 1px solid rgba(95, 61, 22, 0.7);
    border-bottom: 0;
    place-items: center;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .conversation-step {
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 10px;
  }
  .conversation-step label {
    padding: 0 2px;
    white-space: normal;
  }
  .quick-book .btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
  }
  .quick-book input:not([type="hidden"]) {
    border: 1px solid rgba(95, 61, 22, 0.7);
  }
  .cta-grid,
  .split-section,
  .reviews-split,
  .faq-grid {
    text-align: center;
  }
  .cta-grid img,
  .split-section img {
    margin-inline: auto;
  }
  .about-page .values-grid .card,
  .path-card,
  .review-card {
    text-align: left;
  }
  .about-page .section > .container > .eyebrow,
  .about-page .section > .container > h2,
  .services-page .split-section,
  .services-page .faq-grid > div:first-child,
  .services-page .cta-grid,
  .contact-page .contact-copy,
  .contact-page .contact-form-panel,
  .contact-page .split-section,
  .contact-page .cta-grid {
    text-align: center;
  }
  .contact-page .availability,
  .contact-page .contact-list {
    margin-inline: auto;
  }
  .contact-wizard {
    text-align: left;
  }
  .contact-wizard .form-progress {
    padding-bottom: 12px;
    justify-content: center;
    place-items: center;
  }
  .contact-wizard-step {
    gap: 14px;
  }
  .wizard-actions {
    justify-content: center;
  }
  .site-footer,
  .footer-grid,
  .footer-bottom,
  .social-row {
    text-align: center;
    justify-content: center;
  }
  .footer-logo {
    margin-inline: auto;
  }
  .footer-links {
    justify-items: center;
  }
  .proof-grid div,
  .strip-grid div {
    border-left: 0;
    border-top: 1px solid rgba(95, 61, 22, 0.55);
  }
  .proof-grid div:first-child,
  .strip-grid div:first-child { border-top: 0; }
  .contact-side,
  .contact-form-panel { padding-block: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
