:root {
  color-scheme: light;
  --wine: #7b1b4f;
  --rose: #d9967a;
  --cream: #f8e9c6;
  --brown: #44251a;
  --brown-soft: #704631;
  --paper: #fffaf0;
  --paper-rose: #fbefe8;
  --white: #ffffff;
  --ink: #2f1d18;
  --muted: #765c50;
  --line: rgba(68, 37, 26, 0.16);
  --shadow: 0 18px 48px rgba(68, 37, 26, 0.15);
  --container: min(1160px, calc(100vw - 40px));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

@media (hover: hover) {
  a,
  button,
  .hero-crn,
  .quick-strip div,
  .service-grid article,
  .price-card,
  .faq-list details,
  .alo-card,
  .portrait-main,
  .portrait-small,
  .services-photo,
  .method-media img,
  .final-media img,
  .testimonial-track img {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease,
      background 220ms ease,
      color 220ms ease,
      opacity 220ms ease,
      filter 220ms ease;
  }
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(248, 233, 198, 0.28);
  background: rgba(255, 250, 240, 0.86);
  color: var(--brown);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 10px 32px rgba(68, 37, 26, 0.08);
}

.brand {
  display: grid;
  min-width: 180px;
}

.brand-name {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-role {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-cta,
.button,
.text-link,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-cta {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.header-cta:hover,
.button-primary:hover {
  background: #642044;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(123, 27, 79, 0.26);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--wine);
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  padding: 132px max(20px, calc((100vw - 1160px) / 2)) 86px;
  background:
    linear-gradient(105deg, rgba(248, 233, 198, 0.96) 0%, rgba(255, 250, 240, 0.98) 48%, rgba(251, 239, 232, 0.88) 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  position: absolute;
  top: 96px;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 34px;
  z-index: -1;
  width: min(32vw, 430px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(68, 37, 26, 0.2);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 233, 198, 0.72) 0%, rgba(248, 233, 198, 0.2) 58%, rgba(123, 27, 79, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 250, 240, 0) 0%, rgba(68, 37, 26, 0.06) 100%);
}

.hero-content {
  width: min(650px, 100%);
}

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

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

h1,
h2 {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
}

h3 {
  color: var(--brown);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--brown);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.button-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(123, 27, 79, 0.22);
}

.button-secondary {
  border: 1px solid rgba(68, 37, 26, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
}

.button-secondary:hover {
  border-color: var(--wine);
  color: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(68, 37, 26, 0.1);
}

.hero-crn {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(68, 37, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.74);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-crn:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 27, 79, 0.32);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 24px rgba(68, 37, 26, 0.1);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--container);
  margin: -24px auto 0;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(248, 233, 198, 0.72);
  border-radius: var(--radius);
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quick-strip div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 16px;
  padding: 24px 26px;
  align-items: start;
}

.quick-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-strip svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.quick-strip strong {
  font-size: 1rem;
  line-height: 1.2;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.42;
}

.quick-strip div:hover {
  background: rgba(255, 255, 255, 0.06);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 94px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.section-copy p,
.authority-copy p,
.pricing-copy p,
.final-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  margin-top: 8px;
  color: var(--wine);
  font-weight: 900;
}

.text-link:hover {
  transform: translateX(4px);
}

.portrait-stack {
  position: relative;
  min-height: 620px;
}

.portrait-stack img,
.method-media img,
.alo-card,
.final-media img,
.testimonial-track img,
.services-photo {
  border-radius: var(--radius);
}

.portrait-main {
  width: 78%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.portrait-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 310px;
  object-fit: cover;
  object-position: center top;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.portrait-main:hover,
.portrait-small:hover,
.services-photo:hover,
.alo-card:hover,
.method-media img:hover,
.final-media img:hover {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.02);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  margin-bottom: 8px;
  color: var(--muted);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.services-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services-head > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 500px);
  gap: clamp(52px, 6vw, 88px);
  align-items: start;
}

.services-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 500px;
  height: 520px;
  justify-self: start;
}

.service-grid article {
  display: flex;
  min-height: 0;
  padding: 22px;
  flex-direction: column;
  border: 1px solid rgba(68, 37, 26, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(68, 37, 26, 0.055);
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 27, 79, 0.22);
  box-shadow: 0 18px 36px rgba(68, 37, 26, 0.1);
}

.service-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: auto;
  color: var(--wine);
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.42;
}

.method-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  margin: 20px 0 0;
  background: var(--brown);
  color: var(--cream);
}

.method-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 0;
}

.method-content {
  align-self: center;
  padding: clamp(48px, 8vw, 96px) max(20px, calc((100vw - 1160px) / 2)) clamp(48px, 8vw, 96px) clamp(40px, 6vw, 78px);
}

.method-content h2,
.final-cta h2 {
  color: var(--cream);
}

.method-content .section-kicker,
.final-cta .section-kicker {
  color: var(--rose);
}

.steps-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 233, 198, 0.18);
}

.steps-list span {
  color: var(--rose);
  font-weight: 900;
}

.steps-list h3 {
  margin-bottom: 6px;
  color: var(--cream);
}

.steps-list p {
  margin-bottom: 0;
  color: rgba(248, 233, 198, 0.78);
}

.authority-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}

.alo-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.alo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 32%;
}

.alo-card div {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.alo-card strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.alo-card span {
  color: var(--muted);
}

.instagram-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.instagram-link:hover {
  transform: translateY(-2px);
  background: #642044;
  box-shadow: 0 14px 28px rgba(123, 27, 79, 0.2);
}

.pricing-section {
  padding: 88px 20px;
  background: var(--paper-rose);
}

.pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: 42px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-card {
  min-height: 246px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card.featured {
  background: var(--wine);
  color: var(--white);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 27, 79, 0.2);
  box-shadow: 0 18px 36px rgba(68, 37, 26, 0.1);
}

.price-card span {
  display: block;
  margin-bottom: 18px;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.2vw, 3.1rem);
  line-height: 1;
  white-space: nowrap;
}

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

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-button {
  justify-self: start;
  grid-column: 1 / -1;
}

.testimonials-section {
  overflow: hidden;
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.testimonials-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.testimonials-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.testimonial-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 8px 0 22px;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(11vw, 150px);
  pointer-events: none;
  content: "";
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(255, 250, 240, 0) 100%);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(255, 250, 240, 0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-scroll 46s linear infinite;
  will-change: transform;
}

.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track img {
  width: clamp(210px, 18vw, 286px);
  aspect-ratio: 9 / 15;
  object-fit: contain;
  background: #9d1aa2;
  box-shadow: 0 14px 34px rgba(68, 37, 26, 0.14);
}

.testimonial-track img:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 20px 42px rgba(68, 37, 26, 0.18);
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.testimonial-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-section .section-heading {
  display: block;
  margin-bottom: 0;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--brown);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

details:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 27, 79, 0.2);
  box-shadow: 0 12px 26px rgba(68, 37, 26, 0.08);
}

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  background: var(--wine);
  color: var(--cream);
}

.final-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.final-content {
  align-self: center;
  padding: clamp(48px, 8vw, 92px) max(20px, calc((100vw - 1160px) / 2)) clamp(48px, 8vw, 92px) clamp(36px, 6vw, 78px);
}

.final-content p {
  max-width: 560px;
  color: rgba(248, 233, 198, 0.82);
}

.final-content .button-primary {
  background: var(--cream);
  color: var(--wine);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  background: var(--brown);
  color: var(--cream);
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: rgba(248, 233, 198, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-line > * {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-line > * + *::before {
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 16px;
  background: rgba(248, 233, 198, 0.34);
  content: "";
}

.footer-line strong {
  color: var(--cream);
}

.site-footer span,
.site-footer a {
  color: rgba(248, 233, 198, 0.78);
}

.site-footer a:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav a {
    padding: 12px 8px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
  }

  .hero-media {
    width: min(36vw, 380px);
    top: 112px;
    bottom: 72px;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(248, 233, 198, 0.98) 0%, rgba(248, 233, 198, 0.74) 58%, rgba(248, 233, 198, 0.3) 100%),
      linear-gradient(180deg, rgba(248, 233, 198, 0.05) 0%, rgba(248, 233, 198, 0.86) 100%);
  }

  .quick-strip,
  .intro-section,
  .services-head,
  .services-layout,
  .section-heading,
  .testimonials-heading,
  .method-band,
  .authority-section,
  .pricing-inner,
  .faq-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .quick-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .quick-strip div {
    grid-template-columns: 38px 1fr;
    padding: 22px 20px;
  }

  .quick-strip svg {
    width: 32px;
    height: 32px;
  }

  .portrait-stack {
    min-height: auto;
  }

  .portrait-main,
  .portrait-small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
  }

  .portrait-small {
    display: none;
  }

  .method-media img,
  .services-photo,
  .final-media img {
    min-height: 440px;
    height: auto;
  }

  .method-content,
  .final-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-role {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .site-header.is-open .main-nav {
    inset: 68px 12px auto;
  }

  .hero {
    align-items: end;
    min-height: 88svh;
    padding: 96px 14px 36px;
  }

  .hero-media {
    inset: 68px 0 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.34;
  }

  .hero-media img {
    object-fit: cover;
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(248, 233, 198, 0.36) 0%, rgba(248, 233, 198, 0.86) 45%, rgba(248, 233, 198, 0.98) 100%),
      linear-gradient(90deg, rgba(248, 233, 198, 0.4) 0%, rgba(248, 233, 198, 0.16) 100%);
  }

  h1 {
    font-size: clamp(2.64rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-crn {
    width: 100%;
    justify-content: center;
  }

  .quick-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .service-grid {
    height: auto;
  }

  .service-grid article {
    min-height: auto;
  }

  .pricing-section {
    padding: 64px 14px;
  }

  .pricing-inner {
    width: 100%;
  }

  .price-card {
    min-height: auto;
  }

  .testimonial-track {
    animation-duration: 34s;
  }

  .testimonial-track img {
    width: min(68vw, 240px);
  }

  .alo-card img {
    height: auto;
    max-height: 560px;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
  }

  .site-footer {
    padding: 26px 14px;
  }

  .footer-line {
    row-gap: 10px;
    font-size: 0.88rem;
  }

  .footer-line > * + *::before {
    margin: 0 10px;
  }
}
