* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #fbf8f7;
  color: #171717;
  padding-top: 82px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   NAVBAR
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar {
  width: 100%;
  height: 82px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  color: #1d1d1d;
  letter-spacing: 7px;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.brand small {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 7px;
}

.brand::after {
  content: "";
  width: 140px;
  height: 1px;
  margin-top: 7px;
  background: linear-gradient(90deg, transparent, #d8a16c, transparent);
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.nav-links a {
  position: relative;
  font-size: 11px;
  color: #191919;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%) scaleX(0);
  width: 26px;
  height: 2px;
  background: #e59ab4;
  transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(25,25,25,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #191919;
  font-size: 15px;
  transition: 0.3s ease;
  text-decoration: none;
}

.login-btn:hover {
  background: #f7d7e2;
  border-color: #e59ab4;
}

.book-btn {
  background: linear-gradient(135deg, #e89bb8, #c97484);
  color: #fff;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(218,123,151,0.32);
  transition: 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(218,123,151,0.45);
}

.menu-toggle {
  display: none;
}

/* ================================
   MOBILE MENU
================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(145deg, #e9a2b8, #cf7788);
  padding: 28px 24px;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.close-menu {
  position: absolute;
  right: 24px;
  top: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-brand {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
  font-size: 24px;
  margin: 45px 0 30px;
}

.mobile-brand small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 8px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.mobile-links a {
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-book,
.mobile-login {
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-book {
  background: #fff;
  color: #cf7788;
}

.mobile-login {
  border: 1px solid rgba(255,255,255,0.75);
  color: #fff;
}

/* ================================
   TABLET
================================ */
@media (max-width: 1180px) {
  .navbar {
    padding: 0 26px;
    gap: 20px;
  }

  .brand {
    font-size: 21px;
    letter-spacing: 5.5px;
  }

  .brand::after {
    width: 115px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .book-btn {
    padding: 14px 22px;
  }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  body {
    padding-top: 76px;
  }

  .navbar {
    height: 76px;
    padding: 0 22px;
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 21px;
    letter-spacing: 5.5px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 3.5px;
  }

  .brand::after {
    width: 115px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    left: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 30px;
    height: 2px;
    background: #1c1c1c;
    display: block;
  }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
  body {
    padding-top: 72px;
  }

  .navbar {
    height: 72px;
    padding: 0 18px;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 4.5px;
  }

  .brand small {
    font-size: 7px;
    letter-spacing: 3px;
  }

  .brand::after {
    width: 100px;
  }

  .menu-toggle {
    left: 18px;
  }

  .menu-toggle span {
    width: 27px;
  }

  .mobile-menu {
    padding: 26px 22px;
  }

  .mobile-brand {
    font-size: 21px;
    letter-spacing: 5px;
    margin: 42px 0 24px;
  }

  .mobile-links a {
    padding: 10px 0;
    font-size: 11px;
  }

  .mobile-book,
  .mobile-login {
    height: 48px;
    font-size: 10px;
  }
}

.hidden-admin {
  display: none;
}

/* ================================
   GLOBAL HOMEPAGE STYLES
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff8fa;
  color: #171717;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ================================
   REUSABLE
================================ */

.section-kicker {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

em {
  color: #dc5f88;
  font-style: italic;
}

.primary-btn,
.section-link-btn,
.cta-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 2px;
  background: #cf3f6f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 800;
  transition: 0.3s ease;
}

.primary-btn:hover,
.section-link-btn:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(207, 63, 111, 0.28);
}

.blank-image {
  background:
    linear-gradient(135deg, rgba(220, 95, 136, 0.12), rgba(255,255,255,0.7)),
    #f9dce5;
}

/* ================================
   HERO
================================ */

.hairvine-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 120px 6% 90px;

  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 80% 45%, rgba(220, 95, 136, 0.22), transparent 34%),
    linear-gradient(135deg, #fffefe 0%, #ffe8ef 45%, #f8a9c0 100%);
}

/* SOFT BACKGROUND BLOBS */

.hairvine-hero::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  filter: blur(28px);
  animation: heroBlob 10s ease-in-out infinite;
}

.hairvine-hero::after {
  content: "";
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(220,95,136,0.16);
  filter: blur(32px);
  animation: heroBlob 12s ease-in-out infinite reverse;
}

/* STARS */

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  text-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 20px rgba(255,255,255,0.7);
  animation: starTwinkle 2.8s ease-in-out infinite;
}

.star-1 { top: 18%; left: 7%; animation-delay: 0s; }
.star-2 { top: 28%; left: 18%; font-size: 16px; animation-delay: 0.4s; }
.star-3 { top: 16%; left: 30%; font-size: 26px; animation-delay: 0.9s; }
.star-4 { top: 36%; left: 42%; font-size: 18px; animation-delay: 1.3s; }
.star-5 { top: 24%; left: 58%; font-size: 15px; animation-delay: 0.6s; }
.star-6 { top: 18%; right: 12%; font-size: 26px; animation-delay: 1.1s; }
.star-7 { top: 38%; right: 8%; animation-delay: 1.7s; }
.star-8 { top: 55%; left: 10%; font-size: 26px; animation-delay: 0.8s; }
.star-9 { top: 64%; left: 24%; font-size: 15px; animation-delay: 1.4s; }
.star-10 { top: 58%; left: 45%; font-size: 18px; animation-delay: 2s; }
.star-11 { top: 66%; right: 28%; font-size: 16px; animation-delay: 0.2s; }
.star-12 { top: 52%; right: 14%; font-size: 23px; animation-delay: 1s; }
.star-13 { bottom: 12%; left: 8%; font-size: 16px; animation-delay: 1.9s; }
.star-14 { bottom: 8%; left: 28%; font-size: 20px; animation-delay: 0.7s; }
.star-15 { bottom: 10%; right: 24%; font-size: 18px; animation-delay: 1.5s; }
.star-16 { bottom: 16%; right: 7%; font-size: 22px; animation-delay: 0.3s; }
.star-17 { top: 75%; left: 55%; font-size: 14px; animation-delay: 2.2s; }
.star-18 { top: 44%; left: 72%; font-size: 13px; animation-delay: 1.2s; }

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 3;

  max-width: 860px;
  text-align: center;

  animation: heroFadeUp 1s ease both;
}

.hero-kicker {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  color: #161616;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-content h1 em {
  color: #dc5f88;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #dc5f88;
  margin-bottom: 28px;
}

.hero-line span {
  width: 130px;
  height: 1px;
  background: rgba(220,95,136,0.55);
}

.hero-text {
  color: #333;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-btn {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 800;

  transition: 0.3s ease;
}

.hero-btn.primary {
  padding: 0 42px;
  background: linear-gradient(135deg, #e56f96, #c93f70);
  color: #fff;
  border-radius: 8px;
}

.hero-btn.primary:hover {
  background: #111;
  color: #fff;
}

.hero-btn.secondary {
  color: #111;
  padding: 0 8px;
}

.hero-btn.secondary:hover {
  color: #dc5f88;
}

/* ANIMATIONS */

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes heroBlob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(22px) scale(1.08);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */

@media (max-width: 900px) {
  .hairvine-hero {
    min-height: 78vh;
    padding: 110px 5% 80px;
  }

  .hero-content h1 {
    font-size: 68px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-line span {
    width: 90px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .hairvine-hero {
    min-height: 76vh;
    padding: 95px 18px 70px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-line span {
    width: 70px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-btn.primary {
    width: auto;
    min-width: 260px;
    margin: 0 auto;
    padding: 0 22px;
  }

  .hero-actions {
  flex-direction: column;
  align-items: center;
}

  .hero-btn.secondary {
    height: auto;
  }

  .star {
    font-size: 14px;
  }
}


/* ================================
   BENEFITS BAR - FIXED PROPERLY
================================ */
.benefits-bar-option-two {
  width: 100%;
  padding: 18px 6%;
  background: linear-gradient(135deg, #f35f97 0%, #ec4f8c 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
}

.benefit-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 0 10px;
  text-align: left;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: #ec4f8c;
  font-size: 16px;
}

.benefit-text {
  min-width: 0;
}

.benefit-text h4 {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 3px;
  line-height: 1.2;
  white-space: nowrap;
}

.benefit-text p {
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

/* TABLET */
@media (max-width: 900px) {
  .benefits-bar-option-two {
    padding: 14px 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-box {
    flex-direction: row !important;
    gap: 6px;
    padding: 0 4px;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .benefit-icon i {
    font-size: 10px;
  }

  .benefit-text h4 {
    font-size: 6.5px;
    letter-spacing: 0.35px;
    line-height: 1.15;
  }

  .benefit-text p {
    font-size: 6px;
    line-height: 1.15;
  }
}

/* MOBILE */
@media (max-width: 650px) {
  .benefits-bar-option-two {
    padding: 10px 4px;
  }

  .benefit-box {
    flex-direction: row !important;
    gap: 4px;
    padding: 0 2px;
  }

  .benefit-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .benefit-icon i {
    font-size: 8px;
  }

  .benefit-text h4 {
    font-size: 5px;
    letter-spacing: 0.15px;
  }

  .benefit-text p {
    font-size: 4.6px;
  }
}

/* =====================================================
   OUR SERVICES
===================================================== */

.home-services {
  --service-pink: #df4f80;
  --service-pink-dark: #bd345f;
  --service-gold: #d5a64a;
  --service-cream: #fffaf7;
  --service-text: #292426;
  --service-muted: #746c6f;

  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 5% 110px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(223, 79, 128, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(213, 166, 74, 0.08),
      transparent 26%
    ),
    var(--service-cream);
}

.home-services-container {
  width: min(1380px, 100%);
  margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.home-services-heading {
  max-width: 950px;
  margin: 0 auto 52px;
  text-align: center;
}

.services-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}

.services-kicker-row span {
  width: 55px;
  height: 1px;
  background: var(--service-gold);
}

.services-kicker-row p {
  margin: 0;
  color: var(--service-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.home-services-heading h2 {
  margin: 0;
  color: var(--service-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -2px;
}

.home-services-heading h2 em {
  color: var(--service-pink);
  font-weight: 500;
}

.home-services-subtitle {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--service-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* =====================================================
   SERVICES GRID
===================================================== */

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.home-service-card {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  border-radius: 12px;
  background: #e9dfdb;
  box-shadow: 0 18px 42px rgba(53, 37, 43, 0.11);
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.home-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(53, 37, 43, 0.17);
}

.home-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.home-service-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

/* Dark shading only on the text side */
.home-service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(13, 10, 11, 0.88) 0%,
      rgba(13, 10, 11, 0.7) 29%,
      rgba(13, 10, 11, 0.22) 58%,
      rgba(13, 10, 11, 0.02) 100%
    );
  transition: background 0.4s ease;
}

.home-service-card:hover .home-service-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(13, 10, 11, 0.91) 0%,
      rgba(13, 10, 11, 0.72) 30%,
      rgba(13, 10, 11, 0.2) 60%,
      rgba(13, 10, 11, 0.01) 100%
    );
}

/* =====================================================
   CARD CONTENT
===================================================== */

.home-service-content {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: min(48%, 320px);
  padding: 32px 0 32px 30px;
  color: #fff;
  transform: translateY(-50%);
  transition: transform 0.4s ease;
}

.home-service-card:hover .home-service-content {
  transform: translateY(calc(-50% - 3px));
}

.home-service-content h3 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.home-service-line {
  display: block;
  width: 38px;
  height: 2px;
  margin: 18px 0;
  background: var(--service-gold);
  transition: width 0.35s ease;
}

.home-service-card:hover .home-service-line {
  width: 64px;
}

.home-service-content p {
  max-width: 265px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.65;
}

/* =====================================================
   CARD LINKS
===================================================== */

.home-service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  color: var(--service-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.home-service-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--service-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.home-service-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-service-arrow {
  font-size: 19px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.home-service-link:hover .home-service-arrow {
  transform: translateX(7px);
}

/* =====================================================
   PINK MAIN BUTTON
===================================================== */

.home-services-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.home-services-button {
  position: relative;
  display: inline-flex;
  min-width: 335px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--service-pink);
  border-radius: 6px;
  background: var(--service-pink);
  color: #fff;
  box-shadow: 0 16px 36px rgba(223, 79, 128, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.1px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.home-services-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--service-pink-dark);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-services-button::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 32%;
  height: 300%;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(24deg) translateX(-230%);
  transition: transform 0.7s ease;
}

.home-services-button span {
  position: relative;
  z-index: 2;
}

.home-services-button:hover {
  transform: translateY(-4px);
  border-color: var(--service-pink-dark);
  box-shadow: 0 24px 48px rgba(223, 79, 128, 0.32);
}

.home-services-button:hover::before {
  transform: translateX(0);
}

.home-services-button:hover::after {
  transform: rotate(24deg) translateX(570%);
}

.home-services-button-arrow {
  font-size: 20px;
  transition: transform 0.35s ease;
}

.home-services-button:hover .home-services-button-arrow {
  transform: translateX(7px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {
  .home-services {
    padding: 88px 4% 95px;
  }

  .home-service-card {
    min-height: 320px;
  }

  .home-service-content {
    width: 54%;
    padding-left: 24px;
  }

  .home-service-content h3 {
    font-size: 38px;
  }
}

/* =====================================================
   MOBILE — TWO BY TWO
===================================================== */

@media (max-width: 700px) {
  .home-services {
    padding: 70px 12px 78px;
  }

  .home-services-heading {
    margin-bottom: 35px;
  }

  .services-kicker-row {
    gap: 12px;
    margin-bottom: 14px;
  }

  .services-kicker-row span {
    width: 38px;
  }

  .services-kicker-row p {
    font-size: 9px;
    letter-spacing: 2.8px;
  }

  .home-services-heading h2 {
    font-size: clamp(45px, 14vw, 62px);
    line-height: 0.97;
  }

  .home-services-subtitle {
    max-width: 320px;
    margin-top: 17px;
    font-size: 12px;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-service-card {
    min-height: 285px;
    border-radius: 9px;
  }

  .home-service-card img {
    object-position: center top;
  }

  .home-service-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(13, 10, 11, 0.01) 0%,
        rgba(13, 10, 11, 0.08) 35%,
        rgba(13, 10, 11, 0.78) 72%,
        rgba(13, 10, 11, 0.94) 100%
      );
  }

  .home-service-card:hover .home-service-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(13, 10, 11, 0.01) 0%,
        rgba(13, 10, 11, 0.08) 35%,
        rgba(13, 10, 11, 0.78) 72%,
        rgba(13, 10, 11, 0.94) 100%
      );
  }

  .home-service-content {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 13px 14px;
    transform: none;
  }

  .home-service-card:hover .home-service-content {
    transform: translateY(-2px);
  }

  .home-service-content h3 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .home-service-line {
    width: 24px;
    height: 1px;
    margin: 10px 0;
  }

  .home-service-card:hover .home-service-line {
    width: 38px;
  }

  .home-service-content p {
    margin-bottom: 12px;
    font-size: 9px;
    line-height: 1.45;
  }

  .home-service-link {
    gap: 7px;
    font-size: 7px;
    letter-spacing: 0.8px;
  }

  .home-service-arrow {
    font-size: 14px;
  }

  .home-services-button-wrap {
    margin-top: 26px;
  }

  .home-services-button {
    width: 100%;
    max-width: 345px;
    min-width: 0;
    min-height: 54px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {
  .home-services {
    padding-inline: 8px;
  }

  .home-services-grid {
    gap: 7px;
  }

  .home-service-card {
    min-height: 265px;
  }

  .home-service-content {
    padding: 14px 10px 12px;
  }

  .home-service-content h3 {
    font-size: 20px;
  }

  .home-service-content p {
    font-size: 8px;
  }

  .home-service-link {
    font-size: 6.5px;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

.home-service-link:focus-visible,
.home-services-button:focus-visible {
  outline: 3px solid rgba(223, 79, 128, 0.35);
  outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
  .home-service-card,
  .home-service-card img,
  .home-service-content,
  .home-service-line,
  .home-service-link::after,
  .home-service-arrow,
  .home-services-button,
  .home-services-button::before,
  .home-services-button::after,
  .home-services-button-arrow {
    transition: none;
  }
}

/* ================================
   GALLERY
================================ */
.gallery-highlight {
  padding: 85px 6%;
  background:
    radial-gradient(circle at top left, rgba(220, 95, 136, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(220, 95, 136, 0.05), transparent 30%),
    #fffdfd;
}

.gallery-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 42px;
}

.gallery-heading > p:first-child {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.gallery-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #dc5f88;
  margin-bottom: 16px;
}

.gallery-line span {
  width: 38px;
  height: 1px;
  background: rgba(220, 95, 136, 0.45);
}

.gallery-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: #161616;
  margin-bottom: 14px;
}

.gallery-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.gallery-btn {
  height: 48px;
  padding: 0 34px;
  background: #dc5f88;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 11px;
  font-weight: 800;
  transition: 0.3s ease;
}

.gallery-btn:hover {
  background: #111;
}

/* GALLERY GRID */

.gallery-mobile-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 10px;
}

.gallery-img-placeholder,
.gallery-full-card {
  background: linear-gradient(135deg, #d8d8d8, #bdbdbd);
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
}

.gallery-img-placeholder:nth-child(1) {
  grid-row: span 2;
}

.gallery-img-placeholder:nth-child(2) {
  grid-column: span 1;
}

.gallery-img-placeholder:nth-child(4) {
  grid-row: span 2;
}

.gallery-img-placeholder:nth-child(6) {
  grid-column: span 1;
}

.gallery-full-card {
  background: #fff;
  border: 1.5px solid #dc5f88;
  color: #dc5f88;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.gallery-full-card i {
  font-size: 24px;
}

.gallery-full-card:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* TABLET */

@media (max-width: 950px) {
  .gallery-mobile-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .gallery-highlight {
    padding: 70px 18px;
  }

  .gallery-heading {
    margin-bottom: 34px;
  }

  .gallery-heading h2 {
    font-size: 48px;
  }

  .gallery-mobile-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 145px;
    gap: 8px;
  }

  .gallery-img-placeholder:nth-child(1),
  .gallery-img-placeholder:nth-child(4) {
    grid-row: span 1;
  }

  .gallery-full-card {
    min-height: 145px;
  }

  .gallery-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ================================
   ABOUT
================================ */

.about-preview {
  position: relative;
  overflow: hidden;
  padding: 65px 6%;
  background:
    radial-gradient(circle at top left, rgba(220, 95, 136, 0.05), transparent 26%),
    radial-gradient(circle at bottom right, rgba(220, 95, 136, 0.04), transparent 28%),
    #fffdfd;
}

/* HEADING */

.about-heading {
  text-align: center;
  margin-bottom: 34px;
}

.about-heading p {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 9px;
}

.about-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #dc5f88;
}

.about-line span {
  width: 32px;
  height: 1px;
  background: rgba(220, 95, 136, 0.42);
}

/* LAYOUT */

.about-layout {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr 330px 1fr;
  align-items: center;
  gap: 30px;
}

/* TEXT */

.about-text {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal-about.active .about-text {
  opacity: 1;
  transform: translateY(0);
}

.about-right {
  transition-delay: 0.15s;
}

.about-kicker {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  color: #161616;
  margin-bottom: 16px;
}

.about-text h2 em {
  color: #dc5f88;
  font-style: italic;
  font-weight: 500;
}

.about-small-line {
  width: 34px;
  height: 2px;
  background: #dc5f88;
  margin-bottom: 18px;
  border-radius: 999px;
}

.about-text p:last-child {
  color: #555;
  line-height: 1.8;
  font-size: 13px;
}

/* IMAGE PLACEHOLDER */

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: linear-gradient(135deg, #d8d8d8, #bfbfbf);
  border: 1px solid rgba(220, 95, 136, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.92);
  transition: 0.85s ease;
}

.reveal-about.active .about-image-placeholder {
  opacity: 1;
  transform: scale(1);
}

.about-image-placeholder span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 9px;
  font-weight: 800;
}

/* FEATURES */

.about-features {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-feature {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(220, 95, 136, 0.09);
  border-radius: 18px;
  padding: 25px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(34px);
  transition: 0.35s ease;
}

.reveal-about.active .about-feature {
  opacity: 1;
  transform: translateY(0);
}

.reveal-about.active .about-feature:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-about.active .about-feature:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-about.active .about-feature:nth-child(4) {
  transition-delay: 0.24s;
}

.about-feature:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(220, 95, 136, 0.12);
  border-color: rgba(220, 95, 136, 0.2);
}

.about-feature i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(220, 95, 136, 0.1);
  color: #dc5f88;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}

.about-feature h3 {
  font-family: "Cormorant Garamond", serif;
  color: #181818;
  font-size: 21px;
  margin-bottom: 8px;
}

.about-feature p {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

/* BUTTON */

.about-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.about-action a {
  height: 46px;
  padding: 0 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e56f96, #c93f70);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(201, 63, 112, 0.2);
  transition: 0.3s ease;
}

.about-action a:hover {
  background: #111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* TABLET */

@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    max-width: 650px;
    gap: 30px;
    text-align: center;
  }

  .about-small-line {
    margin-inline: auto;
  }

  .about-image-placeholder {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .about-preview {
    padding: 60px 18px;
  }

  .about-heading {
    margin-bottom: 30px;
  }

  .about-layout {
    gap: 26px;
    margin-bottom: 36px;
  }

  .about-text h2 {
    font-size: 38px;
  }

  .about-text p:last-child {
    font-size: 13px;
    line-height: 1.75;
  }

  .about-image-placeholder {
    max-width: 310px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-feature {
    padding: 24px 18px;
  }

  .about-action a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   HAIRVINE STATS BAR
========================================= */

.hairvine-stats {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 24px 6%;
  background:
    radial-gradient(circle at 0% 50%, rgba(220, 95, 136, 0.28), transparent 24%),
    radial-gradient(circle at 100% 50%, rgba(220, 95, 136, 0.24), transparent 26%),
    linear-gradient(135deg, #080808 0%, #151515 50%, #080808 100%);
  color: #fff;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.hairvine-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.035) 50%,
    transparent 100%
  );
  animation: statsShine 7s ease-in-out infinite;
  pointer-events: none;
}

.hairvine-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255,255,255,0.22) 1px,
    transparent 1px
  );
  background-size: 46px 46px;
  opacity: 0.045;
  pointer-events: none;
}

.stat-item {
  position: relative;
  z-index: 2;
  text-align: center;
  min-width: 0;
}

.stat-item i {
  display: block;
  color: #ff6fa0;
  font-size: 20px;
  margin-bottom: 8px;
}

.stat-item h3 {
  font-family: "Cormorant Garamond", serif;
  color: #ff6fa0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 600;
}

.stat-item p {
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  line-height: 1.2;
}

.stat-divider {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,111,160,0.65),
    transparent
  );
}

@keyframes statsShine {
  0% {
    transform: translateX(-100%);
  }

  50%,
  100% {
    transform: translateX(100%);
  }
}

/* TABLET */

@media (max-width: 900px) {
  .hairvine-stats {
    padding: 20px 18px;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }

  .stat-item i {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 10px;
  }

  .stat-divider {
    height: 38px;
  }
}

/* MOBILE - STILL HORIZONTAL */

@media (max-width: 600px) {
  .hairvine-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 6px;
    padding: 16px 8px;
  }

  .stat-item i {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .stat-item h3 {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .stat-item p {
    font-size: 7.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .stat-divider {
    display: block;
    height: 30px;
  }
}

/* =================================
   PREMIUM REVIEWS
================================= */

.premium-reviews {
  --review-pink: #d94f7b;
  --review-pink-dark: #bd345f;
  --review-pink-soft: #fff1f5;
  --review-bg: #fffafb;
  --review-text: #2f2a2c;
  --review-muted: #7d7478;
  --review-border: rgba(217, 79, 123, 0.16);

  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 105px 5% 115px;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(244, 180, 200, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(244, 180, 200, 0.16),
      transparent 25%
    ),
    var(--review-bg);
}

.reviews-top {
  width: min(850px, 100%);
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-kicker,
.review-modal-kicker {
  margin-bottom: 15px;
  color: var(--review-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.reviews-top h2 {
  margin: 0;
  color: var(--review-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.95;
}

.reviews-top h2 em {
  color: var(--review-pink);
  font-weight: 500;
}

.reviews-subtitle {
  margin: 20px auto 0;
  color: var(--review-muted);
  font-size: 15px;
  line-height: 1.7;
}

.write-review-btn,
.outline-review-btn,
.submit-review-btn,
.review-success-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 30px;
  border-radius: 4px;
  background: var(--review-pink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(217, 79, 123, 0.22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.write-review-btn:hover {
  background: var(--review-pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(217, 79, 123, 0.28);
}

/* =================================
   REVIEWS SLIDER
================================= */

.reviews-slider-wrap {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.reviews-viewport {
  overflow: hidden;
  padding: 15px 4px 28px;
}

.reviews-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  min-height: 370px;
  overflow: hidden;
  padding: 38px 34px 32px;
  border: 1px solid var(--review-border);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 244, 248, 0.94)
    );
  box-shadow: 0 18px 55px rgba(73, 45, 55, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 79, 123, 0.3);
  box-shadow: 0 28px 70px rgba(73, 45, 55, 0.12);
}

.review-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(217, 79, 123, 0.06);
}

.quote-mark {
  display: block;
  margin-bottom: 10px;
  color: var(--review-pink);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.8;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
  color: var(--review-pink);
  font-size: 14px;
}

.review-card blockquote,
.review-card .review-text {
  margin: 0;
  color: #4f464a;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.42;
}

.review-divider {
  width: 42px;
  height: 1px;
  margin: 28px 0 18px;
  background: var(--review-pink);
}

.review-client-name,
.review-card h4 {
  margin: 0 0 8px;
  color: var(--review-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--review-muted);
  font-size: 12px;
  line-height: 1.5;
}

.review-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 7px;
  color: #c6b8bd;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--review-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--review-pink);
  box-shadow: 0 12px 30px rgba(73, 45, 55, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.reviews-arrow:hover {
  background: var(--review-pink);
  color: #fff;
}

.reviews-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.reviews-arrow-left {
  left: -24px;
}

.reviews-arrow-right {
  right: -24px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  min-height: 12px;
  margin-top: 24px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e5cbd4;
  cursor: pointer;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease;
}

.review-dot.active {
  width: 27px;
  border-radius: 20px;
  background: var(--review-pink);
}

/* =================================
   LOADING AND EMPTY STATE
================================= */

.reviews-loading {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--review-muted);
  text-align: center;
}

.reviews-loader,
.btn-loader {
  display: inline-block;
  width: 31px;
  height: 31px;
  border: 3px solid rgba(217, 79, 123, 0.18);
  border-top-color: var(--review-pink);
  border-radius: 50%;
  animation: reviewSpin 0.8s linear infinite;
}

@keyframes reviewSpin {
  to {
    transform: rotate(360deg);
  }
}

.reviews-empty {
  width: min(590px, 100%);
  margin: 0 auto;
  padding: 50px 30px;
  border: 1px solid var(--review-border);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(73, 45, 55, 0.07);
  text-align: center;
}

.reviews-empty-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--review-pink-soft);
  color: var(--review-pink);
  font-size: 25px;
}

.reviews-empty h3 {
  margin: 0 0 10px;
  color: var(--review-text);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
}

.reviews-empty p {
  max-width: 430px;
  margin: 0 auto;
  color: var(--review-muted);
  font-size: 14px;
  line-height: 1.7;
}

.outline-review-btn {
  min-height: 48px;
  margin-top: 24px;
  padding: 0 26px;
  border: 1px solid var(--review-pink);
  border-radius: 4px;
  background: transparent;
  color: var(--review-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.outline-review-btn:hover {
  background: var(--review-pink);
  color: #fff;
}

/* =================================
   REVIEW MODAL
================================= */

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow-y: auto;
  padding: 30px 18px;
}

.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 16, 19, 0.63);
  backdrop-filter: blur(7px);
  animation: reviewOverlayIn 0.3s ease both;
}

.review-modal-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(244, 180, 200, 0.18),
      transparent 35%
    ),
    #fff;
  box-shadow: 0 35px 100px rgba(24, 16, 19, 0.3);
  animation: reviewModalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reviewOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes reviewModalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-review-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(217, 79, 123, 0.14);
  border-radius: 50%;
  background: #fff5f8;
  color: var(--review-pink);
  cursor: pointer;
  font-size: 17px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.close-review-modal:hover {
  background: var(--review-pink);
  color: #fff;
  transform: rotate(90deg);
}

.review-modal-heading {
  max-width: 570px;
  margin-bottom: 34px;
}

.review-modal-heading h3,
.review-success h3 {
  margin: 0;
  color: var(--review-text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.review-modal-heading h3 em {
  color: var(--review-pink);
  font-weight: 500;
}

.review-modal-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--review-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =================================
   REVIEW FORM
================================= */

.review-form {
  display: grid;
  gap: 22px;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-form-group {
  display: grid;
  gap: 9px;
}

.review-form-group label,
.review-label-row label {
  color: #3b3437;
  font-size: 13px;
  font-weight: 700;
}

.review-form-group label span {
  margin-left: 4px;
  color: #9c9095;
  font-size: 11px;
  font-weight: 400;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #eadde2;
  border-radius: 10px;
  outline: none;
  background: #fffafb;
  color: #2f2a2c;
  font-family: inherit;
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.review-form input,
.review-form select {
  min-height: 52px;
  padding: 0 16px;
}

.review-form textarea {
  min-height: 145px;
  resize: vertical;
  padding: 15px 16px;
  line-height: 1.65;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #aa9fa3;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: rgba(217, 79, 123, 0.6);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 79, 123, 0.09);
}

.review-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.review-label-row span {
  color: #9a8e93;
  font-size: 11px;
}

/* =================================
   RATING STARS
================================= */

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-star {
  padding: 0;
  border: none;
  background: transparent;
  color: #e6d7dc;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.rating-star:hover,
.rating-star.hovered,
.rating-star.active {
  color: var(--review-pink);
  transform: translateY(-2px) scale(1.08);
}

.review-field-error {
  min-height: 16px;
  color: #c9344e;
  font-size: 11px;
}

/* =================================
   CONSENT AND SUBMIT BUTTON
================================= */

.review-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #6f6469;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.6;
}

.review-consent input {
  width: 17px;
  height: 17px;
  min-height: auto;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--review-pink);
}

.submit-review-btn{
    width:100%;
    background:linear-gradient(135deg,#e85d93,#d94f7b);
    color:#fff;
    border:none;
    border-radius:14px;
    padding:18px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.submit-review-btn:hover {
  background: #bd345f;
  transform: translateY(-2px);
  box-shadow: 0 19px 42px rgba(217, 79, 123, 0.27);
}

.submit-review-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.review-form-note {
  margin: -8px 0 0;
  color: #9c9095;
  font-size: 11px;
  text-align: center;
}

/* =================================
   SUCCESS STATE
================================= */

.review-success[hidden] {
  display: none;
}

.review-success {
  padding: 40px 10px 20px;
  text-align: center;
}

.review-success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--review-pink-soft);
  color: var(--review-pink);
  font-size: 28px;
}

.review-success p {
  max-width: 450px;
  margin: 16px auto 0;
  color: var(--review-muted);
  font-size: 14px;
  line-height: 1.7;
}

.review-success-btn {
  min-width: 150px;
  min-height: 48px;
  margin-top: 27px;
  border-radius: 6px;
  background: var(--review-pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.review-success-btn:hover {
  background: var(--review-pink-dark);
}

/* Prevent the page from scrolling while modal is open */
body.review-modal-open {
  overflow: hidden;
}

/* Utility */
.premium-reviews [hidden] {
  display: none !important;
}

/* =================================
   TABLET
================================= */

@media (max-width: 1024px) {
  .premium-reviews {
    padding: 90px 5% 100px;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .reviews-arrow-left {
    left: -12px;
  }

  .reviews-arrow-right {
    right: -12px;
  }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {
  .premium-reviews {
    padding: 75px 18px 85px;
  }

  .reviews-top {
    margin-bottom: 38px;
  }

  .reviews-top h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .reviews-subtitle {
    font-size: 14px;
  }

  .write-review-btn {
    width: 100%;
    max-width: 300px;
  }

  .reviews-slider-wrap {
    padding: 0 8px;
  }

  .reviews-viewport {
    padding: 10px 0 25px;
  }

  .reviews-slider {
    gap: 16px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 345px;
    padding: 33px 27px 29px;
    border-radius: 21px;
  }

  .review-card blockquote,
  .review-card .review-text {
    font-size: 23px;
  }

  .reviews-arrow {
    top: auto;
    bottom: -55px;
    width: 43px;
    height: 43px;
    transform: none;
  }

  .reviews-arrow:hover {
    transform: none;
  }

  .reviews-arrow-left {
    left: calc(50% - 54px);
  }

  .reviews-arrow-right {
    right: calc(50% - 54px);
  }

  .review-dots {
    margin-top: 76px;
  }

  .reviews-empty {
    padding: 40px 22px;
  }

  .review-modal {
    align-items: end;
    padding: 15px 0 0;
  }

  .review-modal-card {
    width: 100%;
    max-height: 94vh;
    padding: 42px 20px 28px;
    border-radius: 25px 25px 0 0;
  }

  .close-review-modal {
    top: 15px;
    right: 15px;
  }

  .review-modal-heading {
    padding-right: 35px;
    margin-bottom: 28px;
  }

  .review-modal-heading h3 {
    font-size: 46px;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .rating-stars {
    justify-content: space-between;
    max-width: 280px;
  }

  .rating-star {
    font-size: 31px;
  }

  .submit-review-btn {
    min-height: 54px;
  }
}

/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 390px) {
  .reviews-top h2 {
    font-size: 46px;
  }

  .review-card {
    padding: 30px 23px 27px;
  }

  .review-card blockquote,
  .review-card .review-text {
    font-size: 21px;
  }

  .review-modal-card {
    padding-inline: 17px;
  }

  .review-modal-heading h3 {
    font-size: 41px;
  }

  .rating-star {
    font-size: 28px;
  }
}

.review-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100000;
  max-width: min(390px, calc(100% - 36px));
  padding: 15px 18px;
  border-radius: 10px;
  background: #282124;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.review-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.review-toast.success {
  background: #2d6244;
}

.review-toast.error {
  background: #a8344d;
}

.review-featured-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 50px;
  background: #fff1f5;
  color: #d94f7b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-card.featured {
  border-color: rgba(217, 79, 123, 0.35);
}

#reviewCharacterCount.near-limit {
  color: #d94f7b;
  font-weight: 700;
}

@media (max-width: 700px) {
  .review-toast {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
  }
}

/* ================================
   CTA
================================ */
.premium-cta {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 26px 7%;
  background: linear-gradient(135deg, #bd5266 0%, #d87385 48%, #c15a6e 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1px 1fr;
  align-items: center;
  gap: 42px;
  box-shadow: 0 14px 34px rgba(189, 82, 102, 0.2);
}

.premium-cta::before {
  content: "✦";
  position: absolute;
  top: 22px;
  left: 18%;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  animation: ctaStarFloat 4s ease-in-out infinite;
}

.premium-cta::after {
  content: "✦";
  position: absolute;
  right: 12%;
  bottom: 22px;
  color: rgba(255,255,255,0.35);
  font-size: 24px;
  animation: ctaStarFloat 5s ease-in-out infinite reverse;
}

.cta-left,
.cta-right,
.cta-divider,
.cta-watermark {
  position: relative;
  z-index: 2;
}

.cta-left p {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.9;
}

.cta-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1;
  font-weight: 500;
}

.cta-left h2 em {
  color: #f6c6ac;
  font-style: italic;
}

.cta-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.35);
}

.cta-right p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.cta-right a {
  height: 42px;
  padding: 0 22px;
  background: #fff7f3;
  color: #171717;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 10px;
  font-weight: 800;
  transition: 0.3s ease;
}

.cta-right a:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.cta-watermark {
  position: absolute;
  right: 12%;
  top: -8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,0.11);
  z-index: 1;
}

@keyframes ctaStarFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-8px) scale(1.15);
    opacity: 0.75;
  }
}

@media (max-width: 900px) {
  .premium-cta {
    padding: 24px 5%;
    gap: 26px;
    grid-template-columns: 1.25fr 1px 1fr;
  }

  .cta-left h2 {
    font-size: 36px;
  }

  .cta-right p {
    font-size: 13px;
  }

  .cta-right a {
    height: 38px;
    padding: 0 16px;
    font-size: 8px;
  }
}

@media (max-width: 600px) {
  .premium-cta {
    min-height: 110px;
    padding: 22px 16px;
    grid-template-columns: 1.2fr 1px 1fr;
    gap: 14px;
  }

  .cta-left p {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .cta-left h2 {
    font-size: 24px;
  }

  .cta-divider {
    height: 64px;
  }

  .cta-right p {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .cta-right a {
    height: 34px;
    padding: 0 10px;
    font-size: 6.5px;
    gap: 6px;
  }

  .cta-watermark {
    font-size: 80px;
    right: 4%;
    top: 16px;
  }
}


/* ================================
   FOOTER
================================ */
.hairvine-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(220, 95, 136, 0.18), transparent 28%),
    linear-gradient(135deg, #111 0%, #181818 45%, #0d0d0d 100%);
  color: #fff;
}

.hairvine-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.035) 50%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 70px 6% 55px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr 1.2fr;
  gap: 42px;
}

.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #dc5f88;
}

.footer-brand span {
  display: block;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 6px;
}

.footer-flourish {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 24px;
  color: #dc5f88;
}

.footer-flourish span {
  width: 76px;
  height: 1px;
  background: #dc5f88;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h3,
.footer-social h3 {
  color: #ff8bad;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #ff8bad;
  transform: translateX(4px);
}

.footer-contact p {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: #ff8bad;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220, 95, 136, 0.55);
  border-radius: 50%;
  color: #ff8bad;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #dc5f88;
  color: #fff;
  transform: translateY(-4px);
}

.footer-script {
  font-family: "Cormorant Garamond", serif;
  color: #ff8bad;
  font-size: 34px;
  font-style: italic;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #c83f6f, #e86f98);
  text-align: center;
  padding: 18px 6%;
}

.footer-bottom p {
  font-size: 14px;
  color: #fff;
}

/* TABLET */

@media (max-width: 1050px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .footer-inner {
    padding: 55px 20px 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand h2 {
    font-size: 34px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col,
  .footer-social {
    width: 100%;
  }

  .footer-col h3,
  .footer-social h3 {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-col a,
  .footer-contact p {
    font-size: 14px;
  }

  .footer-contact {
    grid-column: 1 / 2;
  }

  .footer-social {
    grid-column: 2 / 3;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-script {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  font-size: 28px;
  margin-top: 6px;
  padding-top: 10px;
}

  .footer-bottom {
    padding: 18px 20px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
}

/* ================================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  position: relative;
  z-index: 2;

  background:
    linear-gradient(
      135deg,
      #c83f6f,
      #e86f98
    );

  padding: 18px 6%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #fff;
}

/* POLICY LINKS */

.footer-policies {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.policy-btn {
  border: none;
  background: transparent;

  color: rgba(255,255,255,0.92);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.3s ease;
}

.policy-btn:hover {
  color: #111;
}

/* ================================
   POLICY MODAL
================================ */

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(10,10,10,0.55);

  backdrop-filter: blur(12px);
}

.policy-modal.active {
  display: flex;
}

.policy-modal-box {
  position: relative;

  width: 100%;
  max-width: 920px;
  max-height: 90vh;

  overflow-y: auto;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff7f9 100%
    );

  box-shadow:
    0 40px 120px rgba(0,0,0,0.28);

  padding: 42px;
}

/* CLOSE BUTTON */

.close-policy-modal {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(220,95,136,0.1);

  color: #dc5f88;

  cursor: pointer;

  transition: 0.3s ease;
}

.close-policy-modal:hover {
  background: #111;
  color: #fff;
}

/* CONTENT */

.policy-modal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  line-height: 1;

  color: #161616;

  margin-bottom: 12px;
}

.policy-modal-content h2 em {
  color: #dc5f88;
  font-style: italic;
}

.policy-modal-content h3 {
  color: #dc5f88;

  text-transform: uppercase;
  letter-spacing: 2px;

  font-size: 14px;

  margin:
    34px 0 18px;
}

.policy-modal-content p,
.policy-modal-content li {
  color: #444;

  font-size: 15px;
  line-height: 1.8;
}

.policy-modal-content ul {
  padding-left: 22px;
}

.policy-modal-content li {
  margin-bottom: 14px;
}

.policy-highlight {
  margin: 24px 0;
  padding: 22px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(220,95,136,0.08),
      rgba(220,95,136,0.02)
    );

  border:
    1px solid rgba(220,95,136,0.14);
}

/* SCROLLBAR */

.policy-modal-box::-webkit-scrollbar {
  width: 8px;
}

.policy-modal-box::-webkit-scrollbar-thumb {
  background: #dc5f88;
  border-radius: 999px;
}

/* MOBILE */

@media (max-width: 650px) {

  .footer-bottom {
    padding: 18px 20px;

    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-policies {
    gap: 16px;
  }

  .policy-btn {
    font-size: 11px;
  }

  .policy-modal {
    padding: 14px;
  }

  .policy-modal-box {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .policy-modal-content h2 {
    font-size: 40px;
  }

  .policy-modal-content p,
  .policy-modal-content li {
    font-size: 14px;
  }

}

/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {
  .home-hero,
  .home-services,
  .home-about {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .about-image {
    min-height: 420px;
  }

  .benefits-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-line {
    display: none;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {
  .hero-content,
  .home-services,
  .home-gallery,
  .home-about,
  .home-reviews {
    padding: 65px 18px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-image,
  .about-image {
    min-height: 320px;
  }

  .benefits-bar {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .gallery-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-large {
    grid-column: span 2;
  }

  .home-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .home-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 18px;
  }

}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}