/* =========================================================
   LIV WAX & GLOW
   Main Stylesheet
   ========================================================= */


/* -------------------------
   Google Fonts
   ------------------------- */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');


/* -------------------------
   Variables
   ------------------------- */

:root {
  --cream: #fdf8f5;
  --cream-dark: #f6ede8;
  --blush: #e8c8c5;
  --blush-light: #f5e5e2;
  --rose: #b87878;
  --rose-dark: #8e5555;

  --brown: #4a3633;
  --brown-light: #725c58;

  --white: #ffffff;
  --border: rgba(74, 54, 51, 0.12);

  --shadow-soft: 0 20px 60px rgba(74, 54, 51, 0.1);
  --shadow-card: 0 12px 35px rgba(74, 54, 51, 0.08);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;

  --max-width: 1200px;
}


/* -------------------------
   Reset
   ------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 88px;
  padding: 16px max(6%, calc((100% - var(--max-width)) / 2));

  background: rgba(253, 248, 245, 0.94);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--rose);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a:not(.nav-book-button) {
  position: relative;
  color: var(--brown-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links > a:not(.nav-book-button)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--rose);
  transition: width 0.25s ease;
}

.nav-links > a:not(.nav-book-button):hover::after {
  width: 100%;
}

.nav-book-button {
  padding: 11px 22px;
  border-radius: 999px;

  background: var(--rose);
  color: var(--white);

  font-size: 0.88rem;
  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-book-button:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;
  padding: 8px;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;
  margin: 5px auto;

  background: var(--brown);
  border-radius: 999px;
}


/* =========================================================
   GLOBAL COMPONENTS
   ========================================================= */

.section {
  width: 100%;
  padding: 110px max(6%, calc((100% - var(--max-width)) / 2));
}

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

.section-label,
.eyebrow {
  margin-bottom: 14px;

  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.faq-heading h2,
.location-copy h2 {
  margin-bottom: 20px;

  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.faq-heading > p:last-child {
  color: var(--brown-light);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 27px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 0.94rem;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(184, 120, 120, 0.25);
}

.button-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 14px 36px rgba(184, 120, 120, 0.32);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.5);
  color: var(--brown);
}

.button-secondary:hover {
  border-color: var(--rose);
  background: var(--white);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 80px;

  min-height: calc(100vh - 88px);
  padding: 80px max(6%, calc((100% - var(--max-width)) / 2));

  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -220px;
  z-index: -1;

  width: 500px;
  height: 500px;

  background: var(--blush-light);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.65;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;

  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-description {
  max-width: 590px;
  margin-bottom: 34px;

  color: var(--brown-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-details {
  display: flex;
  gap: 50px;

  margin-top: 52px;
  padding-top: 26px;

  border-top: 1px solid var(--border);
}

.hero-details div {
  display: flex;
  flex-direction: column;
}

.hero-details strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.hero-details span {
  color: var(--brown-light);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-shape {
  position: absolute;
  top: 4%;
  right: -10%;

  width: 90%;
  height: 88%;

  background: var(--blush);
  border-radius: 48% 48% 42% 58% / 42% 56% 44% 58%;

  transform: rotate(5deg);
}

.hero-image-card {
  position: absolute;
  top: 0;
  right: 5%;
  z-index: 2;

  width: 82%;
  height: 92%;

  overflow: hidden;
  border-radius: 48% 48% 44% 56% / 42% 55% 45% 58%;

  box-shadow: var(--shadow-soft);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 3%;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px 21px;

  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;

  box-shadow: var(--shadow-card);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  background: var(--blush-light);
  color: var(--rose);

  border-radius: 50%;
  font-size: 1.1rem;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.floating-card div span {
  color: var(--brown-light);
  font-size: 0.78rem;
}


/* =========================================================
   INTRO STRIP
   ========================================================= */

.intro-strip {
  padding: 34px 6%;

  background: var(--brown);
  color: var(--cream);

  text-align: center;
}

.intro-strip p {
  max-width: 850px;
  margin: 0 auto;

  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 350px;
  padding: 32px;

  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 120, 120, 0.35);
  box-shadow: var(--shadow-card);
}

.service-number {
  margin-bottom: 50px;

  color: var(--rose);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.service-card h3 {
  margin-bottom: 14px;

  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 24px;

  color: var(--brown-light);
  font-size: 0.92rem;
}

.service-card a {
  margin-top: auto;

  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.section-button {
  margin-top: 46px;
  text-align: center;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;

  background: var(--cream);
}

.about-images {
  position: relative;
  min-height: 660px;
}

.about-image {
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-large {
  position: absolute;
  top: 0;
  left: 0;

  width: 78%;
  height: 88%;

  border-radius: 220px 220px 30px 30px;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;

  width: 45%;
  height: 42%;

  border: 8px solid var(--cream);
  border-radius: 20px;
}

.about-copy > p:not(.section-label) {
  margin-bottom: 20px;
  color: var(--brown-light);
}

.about-signature {
  display: flex;
  flex-direction: column;

  margin: 35px 0 25px;
  padding-left: 20px;

  border-left: 2px solid var(--blush);
}

.about-signature span {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
}

.about-signature small {
  color: var(--brown-light);
}

.text-link {
  display: inline-block;

  color: var(--rose-dark);
  font-weight: 700;

  transition: transform 0.25s ease;
}

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


/* =========================================================
   WHY SUGARING
   ========================================================= */

.sugaring-section {
  background: var(--brown);
  color: var(--cream);
}

.light-heading > p:last-child {
  color: rgba(253, 248, 245, 0.72);
}

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

.benefit-card {
  min-height: 310px;
  padding: 30px;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  margin-bottom: 60px;

  background: var(--blush);
  color: var(--brown);

  border-radius: 50%;

  font-family: var(--serif);
  font-size: 0.82rem;
}

.benefit-card h3 {
  margin-bottom: 12px;

  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.benefit-card p {
  color: rgba(253, 248, 245, 0.68);
  font-size: 0.9rem;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
  background: var(--blush-light);
}

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

.review-card {
  display: flex;
  flex-direction: column;

  min-height: 300px;
  padding: 35px;

  background: var(--white);
  border-radius: 22px;

  box-shadow: var(--shadow-card);
}

.review-stars {
  margin-bottom: 28px;

  color: var(--rose);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.review-card p {
  margin-bottom: 28px;

  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
}

.review-card strong {
  margin-top: auto;
  font-size: 0.85rem;
}

.review-note {
  margin-top: 25px;

  color: var(--brown-light);
  font-size: 0.78rem;
  text-align: center;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
  gap: 100px;

  background: var(--white);
}

.faq-heading {
  position: sticky;
  top: 140px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;

  padding-right: 45px;

  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;

  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';

  position: absolute;
  top: 50%;
  right: 5px;

  color: var(--rose);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;

  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 18px 45px 0 0;

  color: var(--brown-light);
  font-size: 0.94rem;
}


/* =========================================================
   LOCATION
   ========================================================= */

.location-section {
  background: var(--cream);
}

.location-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  min-height: 530px;

  overflow: hidden;
  background: var(--white);
  border-radius: 28px;

  box-shadow: var(--shadow-card);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px;
}

.location-copy > p:not(.section-label) {
  margin-bottom: 30px;
  color: var(--brown-light);
}

.location-details {
  display: grid;
  gap: 18px;

  margin-bottom: 35px;
  padding: 25px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-details div {
  display: flex;
  flex-direction: column;
}

.location-details strong {
  font-size: 0.82rem;
}

.location-details span {
  color: var(--brown-light);
  font-size: 0.9rem;
}

.location-copy .button {
  align-self: flex-start;
}

.location-map {
  min-height: 530px;
}

.location-map iframe {
  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   FINAL BOOKING CTA
   ========================================================= */

.booking-section {
  position: relative;

  padding: 130px 6%;

  overflow: hidden;
  background: var(--rose);
  color: var(--white);

  text-align: center;
}

.booking-section::before,
.booking-section::after {
  content: '';
  position: absolute;

  width: 400px;
  height: 400px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.booking-section::before {
  top: -250px;
  left: -100px;
}

.booking-section::after {
  right: -120px;
  bottom: -260px;
}

.booking-inner {
  position: relative;
  z-index: 2;

  max-width: 750px;
  margin: 0 auto;
}

.booking-inner .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.booking-inner h2 {
  margin-bottom: 20px;

  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.booking-inner > p:not(.section-label) {
  max-width: 540px;
  margin: 0 auto 32px;

  color: rgba(255, 255, 255, 0.82);
}

.booking-button {
  background: var(--white);
  color: var(--rose-dark);
}

.booking-button:hover {
  background: var(--cream);
}


/* =========================================================
   FOOTER
   ========================================================= */

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

  padding: 75px max(6%, calc((100% - var(--max-width)) / 2)) 30px;

  background: #352724;
  color: var(--cream);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(253, 248, 245, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 100px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links h3 {
  margin-bottom: 8px;

  color: var(--blush);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(253, 248, 245, 0.72);
  font-size: 0.9rem;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;

  display: flex;
  justify-content: space-between;

  margin-top: 65px;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(253, 248, 245, 0.45);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--blush);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 6rem);
  }

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

  .about-section {
    gap: 60px;
  }

  .about-images {
    min-height: 580px;
  }

  .faq-section {
    gap: 60px;
  }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 850px) {

  .navbar {
    min-height: 76px;
  }

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    width: 100%;
    max-height: 0;
    padding: 0 6%;

    overflow: hidden;

    background: var(--cream);
    border-bottom: 1px solid transparent;

    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-links.open {
    max-height: 500px;
    padding-top: 15px;
    padding-bottom: 25px;

    border-bottom-color: var(--border);

    opacity: 1;
    visibility: visible;
  }

  .nav-links > a:not(.nav-book-button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links > a:not(.nav-book-button)::after {
    display: none;
  }

  .nav-book-button {
    margin-top: 18px;
    text-align: center;
  }


  /* Hero */

  .hero {
    grid-template-columns: 1fr;

    min-height: auto;
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-details {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 580px;
    min-height: 600px;
    margin: 20px auto 0;
  }


  /* About */

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-images {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }


  /* Reviews */

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


  /* FAQ */

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }


  /* Location */

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 400px;
  }


  /* Footer */

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

  .footer-links {
    justify-content: flex-start;
    margin-top: 50px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .section {
    padding: 80px 20px;
  }

  .navbar {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-links {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    gap: 45px;

    padding: 65px 20px 70px;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-details {
    gap: 20px;
  }

  .hero-details > div {
    flex: 1;
  }

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

  .hero-shape {
    right: -5%;
    width: 95%;
  }

  .hero-image-card {
    right: 7%;
    width: 86%;
  }

  .floating-card {
    right: 0;
    bottom: 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .location-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

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

  .service-card {
    min-height: 300px;
  }

  .service-number {
    margin-bottom: 35px;
  }

  .about-section {
    gap: 55px;
  }

  .about-images {
    min-height: 500px;
  }

  .about-image-large {
    width: 84%;
    height: 86%;
  }

  .about-image-small {
    width: 48%;
    height: 38%;
  }

  .benefit-card {
    min-height: 270px;
  }

  .benefit-icon {
    margin-bottom: 40px;
  }

  .faq-section {
    gap: 45px;
  }

  .location-copy {
    padding: 40px 25px;
  }

  .location-map {
    min-height: 330px;
  }

  .booking-section {
    padding: 100px 20px;
  }

  .booking-inner h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-links {
    gap: 55px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {

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

  .hero-details {
    flex-direction: column;
  }

  .floating-card {
    padding: 13px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 35px;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

}