/* Variables */
:root {
  --primary: #e0366f;
  --secondary: #023a64;
  --dark-blue: #232938;
  --light-gray: #f0f0f0;
  --light-pink: #fffbfd;
  --light-blue: #edf8ff;
  --black: #141414;
  --font-eb-garamond: "EB Garamond", serif;
  --font-jost: "Jost", sans-serif;
  --font-inter: "Inter", sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-jost);
  color: var(--dark-blue);
  background-color: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-eb-garamond);
  line-height: 1.1;
}

.title {
  font-size: clamp(2.5rem, 3vw, 5rem);
  font-weight: 500;
}

/* Reusable Section Text */
.section-eyebrow {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-title {
  color: var(--dark-blue);
  margin: 0 0 24px;
}

.section-description {
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--dark-blue);
  margin: 0;
  max-width: 560px;
}

/* Light version for dark/image backgrounds */
.section-eyebrow--light,
.section-title--light,
.section-description--light {
  color: #fff !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

button {
  border: none;
  background: none;
  display: block;
  width: min-content;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

button:active, button:hover, button:focus {
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 10px;
  width: 100%;
}

.legal-container {
  max-width: 700px;
}

.section-gray {
  background-color: var(--light-gray) !important;
}

.nav-container {
  max-width: 1300px !important;
}


.text-sm {
  font-size: 14px;
}

/* Button */
.btn {
  padding: 10px 15px;
  border-radius: 5px;
  transition: transform .25s ease-in-out;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  width: min-content;
}

.btn:hover {
  transform: scale(1.01);
}

.btn-primary {
  background-color: var(--primary);
  border: solid 2px var(--primary);
}

.btn-outline-light {
  border: solid 2px #fff;
  color: #fff;
}

.btn-outline-dark {
  border: solid 2px var(--black);
  color: var(--black);
}

/* Header */
.site-header {
  width: 100%;
  background-color: #fff;
  opacity: 1;
  position: fixed;
  top: 0;
  z-index: 2000;
}

/* Top bar */
.top-bar {
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
}

.top-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-bar__socials {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min-content;
  overflow: visible;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 1;
}

.social-icon {
  flex-shrink: 0;
  image-rendering: pixelated;
}

.social-link--facebook .social-icon,
.social-link--instagram .social-icon,
.social-link--tiktok .social-icon,
.social-link--youtube .social-icon,
.social-link--threads .social-icon {
  width: 15px;
  height: 15px;
  position: relative;
}

.top-bar__info {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: visible;
}

.top-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  opacity: 1;
}

.top-bar__icon {
  flex-shrink: 0;
  image-rendering: pixelated;
}

.top-bar__item--phone .top-bar__icon {
  width: 15px;
  height: 15px;
  position: relative;
}

.top-bar__item--email .top-bar__icon {
  width: 15px;
  height: 11px;
  position: relative;
}

.top-bar__item--hours .top-bar__icon {
  width: 15px;
  height: 15px;
  position: relative;
}

@media (max-width: 992px) {
  .top-bar__text {
    display: none
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--token-f58681d1-ca40-4e91-b598-daff3034d7f5, rgb(240, 240, 240));
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar__logo {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  flex: none;
}

.navbar__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.navbar__right {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 25px;
  width: min-content;
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  width: min-content;
  height: 100%;
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease-in-out;
}

.navbar__link.active {
  color: var(--primary) !important;
}

.navbar__link:hover {
  color: var(--primary)
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }
}

@media (min-width: 769px) {
  .navbar__mobile-button {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  width: 80%;
  max-width: 400px;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid var(--token-f58681d1-ca40-4e91-b598-daff3034d7f5, rgb(240, 240, 240));
  box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: fixed;
  z-index: 1000;
  height: 100vh;
  padding-top: 100px;
  top: 0;
  right: -100%;
  transition: all ease-in-out .25s;
  overflow-y: scroll;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-menu__link {
  text-decoration: none;
  font-family: "Jost", "Jost Placeholder", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.6em;
  color: var(--token-af3e662f-543d-4ec2-9116-110e038ba075, rgb(35, 41, 56));
}

.mobile-menu__link.active {
  color: var(--primary)
}

.mobile-menu__divider {
  display: block;
  width: 100%;
  min-height: 1px;
  background-color: rgba(35, 41, 56, 0.18);
  margin: 8px 0;
  flex-shrink: 0;
}

.mobile-menu__apps,
.mobile-menu__social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.mobile-menu__heading {
  margin: 0;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.6em;
  color: var(--token-af3e662f-543d-4ec2-9116-110e038ba075, rgb(35, 41, 56));
  font-size: 16px;
}

.mobile-menu__store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.mobile-menu__store-button {
  display: block;
}

.mobile-menu__store-button--apple img {
  width: 120px;
  height: auto;
  display: block;
}

.mobile-menu__store-button--google img {
  width: 140px;
  height: auto;
  display: block;
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  left: 0;
  width: 100%;
  height: clamp(450px, calc(100vh - 70px), 600px);
  border: none;
  padding: 0;
  background: var(--light-pink);
  z-index: 1999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.mega-menu[open] {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: megaMenuOpen 0.25s ease forwards;
}

.mega-menu::backdrop {
  background: transparent;
}

.mega-menu__inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.mega-menu__content {
  width: 30rem;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mega-menu__content--center {
  justify-content: space-between;
}

.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.mega-menu__links a {
  font-family: var(--font-eb-garamond);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--dark-blue);
  text-decoration: none;
  position: relative;
  width: fit-content;
  transition: color 0.25s ease;
}

.mega-menu__links a:hover {
  color: var(--primary);
}

.mega-menu__text-block {
  margin-top: auto;
}

.mega-menu__text-block h2 {
  color: var(--dark-blue);
  margin-bottom: 18px;
}

.mega-menu__text-block p {
  font-family: var(--font-jost);
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-blue);
  margin-bottom: 24px;
  max-width: 360px;
}

.mega-menu__image {
  width: calc(100% - 30rem);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mega-menu__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes megaMenuOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide mega menu on mobile */
@media (max-width: 768px) {
  .mega-menu {
    display: none !important;
  }
}

/* Footer */
.site-footer {
  width: 100%;
  color: #fff;
  background-color: var(--dark-blue);
  background-image:
    linear-gradient(
      rgba(35, 41, 56, 0),
      rgba(35, 41, 56, 0)
    ),
    url("https://assets.cdn.filesafe.space/08tHFDZGHaavZDczsk2K/media/69fdfd6d6ca44fd334921787.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
}

.site-footer__logo {
  margin-bottom: 32px;
}

.site-footer__logo a {
  display: inline-block;
  width: 60px;
  height: 60px;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-contact,
.footer-hours,
.footer-map,
.footer-menu,
.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-heading {
  margin: 0;
  font-family: "Jost", "Jost Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.footer-contact a,
.footer-menu__links a,
.footer-apps p,
.footer-hours__list p {
  margin: 0;
  font-family: "Jost", "Jost Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

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

.footer-hours__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-map {
  min-height: 220px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 5px;
  display: block;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-apps__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-apps__badges a {
  display: inline-block;
  width: fit-content;
}

.footer-apps__badges img {
  display: block;
  height: auto;
  max-width: 140px;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  background-color: var(--token-f58681d1-ca40-4e91-b598-daff3034d7f5, rgb(240, 240, 240));
  margin: 24px 0;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-footer__socials a {
  display: inline-flex;
  text-decoration: none;
}

.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-footer__copyright {
  margin: 0;
  font-family: "Jost", "Jost Placeholder", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  color: rgb(255, 255, 255);
}

@media (max-width: 809.98px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__menus {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  opacity: 0.45;
}

.breadcrumb__link {
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #fff;
  opacity: 1;
}

.breadcrumb__current {
  color: #fff;
  font-weight: 600;
}

/* Hero Media */
.hero-media {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 80vh, 820px);
  overflow: hidden;
  background: var(--black);
}

/* Hero-specific text */
.hero-media__title {
  line-height: 0.95;
  max-width: 320px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-media__description {
  max-width: 500px;
  line-height: 1.5;
}

.hero-media__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 38%,
    rgba(0, 0, 0, 0.28) 68%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.hero-media__content {
  position: relative;
  z-index: 3;
  min-height: clamp(520px, 80vh, 820px);
  display: flex;
  align-items: flex-end;
}

.hero-media__container {
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 80vh, 820px);
}

.hero-media__content-inner {
  max-width: 720px;
  width: 100%;
}

.hero-media__title i {
  color: #fff;
  font-style: italic;
}

.hero-media__buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-media__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-media {
    min-height: 620px;
  }

  .hero-media__content {
    min-height: 620px;
    padding: 60px 20px;
  }

  .hero-media__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.62) 48%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

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

  .hero-media__buttons .btn {
    width: 100%;
  }
}

/* Promo Card */
.promo-card-wrapper {
  display: flex;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background: var(--light-gray);
}

.promo-card {
  position: relative;
  width: 100%;
  height: 180px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.promo-card__inner {
  display: flex;
  height: 100%;
}

.promo-card__content {
  width: 50%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.promo-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-card__title {
  font-family: var(--font-jost);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark-blue);
  margin: 0;
}

.promo-card__description {
  font-family: var(--font-jost);
  font-size: 13px;
  line-height: 1.35;
  color: var(--dark-blue);
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-card__link {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  width: fit-content;
  margin-top: auto;
  transition: color 0.25s ease;
}

.promo-card__link:hover {
  color: var(--primary);
}

.promo-card__image-wrap {
  width: 50%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.promo-card__picture {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.promo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card__close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 5;
}

.promo-card__close:hover {
  background: #fff;
  color: var(--primary);
}

.promo-card__close svg {
  width: 16px;
  height: 16px;
}

/* Promo scroll animation */
.animate-promo-slide-left {
  opacity: 0;
  transform: translateX(24px);
}

.animate-promo-slide-left.is-visible {
  animation: promoSlideLeft 0.4s ease-in-out forwards;
}

@keyframes promoSlideLeft {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Desktop floating version */
@media (min-width: 992px) {
  .promo-card-wrapper {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    background: transparent;
  }

  .promo-card {
    width: 360px;
    border-radius: 0;
  }

  .promo-card__close {
    display: flex;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .promo-card {
    width: 400px;
  }

  .promo-card__content {
    width: 176px;
    padding-right: 0;
  }
}

/* Scroll animation base */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.is-visible {
  animation-fill-mode: forwards;
}

/* Slide up */
.animate-slide-up {
  transform: translateY(12px);
}

.animate-slide-up.is-visible {
  animation-name: slideUpAppear;
  animation-duration: 0.9s;
  animation-timing-function: ease;
}

/* Fade in */
.animate-fade-in {
  opacity: 0;
}

.animate-fade-in.is-visible {
  animation-name: appear;
  animation-duration: 0.9s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

/* Delays */
.animate-delay-100.is-visible {
  animation-delay: 0.1s;
}

.animate-delay-200.is-visible {
  animation-delay: 0.2s;
}

.animate-delay-300.is-visible {
  animation-delay: 0.3s;
}

.animate-delay-400.is-visible {
  animation-delay: 0.4s;
}

.animate-delay-500.is-visible {
  animation-delay: 0.5s;
}

.animate-delay-600.is-visible {
  animation-delay: 0.6s;
}

.animate-delay-700.is-visible {
  animation-delay: 0.7s;
}

@keyframes slideUpAppear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* Service Carousel */
.service-carousel {
  overflow: hidden;
  background: #fff;
}

.service-carousel__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 42px;
}

.service-carousel__eyebrow {
  grid-column: 1 / -1;
}

.service-carousel__title {
  grid-column: 1 / 2;
}

.service-carousel__description {
  grid-column: 2 / 3;
}

/* Service Carousel-specific text */
.service-carousel__title {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 500;
  max-width: 760px;
}

.service-carousel__description {
  align-self: center;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  max-width: 420px;
}

.service-carousel__body {
  width: 100%;
}

.service-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 0;
  margin: -16px 0;
  scrollbar-width: none;
}

.service-carousel__track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.service-card__link {
  position: relative;
  display: flex;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light-gray);
  color: #fff;
  transition: box-shadow 0.3s ease;
}

.service-card__link:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.service-card__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card__link:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 200px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

.service-card__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.service-card__title {
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.service-card__description {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
  min-height: 62px;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.service-card__arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.service-card__link:hover .service-card__arrow svg {
  transform: translateX(3px);
}

.service-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.service-carousel__footer .btn {
  height: 48px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-carousel__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.service-carousel__control {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--light-pink);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.service-carousel__control:hover {
  background: var(--primary);
  color: #fff;
}

.service-carousel__control:disabled {
  opacity: 0.35;
  cursor: auto;
}

.service-carousel__control:disabled:hover {
  background: var(--light-pink);
  color: var(--primary);
}

/* Mobile */
@media (max-width: 768px) {
  .service-carousel__header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .service-carousel__description {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .service-carousel__track {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    scroll-padding-left: 10px;
  }

  .service-card__link {
    width: 300px;
    height: 400px;
  }

  .service-carousel__control {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

/* Award Section */
.award-section {
  background: var(--light-pink);
  overflow: hidden;
}

.award-section__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.award-section__media {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--light-gray);
}

.award-section__image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.award-section__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(35, 41, 56, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.award-section__badge-year {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--primary);
  font-weight: 500;
}

.award-section__badge-text {
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-blue);
  text-align: right;
}

.award-section__content {
  max-width: 620px;
}

.award-section__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.award-card {
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.16);
  border-radius: 14px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(35, 41, 56, 0.08);
}

.award-card__year {
  font-family: var(--font-eb-garamond);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
}

.award-card__label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-blue);
  margin-top: 8px;
}

.award-card--finalist {
  background: transparent;
  border: 1px dashed rgba(35, 41, 56, 0.28);
  box-shadow: none;
}

.award-card--finalist .award-card__year {
  color: var(--secondary);
}

.award-section__button {
  display: inline-flex;
}

@media (max-width: 992px) {
  .award-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .award-section__content {
    max-width: 100%;
  }

  .award-section__media {
    min-height: 420px;
  }

  .award-section__image {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .award-section__media {
    min-height: 360px;
  }

  .award-section__image {
    min-height: 360px;
  }

  .award-section__badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .award-section__badge-text {
    text-align: left;
  }

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

/* Feature Split Section */
.feature-split-section {
  overflow: hidden;
  background: var(--light-pink);
}

.feature-split-section__inner {
  display: flex;
  min-height: 720px;
}

.feature-split-section__inner--image-left .feature-split-section__media {
  order: 1;
}

.feature-split-section__inner--image-left .feature-split-section__content {
  order: 2;
}

.feature-split-section__inner--image-right .feature-split-section__media {
  order: 2;
}

.feature-split-section__inner--image-right .feature-split-section__content {
  order: 1;
}

.feature-split-section__media {
  width: 50%;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}

.feature-split-section__image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
}

.feature-split-section__content {
  width: 50%;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--light-pink);
  padding: 80px clamp(40px, 6vw, 90px);
}

.feature-split-section__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.feature-split-section__content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}

.feature-split-section__eyebrow {
  color: var(--primary);
}

.feature-split-section__title {
  color: var(--primary);
  max-width: 560px;
}

.feature-split-section__description {
  color: var(--dark-blue);
  max-width: 520px;
  margin-bottom: 28px;
}

.feature-split-section__items {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-split-section__item {
  padding: 0;
}

.feature-split-section__item-title {
  font-family: var(--font-jost);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 8px;
}

.feature-split-section__item-description {
  font-family: var(--font-jost);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
  max-width: 520px;
}

.feature-split-section__button {
  display: inline-flex;
  justify-content: center;
  margin-top: 6px;
}

/* Tablet + Mobile */
@media (max-width: 992px) {
  .feature-split-section__inner {
    flex-direction: column;
    min-height: auto;
  }

  .feature-split-section__media {
    order: 1 !important;
    width: 100%;
    min-height: 420px;
    aspect-ratio: 3 / 2;
  }

  .feature-split-section__image {
    min-height: 420px;
  }

  .feature-split-section__content {
    order: 2 !important;
    width: 100%;
    min-height: auto;
    padding: 60px 24px;
  }

  .feature-split-section__content-inner {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .feature-split-section__media {
    min-height: 340px;
  }

  .feature-split-section__image {
    min-height: 340px;
  }

  .feature-split-section__content {
    padding: 50px 20px;
  }

  .feature-split-section__items {
    gap: 24px;
  }

  .feature-split-section__button {
    width: 100%;
  }
}

/* Background CTA Section */
.background-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: var(--black);
  color: #fff;
}

.background-cta-section__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.background-cta-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.background-cta-section__container {
  position: relative;
  z-index: 3;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.background-cta-section__content {
  max-width: 520px;
}

.background-cta-section__title {
  max-width: 520px;
  line-height: 0.98;
}

.background-cta-section__description {
  max-width: 480px;
  margin-bottom: 30px;
}

.background-cta-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
  .background-cta-section {
    min-height: 650px;
  }

  .background-cta-section__container {
    min-height: 650px;
    align-items: flex-end;
  }

  .background-cta-section__content {
    max-width: 100%;
  }

  .background-cta-section__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.86) 100%
    );
  }

  .background-cta-section__button {
    width: 100%;
  }
}

/* Reviews Section */
.reviews-section {
  background: #fff;
  overflow: hidden;
}

.reviews-section__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-section__title {
  color: var(--dark-blue);
}

.reviews-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.review-card {
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 18px;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(35, 41, 56, 0.06);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jost);
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-family: var(--font-jost);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.review-card__date {
  font-family: var(--font-jost);
  font-size: 13px;
  color: var(--dark-blue);
  opacity: 0.65;
  margin: 2px 0 0;
}

.review-card__stars {
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-card__text {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-blue);
  margin: 0;
}

.review-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.review-card__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 700;
}

.reviews-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.reviews-section__empty {
  text-align: center;
  font-family: var(--font-jost);
  color: var(--dark-blue);
  opacity: 0.7;
}

@media (max-width: 992px) {
  .reviews-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .reviews-section__header {
    text-align: left;
    margin-bottom: 28px;
  }

  .reviews-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .reviews-section__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .reviews-section__filters::-webkit-scrollbar {
    display: none;
  }

  .reviews-section__filter {
    flex: 0 0 auto;
  }

  .reviews-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section */
.gallery-section {
  background: #fff;
  overflow: hidden;
}

.gallery-section__header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.gallery-section__title {
  color: var(--dark-blue);
}

.gallery-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--light-gray);
  cursor: pointer;
}

.gallery-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.08);
}

.gallery-card__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-card:hover .gallery-card__play {
  transform: scale(1.08);
  background: #fff;
}

.gallery-card__play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transform: translateX(-1px);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__content {
  color: #fff;
  text-align: left;
}

.gallery-card__category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-card__title {
  font-family: var(--font-jost);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.gallery-card__technician {
  font-family: var(--font-jost);
  font-size: 13px;
  color: #fff;
  margin: 4px 0 0;
  opacity: 0.86;
}

.gallery-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery-section__empty {
  text-align: center;
  font-family: var(--font-jost);
  color: var(--dark-blue);
  opacity: 0.7;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__inner {
  position: relative;
  width: min(100%, 900px);
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-modal__media {
  background: var(--black);
}

.gallery-modal__image,
.gallery-modal__video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--black);
  display: none;
}

.gallery-modal__image.is-active,
.gallery-modal__video.is-active {
  display: block;
}

.gallery-modal__caption {
  padding: 18px 22px;
  background: #fff;
}

.gallery-modal__category {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.gallery-modal__title {
  font-family: var(--font-eb-garamond);
  font-size: 28px;
  font-weight: 500;
  color: var(--dark-blue);
  margin: 0;
}

.gallery-modal__technician {
  font-family: var(--font-jost);
  font-size: 14px;
  color: var(--dark-blue);
  opacity: 0.75;
  margin: 4px 0 0;
}

.gallery-modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 3001;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.gallery-modal__close span {
  display: block;
  transform: translateY(-2px);
}

.gallery-modal__close,
.gallery-modal__close:hover,
.gallery-modal__close:focus,
.gallery-modal__close:active {
  background: #fff;
  color: var(--dark-blue);
  border: none;
  outline: none;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-section__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-card__category {
    font-size: 7px;
    padding: 3px 6px;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
  }

  .gallery-section__header {
    text-align: left;
    margin-bottom: 30px;
  }

  .gallery-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .gallery-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-card__overlay {
    opacity: 1;
    padding: 14px;
  }

  .gallery-card__title {
    font-size: 14px;
  }

  .gallery-card__play {
    width: 48px;
    height: 48px;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal__inner {
    border-radius: 16px;
  }
}

/* Text Image Section */
.text-image-section {
  position: relative;
  overflow: hidden;
  background: var(--light-pink);
}

.text-image-section__inner {
  display: flex;
  min-height: 480px;
}

.text-image-section__inner--image-left {
  flex-direction: row;
}

.text-image-section__inner--image-right {
  flex-direction: row-reverse;
}

.text-image-section__media,
.text-image-section__content {
  width: 50%;
}

.text-image-section__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--light-gray);
}

.text-image-section__image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.text-image-section__content {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--light-pink);
  padding: 80px clamp(32px, 6vw, 90px);
}

.text-image-section__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.text-image-section__content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  background: rgba(255, 251, 253, 0.08);
  pointer-events: none;
}

.text-image-section__content--has-bg::after {
  display: block;
}

.text-image-section__content-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
}

.text-image-section__title {
  color: var(--primary);
  max-width: 560px;
}

.text-image-section__description {
  max-width: 520px;
  margin-bottom: 28px;
}

.text-image-section__items {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-image-section__item {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-jost);
  color: var(--dark-blue);
}

.text-image-section__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.text-image-section__item-title {
  font-family: var(--font-jost);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
}

.text-image-section__item-description {
  font-family: var(--font-jost);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

.text-image-section__button {
  display: inline-flex;
  justify-content: center;
  margin-top: 4px;
}

/* Tablet + Mobile */
@media (max-width: 992px) {
  .text-image-section__inner,
  .text-image-section__inner--image-left,
  .text-image-section__inner--image-right {
    flex-direction: column;
    min-height: auto;
  }

  .text-image-section__media {
    order: 1;
    width: 100%;
    min-height: 420px;
    aspect-ratio: 3 / 2;
  }

  .text-image-section__image {
    min-height: 420px;
  }

  .text-image-section__content {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 60px 24px;
  }

  .text-image-section__content-inner {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .text-image-section__media {
    min-height: 340px;
  }

  .text-image-section__image {
    min-height: 340px;
  }

  .text-image-section__content {
    padding: 50px 20px;
  }

  .text-image-section__items {
    gap: 20px;
  }

  .text-image-section__button {
    width: 100%;
  }
}

/* Hero version */
.hero.text-image-section {
  background: var(--light-pink);
}

.hero .text-image-section__inner {
  min-height: calc(100vh - 150px);
}

.hero .text-image-section__media,
.hero .text-image-section__content {
  min-height: calc(100vh - 150px);
}

.hero .text-image-section__image {
  min-height: calc(100vh - 150px);
}

.hero .text-image-section__title i {
  font-style: italic;
}

@media (max-width: 992px) {
  .hero .text-image-section__inner,
  .hero .text-image-section__media,
  .hero .text-image-section__content,
  .hero .text-image-section__image {
    min-height: auto;
  }

  .hero .text-image-section__media {
    min-height: 420px;
  }

  .hero .text-image-section__image {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .hero .text-image-section__media {
    min-height: 340px;
  }

  .hero .text-image-section__image {
    min-height: 340px;
  }
}

/* Two Column CTA Section */
.two-column-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--light-pink);
  color: var(--dark-blue);
  padding-top: clamp(2rem, 2vw, 4rem);
  padding-bottom: clamp(2rem, 2vw, 4rem);
}

.two-column-cta-section__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.two-column-cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(251, 205, 236, 0.42);
  pointer-events: none;
}

.two-column-cta-section--no-overlay .two-column-cta-section__overlay {
  display: none;
}

.two-column-cta-section .container {
  position: relative;
  z-index: 3;
}

.two-column-cta-section__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.two-column-cta-section__left {
  max-width: 560px;
}

.two-column-cta-section__right {
  max-width: 760px;
}

.two-column-cta-section__eyebrow {
  color: var(--primary);
}

.two-column-cta-section__title {
  color: var(--primary);
  margin: 0;
}

.two-column-cta-section__title i,
.two-column-cta-section__title em {
  font-style: italic;
  color: var(--primary);
}

.two-column-cta-section__description {
  max-width: 760px;
  margin: 0;
}

.two-column-cta-section__description p {
  margin: 0 0 18px;
}

.two-column-cta-section__description p:last-child {
  margin-bottom: 0;
}

.two-column-cta-section__note {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 22px 0 0;
}

.two-column-cta-section__note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.two-column-cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.two-column-cta-section__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Light text version */
.two-column-cta-section--light {
  color: #fff;
  background: var(--primary);
}

.two-column-cta-section--light .two-column-cta-section__eyebrow,
.two-column-cta-section--light .two-column-cta-section__title,
.two-column-cta-section--light .two-column-cta-section__title i,
.two-column-cta-section--light .two-column-cta-section__title em,
.two-column-cta-section--light .two-column-cta-section__description,
.two-column-cta-section--light .two-column-cta-section__description p,
.two-column-cta-section--light .two-column-cta-section__note,
.two-column-cta-section--light .two-column-cta-section__note a {
  color: #fff;
}

.two-column-cta-section--light .two-column-cta-section__description,
.two-column-cta-section--light .two-column-cta-section__note {
  opacity: 0.92;
}

/* Tablet + Mobile */
@media (max-width: 992px) {
  .two-column-cta-section__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .two-column-cta-section__left,
  .two-column-cta-section__right {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .two-column-cta-section__buttons {
    flex-direction: column;
  }

  .two-column-cta-section__buttons .btn {
    width: 100%;
  }
}

/* Benefits Grid Section */
.benefits-grid-section {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.benefits-grid-section__header {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.benefits-grid-section__eyebrow {
  color: #fff;
  margin-bottom: 14px;
}

.benefits-grid-section__title {
  color: #fff;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid-section__description {
  color: #fff;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.benefits-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.benefit-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card__icon-wrap {
  width: 110px;
  height: 110px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__title {
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 12px;
}

.benefit-card__description {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  opacity: 0.86;
  margin: 0;
  max-width: 240px;
}

.benefits-grid-section__bottom {
  max-width: 760px;
  margin: 52px auto 0;
  text-align: center;
}

.benefits-grid-section__bottom p {
  font-family: var(--font-jost);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .benefits-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .benefits-grid-section__header {
    text-align: left;
    margin-bottom: 40px;
  }

  .benefits-grid-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-grid-section__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefit-card {
    align-items: flex-start;
    text-align: left;
  }

  .benefit-card__icon-wrap {
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
  }

  .benefit-card__description {
    max-width: 100%;
  }

  .benefits-grid-section__bottom {
    text-align: left;
    margin-top: 42px;
  }
}

.benefit-card__step-number {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-card__step-number span {
  font-family: var(--font-jost);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 600px) {
  .benefit-card__step-number {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
  }

  .benefit-card__step-number span {
    font-size: 1.5rem;
  }
}

/* Rewards Tiers Section */
.rewards-tiers-section {
  background: #fff;
  overflow: hidden;
}

.rewards-tiers-section__header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.rewards-tiers-section__title {
  color: var(--dark-blue);
}

.rewards-tiers-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.reward-tier-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  padding: 30px 24px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(35, 41, 56, 0.07);
}

.reward-tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(224, 54, 111, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
  pointer-events: none;
}

.reward-tier-card__icon,
.reward-tier-card__content {
  position: relative;
  z-index: 2;
}

.reward-tier-card__icon {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(35, 41, 56, 0.08);
}

.reward-tier-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.reward-tier-card__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 8px;
}

.reward-tier-card__subtitle {
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 22px;
  opacity: 0.78;
}

.reward-tier-card__benefits {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid rgba(224, 54, 111, 0.18);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.reward-tier-card__benefits li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.45;
  color: var(--dark-blue);
}

.reward-tier-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

/* Tier variations */
.reward-tier-card--velvet {
  background: #fff6fa;
}

.reward-tier-card--satin {
  background: #fffaf0;
  border-color: rgba(190, 142, 45, 0.22);
}

.reward-tier-card--satin .reward-tier-card__title,
.reward-tier-card--satin .reward-tier-card__benefits li::before {
  color: #b9892f;
}

.reward-tier-card--satin .reward-tier-card__benefits li::before {
  background-color: #b9892f;
}

.reward-tier-card--satin .reward-tier-card__benefits {
  border-top-color: rgba(190, 142, 45, 0.2);
}

.reward-tier-card--diamond {
  background: #f5fbff;
  border-color: rgba(2, 58, 100, 0.16);
}

.reward-tier-card--diamond .reward-tier-card__title,
.reward-tier-card--diamond .reward-tier-card__benefits li::before {
  color: var(--secondary);
}

.reward-tier-card--diamond .reward-tier-card__benefits li::before {
  color: var(--secondary);
  background: var(--secondary);
}

.reward-tier-card--diamond .reward-tier-card__benefits {
  border-top-color: rgba(2, 58, 100, 0.18);
}

.rewards-tiers-section__bottom {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-blue);
  opacity: 0.75;
}

/* Tablet */
@media (max-width: 992px) {
  .rewards-tiers-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reward-tier-card {
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rewards-tiers-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .rewards-tiers-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .reward-tier-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .reward-tier-card__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .reward-tier-card__icon img {
    width: 54px;
    height: 54px;
  }

  .rewards-tiers-section__bottom {
    text-align: left;
  }
}

/* Disclaimer Section */
.disclaimer-section {
  background: #fff;
  overflow: hidden;
}

.disclaimer-section__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 22px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 14px 34px rgba(35, 41, 56, 0.05);
}

.disclaimer-section__header {
  max-width: 760px;
  margin-bottom: 30px;
}

.disclaimer-section__eyebrow {
  margin-bottom: 12px;
}

.disclaimer-section__title {
  font-family: var(--font-jost);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-blue);
  margin-bottom: 14px;
}

.disclaimer-section__description {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.82;
}

.disclaimer-section__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.disclaimer-block {
  padding-top: 22px;
  border-top: 1px solid rgba(35, 41, 56, 0.12);
}

.disclaimer-block__title {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px;
}

.disclaimer-block__texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-block__text {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.78;
  margin: 0;
}

.disclaimer-section__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 41, 56, 0.12);
  font-family: var(--font-jost);
  font-size: 13px;
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.72;
}

.disclaimer-section__note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section__inner {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .disclaimer-section__header {
    margin-bottom: 24px;
  }

  .disclaimer-block {
    padding-top: 20px;
  }
}

/* Values Grid Section */
.values-grid-section {
  background: #fff;
  overflow: hidden;
}

.values-grid-section__header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.values-grid-section__title {
  color: var(--dark-blue);
}

.values-grid-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 22px;
  padding: 30px 24px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 34px rgba(35, 41, 56, 0.06);
}

.value-card__icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(35, 41, 56, 0.08);
}

.value-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.value-card__title {
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 12px;
}

.value-card__text {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-blue);
  opacity: 0.84;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .values-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .values-grid-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .values-grid-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .values-grid-section__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .value-card__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .value-card__icon img {
    width: 50px;
    height: 50px;
  }
}

/* Team Section */
.team-section {
  background: #fff;
  overflow: hidden;
}

.team-section__header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.team-section__title {
  color: var(--dark-blue);
}

.team-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.team-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  min-width: 0;
}

.team-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(35, 41, 56, 0.14);
  border-color: rgba(224, 54, 111, 0.22);
}

.team-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--light-gray);
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.team-card__link:hover .team-card__image {
  transform: scale(1.06);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.12) 42%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 2;
}

.team-card__top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.team-card__badge,
.team-card__social {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}

.team-card__social {
  margin-left: auto;
  color: var(--dark-blue);
}

.team-card__identity {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}

.team-card__name {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.4rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 8px;
}

.team-card__role {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  opacity: 0.86;
}

.team-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(224, 54, 111, 0.08), transparent 34%),
    var(--light-pink);
}

.team-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.team-card__services span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.team-card__strength {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark-blue);
  margin: 0 0 12px;
}

.team-card__strength span {
  display: block;
  margin-bottom: 3px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-card__bio {
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark-blue);
  opacity: 0.78;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 54, 111, 0.14);
  color: var(--primary);
}

.team-card__footer span {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-card__footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.team-card__link:hover .team-card__footer svg {
  transform: translateX(4px);
}

.team-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* Tablet */
@media (max-width: 1100px) {
  .team-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .team-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .team-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card__media {
    aspect-ratio: 16 / 14;
  }

  .team-card__name {
    font-size: 2.5rem;
  }

  .team-card__body {
    padding: 20px;
  }
}

/* Technician Profile Page */
/* Technician Instagram-Style Profile Hero */
.technician-instagram-hero {
  background: #fff;
  overflow: hidden;
}

.technician-instagram-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(224, 54, 111, 0.08), transparent 34%),
    var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 20px 60px rgba(35, 41, 56, 0.08);
}

.technician-instagram-profile__avatar-wrap {
  display: flex;
  justify-content: center;
}

.technician-instagram-profile__avatar {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary), #f6b6cf, var(--secondary));
  box-shadow: 0 18px 42px rgba(35, 41, 56, 0.14);
}

.technician-instagram-profile__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 5px solid #fff;
}

.technician-instagram-profile__content {
  min-width: 0;
}

.technician-instagram-profile__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.technician-instagram-profile__handle {
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.technician-instagram-profile__name {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--dark-blue);
  margin: 0;
}

.technician-instagram-profile__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.technician-instagram-profile__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.technician-instagram-profile__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 46px);
  padding: 20px 0;
  border-top: 1px solid rgba(35, 41, 56, 0.1);
  border-bottom: 1px solid rgba(35, 41, 56, 0.1);
  margin-bottom: 24px;
}

.technician-instagram-profile__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-jost);
  color: var(--dark-blue);
}

.technician-instagram-profile__stat strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.technician-instagram-profile__stat span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.78;
}

.technician-instagram-profile__bio {
  max-width: 680px;
  margin-bottom: 14px;
}

.technician-instagram-profile__section {
  margin-top: 16px;
}

.technician-instagram-profile__role {
  font-family: var(--font-jost);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0 0 8px;
}

.technician-instagram-profile__description {
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.84;
  margin: 0;
}

.technician-instagram-profile__section-label {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  opacity: 0.72;
}

.technician-instagram-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.technician-instagram-profile__tags span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.technician-instagram-profile__tags--soft span {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(224, 54, 111, 0.16);
}

/* Tablet */
@media (max-width: 900px) {
  .technician-instagram-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .technician-instagram-profile__avatar-wrap {
    justify-content: flex-start;
  }

  .technician-instagram-profile__top {
    flex-direction: column;
  }

  .technician-instagram-profile__actions {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .technician-instagram-profile {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .technician-instagram-profile__avatar {
    width: 150px;
    height: 150px;
    padding: 5px;
  }

  .technician-instagram-profile__avatar img {
    border-width: 4px;
  }

  .technician-instagram-profile__name {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .technician-instagram-profile__stats {
    gap: 18px;
  }

  .technician-instagram-profile__stat {
    flex-direction: column;
    gap: 0;
  }

  .technician-instagram-profile__actions {
    width: 100%;
  }

  .technician-instagram-profile__actions .btn {
    width: 100%;
  }
}

.technician-profile-hero {
  background: var(--light-pink);
  overflow: hidden;
}

.technician-profile-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(35, 41, 56, 0.1);
}

.technician-profile-card__media {
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: var(--light-gray);
  overflow: hidden;
}

.technician-profile-card__image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.technician-profile-card__content {
  padding: clamp(28px, 5vw, 64px) clamp(24px, 5vw, 58px) clamp(28px, 5vw, 64px) 0;
}

.technician-profile-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.technician-profile-card__eyebrow {
  margin-bottom: 12px;
}

.technician-profile-card__name {
  font-family: var(--font-eb-garamond);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.88;
  color: var(--primary);
  margin: 0 0 14px;
}

.technician-profile-card__role {
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0.75;
}

.technician-profile-card__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 54, 111, 0.22);
  background: var(--light-pink);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.technician-profile-card__bio {
  max-width: 680px;
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: var(--dark-blue);
  margin: 0 0 32px;
}

.technician-profile-card__section {
  margin-top: 26px;
}

.technician-profile-card__label {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  opacity: 0.72;
}

.technician-profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.technician-profile-card__tags span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.technician-profile-card__tags--soft span {
  background: var(--light-pink);
  color: var(--primary);
  border: 1px solid rgba(224, 54, 111, 0.14);
}

.technician-profile-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.technician-profile-card__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Technician Video */
.technician-video-section {
  background: #fff;
  overflow: hidden;
}

.technician-video-section__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.technician-video-section__video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 20px 56px rgba(35, 41, 56, 0.12);
}

.technician-video-section__video {
  width: 100%;
  display: block;
  background: var(--black);
}

/* Tablet */
@media (max-width: 992px) {
  .technician-profile-card {
    grid-template-columns: 1fr;
  }

  .technician-profile-card__media {
    min-height: 520px;
  }

  .technician-profile-card__image {
    min-height: 520px;
  }

  .technician-profile-card__content {
    padding: 34px 24px 38px;
  }

  .technician-profile-card__top {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .technician-profile-card {
    border-radius: 22px;
  }

  .technician-profile-card__media {
    min-height: 420px;
  }

  .technician-profile-card__image {
    min-height: 420px;
  }

  .technician-profile-card__name {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .technician-profile-card__actions {
    flex-direction: column;
  }

  .technician-profile-card__actions .btn {
    width: 100%;
  }

  .technician-video-section__header {
    text-align: left;
  }
}

/* Career / Join Our Team Page */
.career-form-section {
  background: #fff;
  overflow: hidden;
}

.career-form-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.career-form-section__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.career-form-section__title {
  color: var(--dark-blue);
}

.career-form-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.career-form-section__form {
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.career-form-section__form iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 768px) {
  .career-form-section__header {
    text-align: left;
  }

  .career-form-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .career-form-section__form {
    border-radius: 18px;
  }
}

/* Career Benefits Section */
.career-benefits-section {
  background: #fff;
  overflow: hidden;
}

.career-benefits-section__header {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.career-benefits-section__title {
  color: var(--dark-blue);
}

.career-benefits-section__description {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.career-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(224, 54, 111, 0.09), transparent 36%),
    var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 14px 34px rgba(35, 41, 56, 0.06);
}

.career-benefit-card__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 20px;
}

.career-benefit-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-benefit-card__list li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.55;
  color: var(--dark-blue);
  opacity: 0.86;
}

.career-benefit-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

/* Tablet */
@media (max-width: 992px) {
  .career-benefits-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .career-benefits-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .career-benefits-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .career-benefits-section__grid {
    grid-template-columns: 1fr;
  }

  .career-benefit-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* Contact Page */
.contact-form-section {
  background: #fff;
  overflow: hidden;
}

.contact-form-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.contact-form-section__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-form-section__title {
  color: var(--dark-blue);
}

.contact-form-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section__form {
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.contact-form-section__form iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  background: #fff;
}

@media (max-width: 768px) {
  .contact-form-section__header {
    text-align: left;
  }

  .contact-form-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-form-section__form {
    border-radius: 18px;
  }

  .contact-form-section__form iframe {
    min-height: 760px;
  }
}

/* Legal / Privacy Policy Page */
.legal-page {
  background: #fff;
  overflow: hidden;
}

.legal-page__header {
  margin: 0 auto 46px;
  text-align: center;
}

.legal-page__eyebrow {
  margin-bottom: 12px;
}

.legal-page__title {
  color: var(--primary);
  margin: 0;
}

/* Main Legal Content */
.legal-page__content {
  font-family: var(--font-jost);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-blue);
}

.legal-page__content * {
  box-sizing: border-box;
}

/* Headings */
.legal-page__content h2 {
  font-family: var(--font-jost);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary);
  margin: 44px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content h3 {
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary);
  margin: 28px 0 12px;
}

/* Text */
.legal-page__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--dark-blue);
  margin: 0 0 18px;
}

.legal-page__content strong {
  font-weight: 800;
  color: inherit;
}

.legal-page__content em,
.legal-page__content i {
  font-style: italic;
  color: inherit;
}

.legal-page__content u {
  text-underline-offset: 4px;
}

/* Links */
.legal-page__content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
  transition: opacity 0.25s ease;
}

.legal-page__content a:hover {
  opacity: 0.78;
}

/* Lists */
.legal-page__content ul,
.legal-page__content ol {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px;
}

.legal-page__content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.legal-page__content li p {
  display: inline;
  margin: 0;
}

.legal-page__content li p + p {
  margin-left: 4px;
}

.legal-page__content li ul,
.legal-page__content li ol {
  margin-top: 10px;
  margin-bottom: 0;
}

.legal-page__content li li {
  margin-bottom: 8px;
}

.legal-page__content li li::before {
  background: #fff;
  border: 1px solid var(--primary);
}

/* Tables */
.legal-page__content table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 32px 0;
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark-blue);
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.18);
}

.legal-page__content tbody,
.legal-page__content tr {
  width: 100%;
}

.legal-page__content th,
.legal-page__content td {
  border: 1px solid rgba(224, 54, 111, 0.18);
  padding: 16px;
  vertical-align: top;
  text-align: left;
  color: var(--dark-blue);
}

.legal-page__content th,
.legal-page__content tr:first-child td {
  background: var(--light-pink);
  color: var(--primary);
  font-weight: 800;
}

.legal-page__content td {
  background: #fff;
}

.legal-page__content tr:nth-child(even) td {
  background: rgba(255, 251, 253, 0.7);
}

.legal-page__content td p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.legal-page__content td p:last-child {
  margin-bottom: 0;
}

/* Clean empty paragraphs from copied legal content */
.legal-page__content p:empty {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-page__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .legal-page__content {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-page__content p,
  .legal-page__content li {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-page__content h2 {
    margin-top: 36px;
  }

  .legal-page__content table {
    display: block;
    overflow-x: auto;
    table-layout: auto;
    border-radius: 14px;
  }

  .legal-page__content th,
  .legal-page__content td {
    min-width: 230px;
    padding: 14px;
  }

  .legal-page__content td p {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .legal-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-page__content {
    font-size: 14px;
  }

  .legal-page__content p,
  .legal-page__content li {
    font-size: 14px;
  }

  .legal-page__content table {
    font-size: 13px;
  }
}

/* Service Why Section */
.service-why-section {
  background: #fff;
  overflow: hidden;
}

.service-why-section__header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.service-why-section__heading {
  max-width: 760px;
}

.service-why-section__title {
  color: var(--primary);
  max-width: 760px;
}

.service-why-section__description {
  align-self: center;
  max-width: 420px;
  margin: 0;
}

.service-why-section__body {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.service-why-section__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.service-why-section__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.service-why-section__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-why-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-why-section__item {
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid rgba(35, 41, 56, 0.12);
}

.service-why-section__item:last-child {
  margin-bottom: 0;
}

.service-why-section__item-title {
  font-family: var(--font-jost);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 10px;
}

.service-why-section__item-description {
  font-family: var(--font-jost);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.78;
  margin: 0;
}

.service-why-section__button {
  width: fit-content;
  min-width: 150px;
}

/* Tablet */
@media (max-width: 992px) {
  .service-why-section__header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .service-why-section__description {
    max-width: 680px;
  }

  .service-why-section__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-why-section__media {
    border-radius: 18px;
  }

  .service-why-section__image {
    aspect-ratio: 4 / 3;
  }

  .service-why-section__item {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .service-why-section__button {
    width: 100%;
  }
}

/* Category CTA Section */
.category-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.category-cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.category-cta-section__media {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}

.category-cta-section__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.category-cta-section__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 6vw, 90px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 32%),
    var(--primary);
  color: #fff;
  text-align: center;
}

.category-cta-section__content-inner {
  max-width: 520px;
  margin: 0 auto;
}

.category-cta-section__eyebrow {
  color: #fff;
  margin-bottom: 14px;
}

.category-cta-section__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 18px;
}

.category-cta-section__title i {
  font-style: italic;
  color: #fff;
}

.category-cta-section__description {
  max-width: 430px;
  margin: 0 auto 28px;
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: #fff;
  opacity: 0.86;
}

.category-cta-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

/* Tablet + Mobile */
@media (max-width: 900px) {
  .category-cta-section__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-cta-section__media {
    order: 1;
  }

  .category-cta-section__content {
    order: 2;
    min-height: auto;
    padding: 58px 22px;
  }

  .category-cta-section__image {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 520px) {
  .category-cta-section__content {
    padding: 50px 20px;
  }

  .category-cta-section__button {
    width: 100%;
  }
}

/* Category Service List Section */
.category-service-list-section {
  background: #fff;
  overflow: hidden;
}

.category-service-list-section__header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.category-service-list-section__title {
  color: var(--primary);
}

.category-service-list-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.category-service-list-section__list {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.category-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.category-service-row--reverse {
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr);
}

.category-service-row--reverse .category-service-row__media {
  order: 2;
}

.category-service-row--reverse .category-service-row__content {
  order: 1;
}

.category-service-row__media {
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.category-service-row__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.category-service-row:hover .category-service-row__image {
  transform: scale(1.04);
}

.category-service-row__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.category-service-row__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-service-row__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--primary);
  margin: 0;
}

.category-service-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-service-row__tags li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--light-pink);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.category-service-row__tags svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: currentColor;
}

.category-service-row__description {
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.84;
  margin: 0;
}

.category-service-row__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-service-row__prices p {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.16);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.category-service-row__prices span {
  color: var(--dark-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.68;
}

.category-service-row__actions {
  display: flex;
  gap: 14px;
}

.category-service-row__button {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-service-list-section__empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 22px;
  background: var(--light-pink);
  text-align: center;
}

.category-service-list-section__empty p {
  font-family: var(--font-jost);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark-blue);
  margin: 0 0 22px;
}

/* Tablet */
@media (max-width: 992px) {
  .category-service-row,
  .category-service-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-service-row--reverse .category-service-row__media,
  .category-service-row--reverse .category-service-row__content {
    order: initial;
  }

  .category-service-list-section__list {
    gap: 46px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .category-service-list-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .category-service-list-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .category-service-row__media {
    border-radius: 18px;
  }

  .category-service-row__image {
    aspect-ratio: 4 / 3;
  }

  .category-service-row__actions {
    flex-direction: column;
  }

  .category-service-row__button {
    width: 100%;
  }

  .category-service-row__prices p {
    width: 100%;
    justify-content: space-between;
  }
}

/* Full Background CTA Section */
.full-background-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
}

.full-background-cta-section__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.full-background-cta-section__background--mobile {
  display: none;
}

.full-background-cta-section .container {
  position: relative;
  z-index: 3;
}

.full-background-cta-section__content {
  min-height: 560px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.full-background-cta-section__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 4px;
}

.full-background-cta-section__icon img,
.full-background-cta-section__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.full-background-cta-section__icon img {
  object-fit: contain;
}

.full-background-cta-section__icon svg {
  fill: currentColor;
  color: #fff;
}

.full-background-cta-section__eyebrow {
  color: #fff;
  margin: 0;
}

.full-background-cta-section__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
  margin: 0;
}

.full-background-cta-section__title i {
  font-style: italic;
  color: #fff;
}

.full-background-cta-section__description {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
  color: #fff;
  opacity: 0.9;
}

.full-background-cta-section__button {
  margin-top: 14px;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tablet + Mobile */
@media (max-width: 768px) {
  .full-background-cta-section {
    min-height: 500px;
  }

  .full-background-cta-section__background--desktop {
    display: none;
  }

  .full-background-cta-section__background--mobile {
    display: block;
  }

  .full-background-cta-section__content {
    min-height: 500px;
    padding: 72px 0;
  }

  .full-background-cta-section__icon {
    width: 60px;
    height: 60px;
  }

  .full-background-cta-section__button {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 520px) {
  .full-background-cta-section {
    min-height: 460px;
  }

  .full-background-cta-section__content {
    min-height: 460px;
    padding: 60px 0;
  }

  .full-background-cta-section__title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
}

/* FAQ Section */
.faq-section {
  background: #fff;
  overflow: hidden;
}

.faq-section.bg-light {
  background: var(--light-pink) !important;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.faq-section__header {
  position: sticky;
  top: 120px;
}

.faq-section__title {
  color: var(--primary);
  margin-bottom: 18px;
}

.faq-section__description {
  max-width: 420px;
  margin: 0;
}

.faq-section__list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(35, 41, 56, 0.14);
}

.faq-item:first-child {
  border-top: 1px solid rgba(35, 41, 56, 0.14);
}

.faq-item__question {
  width: 100%;
  min-height: 74px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--primary);
  cursor: pointer;
}

.faq-item__question span:first-child {
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.faq-item__icon svg {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-item__icon-minus {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}

.faq-item.active .faq-item__icon-plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

.faq-item.active .faq-item__icon-minus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item.active .faq-item__answer {
  opacity: 1;
}

.faq-item__answer-inner {
  padding: 0 46px 24px 0;
}

.faq-item__answer p {
  font-family: var(--font-jost);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-section__header {
    position: static;
    max-width: 760px;
  }

  .faq-section__description {
    max-width: 620px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-item__question {
    min-height: 68px;
    padding: 20px 0;
    gap: 18px;
  }

  .faq-item__answer-inner {
    padding-right: 0;
    padding-bottom: 22px;
  }
}

/* Service Detail Hero */
.service-detail-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--light-pink);
}

.service-detail-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 90px);
}

.service-detail-hero__media {
  position: relative;
  order: 2;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  background: var(--light-gray);
}

.service-detail-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 90px);
  object-fit: cover;
  object-position: center;
}

.service-detail-hero__content {
  order: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: clamp(60px, 7vw, 120px) clamp(24px, 6vw, 90px);
}

.service-detail-hero__content-inner {
  width: 100%;
  max-width: 620px;
}

.service-detail-hero__eyebrow {
  margin-bottom: 16px;
}

.service-detail-hero__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--primary);
  margin: 0;
}

.service-detail-hero__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.service-detail-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  width: fit-content;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 20px;
  line-height: 1;
}

.service-detail-hero__price-symbol {
  font-size: 0.68em;
  line-height: 1;
  transform: translateY(-0.08em);
}

.service-detail-hero__price-plus {
  font-size: 0.78em;
}

.service-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.service-detail-hero__tags li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(35, 41, 56, 0.04);
}

.service-detail-hero__tags svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: currentColor;
}

.service-detail-hero__description {
  max-width: 560px;
  margin: 28px 0 0;
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.86;
}

.service-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-detail-hero__button {
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 992px) {
  .service-detail-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-detail-hero__media {
    order: 1;
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .service-detail-hero__image {
    min-height: auto;
    height: 100%;
  }

  .service-detail-hero__content {
    order: 2;
    min-height: auto;
    padding: 54px 24px 64px;
  }

  .service-detail-hero__content-inner {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-detail-hero__media {
    aspect-ratio: 4 / 3;
  }

  .service-detail-hero__content {
    padding: 44px 20px 54px;
  }

  .service-detail-hero__title {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .service-detail-hero__pricing {
    margin-top: 22px;
  }

  .service-detail-hero__description {
    margin-top: 22px;
  }

  .service-detail-hero__actions {
    flex-direction: column;
  }

  .service-detail-hero__button {
    width: 100%;
  }
}

/* Service Info Section - Steps Only */
.service-info-section {
  background: #fff;
  overflow: hidden;
}

.service-info-section__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.service-info-section__eyebrow {
  margin-bottom: 16px;
}

.service-info-section__title {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--primary);
}

.service-info-section__title i {
  font-style: italic;
}

.service-info-section__description {
  max-width: 680px;
  margin: 0 auto 42px;
}

.service-info-section__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
  text-align: left;
}

.service-info-section__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
}

.service-info-section__number {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.service-info-section__item-content {
  flex: 1;
  min-width: 0;
}

.service-info-section__item-title {
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 8px;
}

.service-info-section__item-description {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

.service-info-section__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.service-info-section__button {
  min-width: 170px;
}

/* Optional gray/pink variations */
.service-info-section.section-bg-gray {
  background: #f7f7f7;
}

.service-info-section.service-info-section--pink {
  background: var(--light-pink);
}

.service-info-section.service-info-section--pink .service-info-section__item {
  background: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .service-info-section__items {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-info-section__content {
    text-align: left;
  }

  .service-info-section__title,
  .service-info-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .service-info-section__items {
    margin-top: 34px;
    gap: 14px;
  }

  .service-info-section__item {
    padding: 20px;
    border-radius: 18px;
  }

  .service-info-section__number {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .service-info-section__button-wrap {
    justify-content: stretch;
  }

  .service-info-section__button {
    width: 100%;
  }
}

/* Light pink option */
.service-info-section--pink {
  background: var(--light-pink);
}

/* Service Fifty Fifty Section */
.service-fifty-fifty-section {
  background: #fff;
  overflow: hidden;
}

.service-fifty-fifty-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.service-fifty-fifty-section__media {
  height: 100%;
  padding: clamp(24px, 5vw, 80px);
}

.service-fifty-fifty-section__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  background: var(--light-gray);
}

.service-fifty-fifty-section__content {
  display: flex;
  align-items: flex-start;
  min-height: 560px;
  padding: clamp(48px, 7vw, 100px) clamp(24px, 6vw, 90px);
}

.service-fifty-fifty-section__content-inner {
  width: 100%;
  max-width: 620px;
}

.service-fifty-fifty-section__eyebrow {
  margin-bottom: 18px;
}

.service-fifty-fifty-section__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--primary);
  margin: 0 0 24px;
}

.service-fifty-fifty-section__title i {
  font-style: italic;
  color: var(--primary);
}

.service-fifty-fifty-section__description {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-jost);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.84;
}

.service-fifty-fifty-section__actions {
  margin-top: 32px;
}

.service-fifty-fifty-section__button {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image right option */
.service-fifty-fifty-section--image-right .service-fifty-fifty-section__media {
  order: 2;
}

.service-fifty-fifty-section--image-right .service-fifty-fifty-section__content {
  order: 1;
}

/* Image left option */
.service-fifty-fifty-section--image-left .service-fifty-fifty-section__media {
  order: 1;
}

.service-fifty-fifty-section--image-left .service-fifty-fifty-section__content {
  order: 2;
}

/* Light pink option */
.service-fifty-fifty-section--pink {
  background: var(--light-pink);
}

/* Tablet */
@media (max-width: 992px) {
  .service-fifty-fifty-section__inner {
    grid-template-columns: 1fr;
  }

  .service-fifty-fifty-section__media {
    order: 1 !important;
    padding: 24px 24px 0;
  }

  .service-fifty-fifty-section__content {
    order: 2 !important;
    min-height: auto;
    padding: 48px 24px 60px;
  }

  .service-fifty-fifty-section__content-inner {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .service-fifty-fifty-section__media {
    padding: 20px 20px 0;
  }

  .service-fifty-fifty-section__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .service-fifty-fifty-section__content {
    padding: 42px 20px 52px;
  }

  .service-fifty-fifty-section__button {
    width: 100%;
  }
}

/* Blog Listing Page */
.blog-list-section {
  background: #fff;
  overflow: hidden;
}

.blog-list-section__header {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.blog-list-section__title {
  color: var(--primary);
}

.blog-list-section__title i {
  font-style: italic;
}

.blog-list-section__description {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.blog-card {
  min-width: 0;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 16px 42px rgba(35, 41, 56, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(35, 41, 56, 0.12);
  border-color: rgba(224, 54, 111, 0.24);
}

.blog-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-gray);
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.blog-card__link:hover .blog-card__image {
  transform: scale(1.06);
}

.blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.blog-card__meta span {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.blog-card__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 14px;
}

.blog-card__excerpt {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--light-pink);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary);
}

.blog-card__footer span {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.blog-card__link:hover .blog-card__footer svg {
  transform: translateX(4px);
}

.blog-list-section__empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 22px;
  background: var(--light-pink);
  text-align: center;
}

.blog-list-section__empty p {
  font-family: var(--font-jost);
  font-size: 16px;
  color: var(--dark-blue);
  margin: 0;
}

/* Blog Detail Page */
.blog-detail {
  background: #fff;
}

.blog-detail-hero {
  background: var(--light-pink);
  overflow: hidden;
}

.blog-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 90px);
}

.blog-detail-hero__content {
  padding: clamp(60px, 7vw, 110px) 0;
}

.blog-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.blog-detail-hero__meta span {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.blog-detail-hero__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--primary);
  margin: 0;
}

.blog-detail-hero__excerpt {
  max-width: 620px;
  margin: 26px 0 0;
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.86;
}

.blog-detail-hero__author {
  margin: 22px 0 0;
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.blog-detail-hero__media {
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.blog-detail-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.blog-detail-content-section {
  background: #fff;
  overflow: hidden;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  justify-content: center;
}

.blog-detail-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-detail-sidebar__card {
  padding: 22px;
  border-radius: 20px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
}

.blog-detail-sidebar__label {
  margin: 0 0 16px;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-detail-sidebar__item {
  margin: 0 0 12px;
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.4;
  color: var(--dark-blue);
}

.blog-detail-sidebar__item span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-detail-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-detail-sidebar__tags span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
}

.blog-detail-sidebar__cta p {
  margin: 0 0 18px;
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-blue);
}

.blog-detail-content__body {
  font-family: var(--font-jost);
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-blue);
}

.blog-detail-content__body h2 {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 48px 0 18px;
}

.blog-detail-content__body h3 {
  font-family: var(--font-jost);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary);
  margin: 34px 0 14px;
}

.blog-detail-content__body p {
  margin: 0 0 22px;
}

.blog-detail-content__body a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-detail-content__body ul,
.blog-detail-content__body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}

.blog-detail-content__body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.blog-detail-content__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.related-posts-section {
  overflow: hidden;
}

.related-posts-section__header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.related-posts-section__title {
  color: var(--primary);
}

/* Tablet */
@media (max-width: 992px) {
  .blog-list-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .blog-detail-hero__content {
    padding: 56px 0 0;
  }

  .blog-detail-hero__media {
    margin-bottom: 56px;
  }

  .blog-detail-hero__image {
    aspect-ratio: 3 / 2;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
    order: 2;
  }

  .blog-detail-content {
    order: 1;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .blog-list-section__header,
  .related-posts-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .blog-list-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .blog-list-section__grid {
    grid-template-columns: 1fr;
  }

  .blog-card__content {
    padding: 22px;
  }

  .blog-detail-hero__title {
    font-size: clamp(2rem, 14vw, 4rem);
  }

  .blog-detail-hero__media {
    border-radius: 18px;
  }

  .blog-detail-content__body {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Shop Page */
.shop-section {
  background: #fff;
  overflow: hidden;
}

.shop-section__header {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.shop-section__title {
  color: var(--primary);
}

.shop-section__title i {
  font-style: italic;
}

.shop-section__description {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.product-card {
  min-width: 0;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 16px 42px rgba(35, 41, 56, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(35, 41, 56, 0.12);
  border-color: rgba(224, 54, 111, 0.24);
}

.product-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-gray);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.product-card__link:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.product-card__category,
.product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 9px;
  border-radius: 8px;
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__category {
  background: var(--light-pink);
  color: var(--primary);
}

.product-card__badge {
  background: var(--primary);
  color: #fff;
}

.product-card__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 14px;
}

.product-card__description {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

.product-card__price {
  margin: 18px 0 0;
  font-family: var(--font-jost);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-card__tags span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--light-pink);
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary);
}

.product-card__footer span {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__footer svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.product-card__link:hover .product-card__footer svg {
  transform: translateX(4px);
}

.shop-section__empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 22px;
  background: var(--light-pink);
  text-align: center;
}

/* Product Detail */
.product-detail-hero {
  background: var(--light-pink);
  overflow: hidden;
}

.product-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 90px);
}

.product-detail-hero__content {
  padding: clamp(60px, 7vw, 110px) 0;
}

.product-detail-hero__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 0.92;
  color: var(--primary);
  margin: 0;
}

.product-detail-hero__description {
  max-width: 620px;
  margin: 26px 0 0;
  font-family: var(--font-jost);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.7;
  color: var(--dark-blue);
  opacity: 0.86;
}

.product-detail-hero__price {
  margin: 24px 0 0;
  font-family: var(--font-jost);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.product-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-detail-hero__tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
}

.product-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-detail-hero__actions .btn {
  min-width: 160px;
}

.product-detail-hero__media {
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.product-detail-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.product-form-section {
  background: #fff;
  overflow: hidden;
}

.product-form-section__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.product-form-section__title {
  color: var(--primary);
}

.product-form-section__description {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.product-form-section__form {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.product-form-section__form iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.product-process-section {
  overflow: hidden;
}

.product-process-section__header,
.related-products-section__header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-process-section__title,
.related-products-section__title {
  color: var(--primary);
}

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

.product-process-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(224, 54, 111, 0.12);
}

.product-process-card__number {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-jost);
  font-weight: 800;
}

.product-process-card__title {
  font-family: var(--font-eb-garamond);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 12px;
}

.product-process-card__description {
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-blue);
  opacity: 0.82;
  margin: 0;
}

.related-products-section {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .shop-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .product-detail-hero__content {
    padding: 56px 0 0;
  }

  .product-detail-hero__media {
    margin-bottom: 56px;
  }

  .product-detail-hero__image {
    aspect-ratio: 3 / 2;
  }

  .product-process-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .shop-section__header,
  .product-form-section__header,
  .product-process-section__header,
  .related-products-section__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .shop-section__description,
  .product-form-section__description {
    margin-left: 0;
    margin-right: 0;
  }

  .shop-section__grid,
  .product-process-section__grid {
    grid-template-columns: 1fr;
  }

  .product-card__content {
    padding: 22px;
  }

  .product-detail-hero__title {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .product-detail-hero__actions {
    flex-direction: column;
  }

  .product-detail-hero__actions .btn {
    width: 100%;
  }

  .product-detail-hero__media,
  .product-form-section__form {
    border-radius: 18px;
  }

  .product-form-section__form iframe {
    min-height: 100px;
  }
}

/* Product Paragraph Content */
.product-content-section {
  background: #fff;
  overflow: hidden;
}

.product-content-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  justify-content: center;
}

.product-content-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-content-sidebar__card {
  padding: 22px;
  border-radius: 20px;
  background: var(--light-pink);
  border: 1px solid rgba(224, 54, 111, 0.12);
}

.product-content-sidebar__label {
  margin: 0 0 16px;
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-content-sidebar__item {
  margin: 0 0 12px;
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.4;
  color: var(--dark-blue);
}

.product-content-sidebar__item span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-content-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-content-sidebar__tags span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 800;
}

.product-content-sidebar__cta p {
  margin: 0 0 18px;
  font-family: var(--font-jost);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-blue);
}

.product-content__body {
  font-family: var(--font-jost);
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-blue);
}

.product-content__body h2 {
  font-family: var(--font-eb-garamond);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 48px 0 18px;
}

.product-content__body h2:first-child {
  margin-top: 0;
}

.product-content__body h3 {
  font-family: var(--font-jost);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary);
  margin: 34px 0 14px;
}

.product-content__body p {
  margin: 0 0 22px;
}

.product-content__body a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-content__body ul,
.product-content__body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}

.product-content__body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.product-content__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .product-content-layout {
    grid-template-columns: 1fr;
  }

  .product-content-sidebar {
    position: static;
    order: 2;
  }

  .product-content {
    order: 1;
  }
}

@media (max-width: 650px) {
  .product-content__body {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Product Detail Gallery */
.product-detail-gallery {
  width: 100%;
  min-width: 0;
}

.product-detail-gallery__main {
  overflow: hidden;
  border-radius: 24px;
  background: var(--light-gray);
  box-shadow: 0 18px 48px rgba(35, 41, 56, 0.08);
}

.product-detail-gallery__main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.product-detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-detail-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--light-gray);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.product-detail-gallery__thumb:hover {
  transform: translateY(-2px);
}

.product-detail-gallery__thumb.is-active {
  border-color: var(--primary);
}

.product-detail-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.product-detail-gallery__thumb:not(.is-active) img {
  opacity: 0.72;
}

.product-detail-gallery__thumb.is-active img {
  opacity: 1;
}

/* If your old image CSS still exists, you can remove or ignore these */
.product-detail-hero__media,
.product-detail-hero__image {
  display: none;
}

@media (max-width: 992px) {
  .product-detail-gallery__main-image {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 650px) {
  .product-detail-gallery__main {
    border-radius: 18px;
  }

  .product-detail-gallery__thumbs {
    gap: 8px;
    margin-top: 10px;
  }

  .product-detail-gallery__thumb {
    border-radius: 12px;
  }
}









