:root {
  --bg: #f5ded8;
  --bg-deep: #edc9bf;
  --cream: #fffaf5;
  --cream-2: #fff3ec;
  --rose: #e7aaa2;
  --rose-soft: #f8d9d3;
  --peach: #f1bda8;
  --nude: #ddc0af;
  --sage: #a8b69a;
  --sage-soft: #edf2e7;
  --champagne: #d9bd86;
  --text: #59413b;
  --muted: #8d756d;
  --line: rgba(128, 91, 80, 0.15);
  --white-glass: rgba(255, 250, 245, 0.78);
  --shadow: 0 24px 80px rgba(124, 75, 64, 0.16);
  --shadow-soft: 0 18px 48px rgba(121, 82, 73, 0.12);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 250, 245, 0.95), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 229, 214, 0.9), transparent 30%),
    linear-gradient(145deg, #f2d2ca 0%, #f7e2dc 42%, #f1c9bb 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.background-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
  pointer-events: none;
}

.background-glow-one {
  width: 320px;
  height: 320px;
  left: -110px;
  top: 170px;
  background: rgba(255, 244, 237, 0.72);
}

.background-glow-two {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 35%;
  background: rgba(231, 170, 162, 0.28);
}

.site-header {
  width: var(--container);
  margin: 22px auto 0;
  min-height: 74px;
  padding: 14px 16px 14px 20px;
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 250, 245, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.68);
  box-shadow: 0 16px 44px rgba(119, 77, 68, 0.11);
  backdrop-filter: blur(20px);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 18px 52px rgba(119, 77, 68, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf5;
  background: linear-gradient(145deg, #c9987d, #dfb984);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 10px 22px rgba(153, 93, 73, 0.22);
}

.brand-text,
.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.32rem, 2vw, 1.65rem);
  letter-spacing: 0.02em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--champagne);
  transition: transform 220ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  color: #fffaf5;
  background: #b98574;
  box-shadow: 0 14px 30px rgba(149, 88, 72, 0.22);
  flex: 0 0 auto;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(185, 133, 116, 0.12);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(42deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-42deg);
}

.page-shell {
  width: var(--container);
  margin: 26px auto 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 245, 0.72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.93), rgba(255, 247, 241, 0.86)),
    radial-gradient(circle at top right, rgba(248, 217, 211, 0.75), transparent 34%);
  box-shadow: var(--shadow);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.page-shell::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -76px;
  background: rgba(168, 182, 154, 0.16);
}

.page-shell::after {
  width: 380px;
  height: 380px;
  left: -180px;
  bottom: 16%;
  background: rgba(231, 170, 162, 0.12);
}

.section-pad {
  position: relative;
  z-index: 1;
  padding: clamp(68px, 8vw, 112px) clamp(22px, 5vw, 68px);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding-top: clamp(58px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ad7a68;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  color: var(--text);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 8.5vw, 8.2rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 5.1vw, 5.05rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero-lead,
.section-heading p,
.about-copy p,
.final-cta p,
.benefit-card p,
.steps p,
.testimonial-grid p,
.service-content p,
.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 0.94rem;
}

.button-primary {
  color: #fffaf5;
  background: linear-gradient(135deg, #b77f6c, #d0a06f);
  box-shadow: 0 18px 36px rgba(164, 94, 72, 0.24);
}

.button-soft {
  color: #8c665b;
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(185, 133, 116, 0.2);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(185, 133, 116, 0.16);
  border-radius: 999px;
  color: #8c665b;
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 58vw, 620px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -3% 4% 7%;
  border-radius: 44% 56% 54% 46% / 42% 48% 52% 58%;
  background: linear-gradient(145deg, rgba(248, 217, 211, 0.96), rgba(237, 201, 191, 0.46));
}

.hero-photo {
  position: absolute;
  inset: 0 8% 5% 0;
  width: 88%;
  height: 92%;
  border: 13px solid rgba(255, 250, 245, 0.74);
  border-radius: 46% 54% 50% 50% / 40% 48% 52% 60%;
  box-shadow: 0 26px 76px rgba(121, 82, 73, 0.22);
}

.leaf {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  color: #9dac8d;
  background: rgba(255, 250, 245, 0.8);
  box-shadow: 0 18px 36px rgba(121, 82, 73, 0.14);
  font-size: 2rem;
}

.leaf-one {
  top: 8%;
  right: 6%;
}

.leaf-two {
  left: -4%;
  bottom: 24%;
  color: #d1a470;
}

.floating-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10%;
  max-width: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 245, 0.7);
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-number {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  color: #ad7a68;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.floating-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.intro-ribbon {
  position: relative;
  z-index: 1;
  width: calc(100% - clamp(44px, 10vw, 136px));
  margin: 0 auto;
  padding: 26px clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(185, 133, 116, 0.14);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.8), rgba(248, 217, 211, 0.36));
}

.intro-ribbon p {
  margin: 0;
  font-family: var(--serif);
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 0.98;
}

.intro-ribbon span {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  max-width: 670px;
}

.section-heading p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(185, 133, 116, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.74);
  box-shadow: 0 12px 42px rgba(121, 82, 73, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 133, 116, 0.22);
  box-shadow: 0 22px 58px rgba(121, 82, 73, 0.14);
}

.service-media {
  height: 230px;
  padding: 10px;
}

.service-media img,
.about-visual img,
.benefit-card.large img {
  border-radius: 24px;
}

.service-content {
  padding: 8px 22px 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 999px;
  color: #a57a60;
  background: rgba(217, 189, 134, 0.18);
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.about-visual {
  position: relative;
  height: min(650px, 68vw);
  min-height: 430px;
  padding: 12px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.about-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #7b645d;
  background: rgba(255, 250, 245, 0.86);
  box-shadow: 0 14px 34px rgba(121, 82, 73, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-copy h2 {
  max-width: 650px;
}

.soft-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.soft-list div {
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(185, 133, 116, 0.14);
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.64);
}

.soft-list strong,
.soft-list span {
  display: block;
}

.soft-list strong {
  margin-bottom: 5px;
  color: var(--text);
}

.soft-list span {
  color: var(--muted);
  line-height: 1.62;
}

.benefits {
  padding-top: clamp(46px, 6vw, 80px);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.benefit-card.large {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.76), rgba(248, 217, 211, 0.36));
  border: 1px solid rgba(185, 133, 116, 0.12);
  box-shadow: var(--shadow-soft);
}

.benefit-card.large img {
  height: 360px;
  padding: 12px;
}

.benefit-card.large div {
  padding: 12px 32px 34px;
}

.benefit-card.large span,
.mini-benefits span {
  color: #b98574;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.benefit-card.large h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.mini-benefits {
  display: grid;
  gap: 16px;
}

.mini-benefits article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(185, 133, 116, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.68);
  box-shadow: 0 12px 36px rgba(121, 82, 73, 0.07);
}

.mini-benefits h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.mini-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.experience {
  padding-top: clamp(46px, 6vw, 78px);
}

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

.steps article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(185, 133, 116, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.68);
  overflow: hidden;
}

.steps article::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  bottom: -58px;
  border-radius: 999px;
  background: rgba(168, 182, 154, 0.14);
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #fffaf5;
  background: #b98574;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.testimonials {
  padding-top: clamp(42px, 6vw, 74px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(185, 133, 116, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.72), rgba(255, 243, 236, 0.58));
  box-shadow: 0 12px 36px rgba(121, 82, 73, 0.07);
}

.testimonial-grid p {
  font-family: var(--serif);
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.08;
}

.testimonial-grid footer {
  color: #ad7a68;
  font-weight: 900;
}

.final-cta {
  position: relative;
  z-index: 1;
  width: calc(100% - clamp(44px, 10vw, 136px));
  margin: 0 auto clamp(28px, 5vw, 58px);
  padding: clamp(34px, 6vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.88), rgba(248, 217, 211, 0.62)),
    radial-gradient(circle at 100% 0, rgba(168, 182, 154, 0.2), transparent 35%);
  border: 1px solid rgba(185, 133, 116, 0.16);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 700px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
}

.site-footer {
  width: var(--container);
  margin: 0 auto 36px;
  padding: 28px 8px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a:hover {
  color: #ad7a68;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-soft-fallback {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 250, 245, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(248, 217, 211, 0.95), rgba(237, 201, 191, 0.58));
  color: rgba(173, 122, 104, 0.72);
  font-family: var(--serif);
  font-size: 3rem;
}

.image-soft-fallback::after {
  content: "✦";
}

:focus-visible {
  outline: 3px solid rgba(217, 189, 134, 0.72);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    padding-right: 12px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .about,
  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

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

@media (max-width: 850px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --radius-xl: 32px;
  }

  .site-header {
    min-height: 68px;
    top: 10px;
    border-radius: 28px;
  }

  .menu-button {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 94px;
    margin: 0;
    padding: 18px;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(185, 133, 116, 0.16);
    border-radius: 26px;
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 24px 70px rgba(121, 82, 73, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(248, 217, 211, 0.38);
  }

  .page-shell {
    margin-top: 18px;
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(3.9rem, 18vw, 5.9rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .intro-ribbon,
  .final-cta {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .intro-ribbon {
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-photo {
    inset: 0 4% 7% 2%;
    width: 92%;
  }

  .floating-card {
    right: 5%;
    bottom: 2%;
  }

  .leaf-two {
    left: 4%;
  }

  .service-grid,
  .testimonial-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-media {
    height: 260px;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 10% 5%, rgba(255, 250, 245, 0.95), transparent 25%),
      linear-gradient(145deg, #f2d2ca 0%, #f7e2dc 52%, #f1c9bb 100%);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding-left: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1.23rem;
  }

  .page-shell {
    width: calc(100% - 20px);
    border-radius: 28px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .trust-strip span {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo {
    border-width: 8px;
    border-radius: 38% 62% 48% 52% / 40% 52% 48% 60%;
  }

  .leaf {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }

  .leaf-one {
    right: 0;
  }

  .floating-card {
    max-width: 190px;
    padding: 16px;
  }

  .floating-number {
    font-size: 1.8rem;
  }

  .intro-ribbon,
  .final-cta {
    width: calc(100% - 28px);
    padding: 24px;
    border-radius: 24px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p {
    margin-left: 0;
  }

  .service-media {
    height: 220px;
  }

  .about-visual {
    min-height: 340px;
    height: 380px;
  }

  .benefit-card.large img {
    height: 260px;
  }

  .benefit-card.large div {
    padding: 8px 22px 26px;
  }

  .steps article {
    min-height: auto;
  }

  .site-footer {
    width: calc(100% - 32px);
    margin-bottom: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
