:root {
  --bg: #f7f1e8;
  --surface: #fffdf8;
  --surface-strong: #fff8ef;
  --ink: #102533;
  --muted: #536371;
  --line: rgba(16, 37, 51, 0.12);
  --brand: #92293a;
  --brand-dark: #6f1d2a;
  --accent: #d6a15d;
  --shadow: 0 20px 45px rgba(16, 37, 51, 0.08);
  --radius: 22px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 161, 93, 0.2), transparent 35%),
    linear-gradient(180deg, #fcf8f2 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-dark);
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 248, 242, 0.85);
  border-bottom: 1px solid rgba(16, 37, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  font-weight: 600;
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.hero,
.page-intro {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.form-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.15rem;
  max-width: 42rem;
}

.narrow {
  max-width: 46rem;
}

.button-row,
.section-action {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(146, 41, 58, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 37, 51, 0.1);
}

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

.hero-points,
.check-list,
.footer-links {
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.info-panel,
.card,
.quote-card,
.step-card,
.stat-card,
.highlight-panel,
.cta-box {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(16, 37, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-panel {
  overflow: hidden;
}

.info-panel-copy {
  padding: 1.4rem 1.5rem 1.6rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.step-card,
.highlight-panel,
.quote-card {
  padding: 1.5rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-detail h2 {
  font-size: 1.55rem;
}

.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-card strong,
.step-card span {
  display: block;
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(146, 41, 58, 0.08), rgba(214, 161, 93, 0.18)),
    rgba(255, 253, 248, 0.92);
}

.quote-card p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(111, 29, 42, 0.95), rgba(146, 41, 58, 0.9)),
    var(--brand-dark);
}

.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: #fff;
}

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

.contact-block {
  font-style: normal;
  color: var(--ink);
  margin-bottom: 1rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.5rem 0;
}

.form-layout {
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 51, 0.16);
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(146, 41, 58, 0.18);
  border-color: rgba(146, 41, 58, 0.4);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--brand-dark);
}

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

.site-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  color: #e9eef2;
  background:
    radial-gradient(circle at top right, rgba(214, 161, 93, 0.15), transparent 30%),
    #112733;
}

.site-footer h2,
.site-footer p,
.site-footer a {
  color: #f5f6f8;
}

.site-footer h2 {
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 246, 248, 0.78);
}

.hero-copy,
.hero-media,
.card,
.step-card,
.quote-card {
  animation: rise-in 650ms ease both;
}

.hero-media {
  animation-delay: 100ms;
}

.card-grid .card:nth-child(2),
.steps-grid .step-card:nth-child(2) {
  animation-delay: 120ms;
}

.card-grid .card:nth-child(3),
.steps-grid .step-card:nth-child(3) {
  animation-delay: 180ms;
}

.card-grid .card:nth-child(4),
.steps-grid .step-card:nth-child(4) {
  animation-delay: 240ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .card-grid-three,
  .card-grid-four,
  .steps-grid,
  .contact-grid,
  .form-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 37, 51, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-intro,
  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
