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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background-color: #f5f0e8;
  color: #2c2535;
  overflow-x: hidden;
}

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

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

.label, .packages__card-label {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7c6b9e;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: #2c2535;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  font-family: "Jost", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: #5a5068;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-gap {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid #7c6b9e;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn--dark {
  background: #7c6b9e;
  color: #ffffff;
}
.btn--dark:hover {
  background: #2c2535;
  border-color: #2c2535;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #7c6b9e;
}
.btn--outline:hover {
  background: #7c6b9e;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn--light {
  background: #ffffff;
  color: #7c6b9e;
  border-color: #ffffff;
}
.btn--light:hover {
  background: #f5f0e8;
  transform: translateY(-2px);
}

.squiggle {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
}
.squiggle svg {
  width: 100%;
  height: 100%;
}

.site-nav {
  position: fixed;
  inset-block-start: 0;
  width: 100%;
  z-index: 100;
  padding-block: 1.25rem;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 107, 158, 0.12);
  transition: padding 0.3s;
}
.site-nav.scrolled {
  padding-block: 0.75rem;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2c2535;
}
.site-nav__logo span {
  color: #7c6b9e;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
@media (max-width: 768px) {
  .site-nav__links {
    display: none;
  }
}
.site-nav__links a {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5068;
  transition: color 0.2s;
}
.site-nav__links a:hover {
  color: #7c6b9e;
}
@media (max-width: 768px) {
  .site-nav__cta {
    display: none;
  }
}
.site-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
@media (max-width: 768px) {
  .site-nav__burger {
    display: flex;
  }
}
.site-nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #2c2535;
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.site-nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.site-nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #f5f0e8;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.site-nav__drawer.open {
  display: flex;
}
.site-nav__drawer a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c2535;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.site-nav__drawer a:hover {
  color: #7c6b9e;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block-start: 6rem;
  overflow: hidden;
  background: #f5f0e8;
}
.hero__bg-shape {
  position: absolute;
  inset-block-start: -10%;
  inset-inline-end: -5%;
  width: min(60vw, 600px);
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, #e8e0f4 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero__content {
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #7c6b9e;
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: #7c6b9e;
}
.hero__desc {
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .hero__desc {
    margin-inline: auto;
  }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero__actions {
    justify-content: center;
  }
}
.hero__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero__image-wrap {
    display: none;
  }
}
.hero__image-wrap img {
  transition: transform 8s ease;
}
.hero__image-wrap:hover img {
  transform: scale(1.04);
}
.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 107, 158, 0.15) 0%, transparent 60%);
}
.hero__scroll {
  position: absolute;
  inset-block-end: 2rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b8faa;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.about {
  background: #ffffff;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
  }
}
.about__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about__image-wrap::before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1.5px solid #d4c9e8;
  border-radius: 2px;
  z-index: 0;
}
.about__image-wrap img {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about__content {
    order: -1;
  }
}
.about__eyebrow {
  margin-bottom: 1rem;
}
.about h2 {
  margin-bottom: 1.5rem;
}
.about p {
  margin-bottom: 1.5rem;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f5f0e8;
  border-radius: 2px;
}
.about__feature-icon {
  width: 2rem;
  height: 2rem;
  background: #e8e0f4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about__feature-text {
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5a5068;
  line-height: 1.4;
}

.services {
  background: #f5f0e8;
}
.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__header h2 {
  margin-block: 1rem;
}
.services__header p {
  max-width: 52ch;
  margin-inline: auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  position: relative;
  overflow: hidden;
  background: #7c6b9e;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 2px;
  display: grid;
  gap: 1rem;
  transition: transform 0.3s;
}
.services__card:hover {
  transform: translateY(-4px);
}
.services__card::before {
  content: "";
  position: absolute;
  inset-inline-end: -2rem;
  inset-block-end: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.services__card .label, .services__card .packages__card-label {
  color: rgba(255, 255, 255, 0.6);
}
.services__card h3 {
  color: #ffffff;
}
.services__card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.services__card--light {
  background: #ede6d6;
}
.services__card--light .label, .services__card--light .packages__card-label {
  color: #7c6b9e;
}
.services__card--light h3 {
  color: #2c2535;
}
.services__card--light p {
  color: #5a5068;
}
.services__card--light::before {
  background: rgba(124, 107, 158, 0.06);
}

.packages {
  background: #ffffff;
}
.packages__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.packages__header h2 {
  margin-block: 1rem;
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .packages__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .packages__grid {
    grid-template-columns: 1fr;
  }
}
.packages__card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(124, 107, 158, 0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.packages__card:hover {
  box-shadow: 0 12px 40px rgba(124, 107, 158, 0.15);
  transform: translateY(-4px);
}
.packages__card.featured {
  border-color: #7c6b9e;
}
.packages__card.featured .packages__card-header {
  background: #7c6b9e;
}
.packages__card.featured .packages__card-label {
  color: rgba(255, 255, 255, 0.7);
}
.packages__card.featured .packages__card-title {
  color: #ffffff;
}
.packages__card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.packages__card-image img {
  transition: transform 0.5s;
}
.packages__card-image:hover img {
  transform: scale(1.05);
}
.packages__card-header {
  padding: 1.5rem 2rem;
  background: #f5f0e8;
  border-bottom: 1.5px solid rgba(124, 107, 158, 0.12);
}
.packages__card-label {
  color: #7c6b9e;
  margin-bottom: 0.4rem;
}
.packages__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2535;
}
.packages__card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}
.packages__card-body p {
  font-size: 0.875rem;
}
.packages__card-footer {
  padding: 1.5rem 2rem;
  border-top: 1.5px solid rgba(124, 107, 158, 0.12);
}

.pricing {
  background: #7c6b9e;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  inset-inline-start: -10%;
  inset-block-start: -30%;
  width: 60%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .pricing__inner {
    grid-template-columns: 1fr;
  }
}
.pricing__left .label, .pricing__left .packages__card-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.pricing__left h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.pricing__left p {
  color: rgba(255, 255, 255, 0.78);
}
.pricing__right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.pricing__row:hover {
  background: rgba(255, 255, 255, 0.12);
}
.pricing__row-name {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.pricing__row-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}
.pricing__note {
  margin-top: 1.5rem;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.testimonials {
  background: #f5f0e8;
}
.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.testimonials__header h2 {
  margin-block: 1rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonials__card:hover {
  border-color: #d4c9e8;
  transform: translateY(-3px);
}
.testimonials__stars {
  color: #7c6b9e;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonials__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2c2535;
  font-style: italic;
  flex: 1;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(124, 107, 158, 0.12);
}
.testimonials__author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e8e0f4;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #7c6b9e;
  flex-shrink: 0;
}
.testimonials__author-name {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c2535;
}
.testimonials__author-location {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  color: #9b8faa;
}

.cta-banner {
  background: #ede6d6;
  text-align: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #e8e0f4;
  filter: blur(60px);
  pointer-events: none;
}
.cta-banner::before {
  width: 30vw;
  aspect-ratio: 1;
  top: -30%;
  left: 5%;
}
.cta-banner::after {
  width: 25vw;
  aspect-ratio: 1;
  bottom: -30%;
  right: 5%;
}
.cta-banner .label, .cta-banner .packages__card-label {
  margin-bottom: 1.25rem;
}
.cta-banner h2 {
  margin-bottom: 1.5rem;
  max-width: 16ch;
  margin-inline: auto;
}
.cta-banner p {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  background: #2c2535;
  color: rgba(255, 255, 255, 0.7);
  padding-block: 4rem 2rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer__brand-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer__brand-logo span {
  color: #9b8bba;
}
.site-footer__brand p {
  font-size: 0.85rem;
  max-width: 32ch;
}
.site-footer__col h4 {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.site-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__col ul a {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.site-footer__col ul a:hover {
  color: #9b8bba;
}
.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer__bottom p {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
}
.site-footer__bottom-social {
  display: flex;
  gap: 1rem;
}
.site-footer__bottom-social a {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.site-footer__bottom-social a:hover {
  color: #9b8bba;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

@media (max-width: 1280px) {
  .hero__inner {
    gap: 2.5rem;
  }
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .site-nav__links {
    display: none;
  }
  .site-nav__cta {
    display: none;
  }
  .site-nav__burger {
    display: flex;
  }
  .hero {
    min-height: 90svh;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero__desc {
    margin-inline: auto;
    max-width: 56ch;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__image-wrap {
    display: none;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__image-wrap {
    display: block;
    aspect-ratio: 16/7;
    max-height: 320px;
  }
  .about__image-wrap::before {
    display: none;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .packages__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing__inner {
    gap: 2.5rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .section-gap {
    padding-block: clamp(3rem, 6vw, 5rem);
  }
  .site-nav {
    padding-block: 1rem;
  }
  .hero {
    min-height: 85svh;
    padding-block-start: 5rem;
  }
  .hero__scroll {
    display: none;
  }
  .about__image-wrap {
    aspect-ratio: 16/6;
    max-height: 240px;
  }
  .about__features {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .packages__grid {
    grid-template-columns: 1fr;
  }
  .pricing__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing__row {
    padding: 1rem 1.25rem;
  }
  .pricing__row-name {
    font-size: 0.82rem;
  }
  .pricing__row-price {
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 0.75rem;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: 1/-1;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  :root {
    --container-px: 1rem;
  }
  h1 {
    font-size: 2.4rem;
    line-height: 1.08;
  }
  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .site-nav__logo {
    font-size: 1.05rem;
  }
  .hero {
    min-height: 100svh;
    padding-block-start: 4.5rem;
  }
  .hero__eyebrow {
    margin-bottom: 1rem;
  }
  .hero__desc {
    margin-bottom: 2rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .about__image-wrap {
    max-height: 200px;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
  .about__feature-text {
    font-size: 0.85rem;
  }
  .services__card {
    padding: 1.75rem 1.5rem;
  }
  .packages__card-header,
  .packages__card-body,
  .packages__card-footer {
    padding: 1.25rem 1.5rem;
  }
  .pricing__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
  }
  .pricing__row-price {
    margin-left: 0;
    font-size: 1.3rem;
  }
  .testimonials__card {
    padding: 1.5rem;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__brand {
    grid-column: 1;
  }
  .site-footer {
    padding-block: 3rem 1.5rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=main.css.map */
