:root {
  --ink: #171412;
  --charcoal: #211d19;
  --charcoal-2: #302923;
  --cream: #f6f0e7;
  --cream-2: #ebe0d2;
  --paper: #fffaf1;
  --gold: #b8955e;
  --gold-dark: #8d6d3e;
  --muted: #746b61;
  --line: rgba(33, 29, 25, 0.14);
  --light-line: rgba(246, 240, 231, 0.18);
  --shadow: 0 24px 70px rgba(23, 20, 18, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body.no-scroll-behavior {
  scroll-behavior: auto;
}

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

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 92px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 250, 241, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  display: none;
  width: auto;
  height: 42px;
  max-width: 190px;
}

.brand.has-logo .brand-logo {
  display: block;
}

.brand.has-logo .brand-fallback {
  display: none;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid rgba(184, 149, 94, 0.5);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text span:first-child {
  line-height: 1;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.1;
}

.header-proof {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  text-align: center;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.button,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #171412;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  gap: 10px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.icon-link:hover {
  background: #c9aa72;
  border-color: #c9aa72;
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.72rem;
}

.icon-link {
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  border-color: rgba(33, 29, 25, 0.22);
}

.icon-link .icon {
  width: 18px;
  height: 18px;
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.5);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button-dark:hover {
  color: var(--paper);
  background: var(--charcoal-2);
  border-color: var(--charcoal-2);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/first-reset-landing-page-hero-section 2.png");
  background-position: 68% center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.96) 0%, rgba(23, 20, 18, 0.82) 38%, rgba(23, 20, 18, 0.32) 76%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.22), rgba(23, 20, 18, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  color: var(--gold);
  background: rgba(23, 20, 18, 0.42);
  border: 1px solid rgba(184, 149, 94, 0.78);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.eyebrow-pill .icon {
  width: 17px;
  height: 17px;
}

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

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.headline-accent {
  color: var(--gold);
  font-style: normal;
}

.offer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 2px;
  color: var(--cream-2);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.offer-line .icon {
  color: var(--gold);
  width: 21px;
  height: 21px;
}

.price-line {
  margin: 2px 0 14px 31px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-line {
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.93rem;
}

.trust-row {
  background: var(--charcoal-2);
  color: var(--paper);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.trust-grid p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  min-height: 86px;
  padding: 16px 14px;
  color: rgba(255, 250, 241, 0.82);
  border-bottom: 1px solid var(--light-line);
  border-right: 1px solid var(--light-line);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-grid p:nth-child(2n) {
  border-right: 0;
}

.trust-grid p:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
  border-right: 0;
}

.trust-grid .icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.trust-grid span {
  display: block;
}

.roles-strip {
  padding: 18px 0 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.roles-strip-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.roles-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.roles-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 10px;
  color: var(--ink);
  background: rgba(246, 240, 231, 0.64);
  border: 1px solid rgba(33, 29, 25, 0.1);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.roles-strip-item:last-child {
  grid-column: 1 / -1;
}

.roles-strip-icon {
  width: 19px;
  height: 19px;
  color: var(--gold-dark);
}

.process-section,
.faq-section {
  padding: 78px 0;
  background: var(--cream);
}

.problem-section {
  padding: 56px 0 64px;
  background: var(--cream);
}

.problem-section h2,
.process-section h2,
.faq-section h2,
.price-section h2,
.booking-section h2,
.body-section h2,
.expectations-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
}

.problem-heading {
  max-width: 760px;
}

.problem-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.9rem, 4.1vw, 3.15rem);
  line-height: 1.08;
}

.problem-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.problem-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.problem-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(33, 29, 25, 0.12);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 20, 18, 0.07);
}

.problem-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.problem-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  color: var(--paper);
  background: var(--charcoal);
}

.body-section,
.booking-section {
  padding: 84px 0;
}

.split-layout,
.faq-layout {
  display: grid;
  gap: 34px;
}

.section-intro p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.booking-copy p,
.faq-section p,
.price-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
}

.dark-section .section-intro p:not(.section-kicker),
.dark-section .section-heading p:not(.section-kicker),
.dark-section .booking-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.card-grid,
.expectations-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.expectation-card {
  padding: 24px;
  border-radius: var(--radius);
}

.info-card,
.expectation-card {
  background: rgba(255, 250, 241, 0.055);
  border: 1px solid var(--light-line);
}

.info-card h3,
.expectation-card h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.info-card p,
.expectation-card li {
  color: rgba(255, 250, 241, 0.72);
}

.info-card p {
  margin: 0;
}

.process-section {
  padding: 72px 0 82px;
  background: var(--paper);
}

.process-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-intro {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px 34px 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(184, 149, 94, 0.15), rgba(184, 149, 94, 0)),
    var(--charcoal);
}

.process-intro h2 {
  color: var(--paper);
}

.process-intro p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.03rem;
}

.process-timeline {
  position: relative;
  display: grid;
  padding: 30px;
  background: var(--cream);
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 47px;
  width: 1px;
  background: rgba(184, 149, 94, 0.5);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 0 0 24px;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-step-icon {
  width: 21px;
  height: 21px;
  color: var(--gold-dark);
}

.process-step h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.process-step p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
}

.process-cta-row {
  padding: 0 34px 34px;
  background: var(--charcoal);
}

.process-cta-row .button {
  width: fit-content;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.expectation-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
}

.expectations-section {
  padding: 78px 0 84px;
  background: var(--cream);
}

.expectations-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.expectations-intro h2 {
  color: var(--ink);
}

.expectations-intro p:not(.section-kicker) {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.expectations-card-row {
  display: grid;
  gap: 16px;
}

.expectation-card {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(33, 29, 25, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 20, 18, 0.07);
}

.expectation-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--gold-dark);
}

.expectation-card h3,
.standards-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.expectation-card h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: 14px 0 16px;
  background: var(--gold);
}

.expectation-card ul {
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.expectation-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.expectation-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.standards-panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(184, 149, 94, 0.12), rgba(184, 149, 94, 0)),
    var(--paper);
  border: 1px solid rgba(184, 149, 94, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 20, 18, 0.06);
}

.standards-panel > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.standards-panel .expectation-icon {
  margin-bottom: 0;
}

.standards-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.price-section {
  padding: 84px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 149, 94, 0.16), transparent 30%),
    var(--charcoal);
}

.price-panel {
  display: grid;
  gap: 28px;
  align-items: center;
}

.price-copy {
  display: grid;
  gap: 18px;
}

.price-copy h2 {
  color: var(--paper);
}

.price-copy p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 1.08rem;
}

.reassurance-line {
  display: inline-flex;
  width: fit-content;
  padding-top: 18px;
  color: var(--gold) !important;
  border-top: 1px solid rgba(184, 149, 94, 0.5);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-display {
  margin: 8px 0 22px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 9vw, 4.8rem);
  line-height: 1;
}

.offer-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(184, 149, 94, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.offer-card-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.includes-block {
  padding-top: 2px;
  border-top: 1px solid var(--line);
}

.includes-block h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.includes-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.includes-block li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.includes-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.offer-card .button {
  width: 100%;
}

.offer-secondary {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
}

.audit-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

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

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 66px;
  padding: 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--gold-dark);
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 18px 20px;
}

.faq-answer p {
  margin: 0;
}

.booking-panel {
  display: grid;
  gap: 30px;
  max-width: 1030px;
}

.booking-copy {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.booking-copy h2 {
  max-width: 720px;
  margin: 0 auto;
}

.booking-copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
}

.booking-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(184, 149, 94, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.booking-service-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(184, 149, 94, 0.14), rgba(184, 149, 94, 0)),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.booking-service-icon {
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
}

.booking-service-header p {
  margin: 0;
}

.booking-service-header p:first-child {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-service-header p:last-child {
  margin-top: 4px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.scheduler-placeholder {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(246, 240, 231, 0.92)),
    var(--cream);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.scheduler-placeholder-inner {
  width: 100%;
  min-height: 320px;
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(184, 149, 94, 0.38);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.65);
  overflow: visible;
}

.scheduler-placeholder iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 800px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
}

.scheduler-placeholder p {
  margin: 0;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.booking-footer {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
}

.booking-support-actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.booking-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.booking-footer p .icon {
  width: 17px;
  height: 17px;
  color: var(--gold-dark);
}

.booking-fallback-button {
  min-height: 42px;
  width: fit-content;
  padding: 0 16px;
  font-size: 0.72rem;
  background: transparent;
  color: var(--ink);
  border-color: rgba(33, 29, 25, 0.2);
}

.booking-fallback-button:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: rgba(184, 149, 94, 0.6);
}

.inline-call-link {
  color: var(--gold);
  font-weight: 800;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 250, 241, 0.68);
  background: #151210;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 10px;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 520px) {
  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-media {
    background-position: 73% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 20, 18, 0.97) 0%, rgba(23, 20, 18, 0.86) 58%, rgba(23, 20, 18, 0.52) 100%),
      linear-gradient(0deg, rgba(23, 20, 18, 0.18), rgba(23, 20, 18, 0.18));
  }

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

@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 120px;
  }
}

@media (min-width: 720px) {
  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 0.98;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 14px 24px;
  }

  .brand {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }

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

  .trust-grid p {
    min-height: 78px;
    align-items: center;
    padding: 10px 12px;
    border-right: 1px solid var(--light-line);
    border-bottom: 0;
    font-size: 0.74rem;
  }

  .trust-grid p:nth-child(2n) {
    border-right: 1px solid var(--light-line);
  }

  .trust-grid p:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .roles-strip {
    padding: 14px 0 16px;
  }

  .roles-strip-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 10px;
    border: 1px solid rgba(33, 29, 25, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .roles-strip-item {
    min-height: 54px;
    background: rgba(246, 240, 231, 0.48);
    border: 0;
    border-right: 1px solid rgba(33, 29, 25, 0.1);
    border-radius: 0;
  }

  .roles-strip-item:last-child {
    grid-column: auto;
    border-right: 0;
  }

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

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

  .standards-panel {
    grid-template-columns: 0.45fr 1fr;
    align-items: center;
    margin-top: 20px;
    padding: 30px 34px;
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }

  .problem-card {
    min-height: 260px;
  }

  .process-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .process-intro {
    padding: 40px 40px 20px;
  }

  .process-timeline {
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 40px;
  }

  .process-timeline::before {
    left: 57px;
  }

  .process-cta-row {
    grid-column: 1;
    grid-row: 2;
    padding: 0 40px 40px;
  }

  .booking-service-header,
  .booking-footer {
    padding: 26px 30px;
  }

  .booking-support-actions {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .price-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
    align-items: center;
    gap: 58px;
  }

  .offer-card {
    padding: 34px;
  }

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

@media (min-width: 980px) {
  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-content {
    padding: 76px 0 72px;
  }

  .split-layout {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

  .faq-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 56px;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4.05rem;
  }
}

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