/* ============================================
   LASH STUDIO MARBELLA - ESTILOS PREMIUM
   SSG Static Site - CSS Only Animations
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors */
  --cream: #F7F4FB;
  --warm-beige: #EFEBF6;
  --soft-peach: #9595D2;
  --dusty-rose: #B8DDE1;
  --charcoal: #373148;
  --warm-gray: #665F7F;
  --light-gray: #8F88AA;
  --deep-espresso: #2A2340;
  --rich-brown: #332A4D;
  --brand-violet: #5F259F;
  --brand-violet-dark: #4B1D7F;
  --brand-lilac: #9595D2;
  --brand-lilac-soft: #DDDAE8;
  --ornament-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%235F259F' d='M12 2l2.8 7.2L22 12l-7.2 2.8L12 22l-2.8-7.2L2 12l7.2-2.8L12 2z'/%3E%3C/svg%3E");
  --ornament-star-soft: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239595D2' d='M12 2l2.8 7.2L22 12l-7.2 2.8L12 22l-2.8-7.2L2 12l7.2-2.8L12 2z'/%3E%3C/svg%3E");
  --ornament-lashes: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 28' fill='none' stroke='%235F259F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 18c5-6 13-6 18 0'/%3E%3Cpath d='M48 18c5-6 13-6 18 0'/%3E%3Cpath d='M10 15l-4-4'/%3E%3Cpath d='M14 13l-2-6'/%3E%3Cpath d='M18 12v-6'/%3E%3Cpath d='M22 13l2-6'/%3E%3Cpath d='M26 15l4-4'/%3E%3Cpath d='M52 15l-4-4'/%3E%3Cpath d='M56 13l-2-6'/%3E%3Cpath d='M60 12v-6'/%3E%3Cpath d='M64 13l2-6'/%3E%3Cpath d='M68 15l4-4'/%3E%3C/svg%3E");
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(3.5rem, 6vw, 6rem);
  --container-max: 1280px;
  
  /* Transitions */
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.625rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s var(--transition-smooth), 
              box-shadow 0.3s var(--transition-smooth);
}

.header--scrolled {
  background: rgba(247, 244, 251, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(63, 53, 87, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav__logo-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .nav__subtitle,
  .nav__cta {
    display: none;
  }
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-violet);
  transition: width 0.3s var(--transition-smooth);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--brand-violet);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__lang {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.3s;
  border: 1px solid rgba(63, 53, 87, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav__lang:hover {
  color: var(--charcoal);
  border-color: rgba(95, 37, 159, 0.35);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.btn--primary {
  background: linear-gradient(135deg, #9595D2 0%, #8A8AC8 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(95, 37, 159, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #7F7FC0 0%, #6F6FB3 100%);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(95, 37, 159, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--brand-violet);
  border: 1px solid var(--brand-violet);
}

.btn--outline:hover {
  background: var(--brand-violet);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(95, 37, 159, 0.28);
}

.btn--small {
  padding: 0.75rem 1.5rem;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

.nav__menu--open {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: fixed;
  inset: 0;
  padding: 6rem 2rem 7rem;
  background: rgba(42, 35, 64, 0.92);
  backdrop-filter: blur(18px);
  z-index: 999;
  text-align: left;
}

.nav__menu--open .nav__link {
  color: var(--cream);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav__menu--open .nav__link::after {
  background: var(--brand-lilac);
}

.nav__menu--open .nav__subtitle {
  color: rgba(221, 218, 232, 0.85);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 1rem;
}

.nav__menu--open .nav__cta {
  margin-top: auto;
}

.nav__menu--open .nav__cta .btn {
  width: 100%;
}

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

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 4.75rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "text"
    "image";
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    gap: 4rem;
  }
}

.hero__text {
  order: 1;
  grid-area: text;
}

@media (min-width: 1024px) {
  .hero__text {
    order: 1;
  }
}

.hero__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-lilac);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.9s var(--transition-smooth) 0.05s forwards;
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 1s var(--transition-smooth) 0.15s forwards;
}

.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1s var(--transition-smooth) 0.25s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 1s var(--transition-smooth) 0.35s forwards;
}

.hero__image {
  order: 2;
  grid-area: image;
  position: relative;
  opacity: 0;
  animation: heroImageIn 1.1s var(--transition-smooth) 0.2s forwards;
}

@media (min-width: 1024px) {
  .hero__image {
    order: 2;
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}


.hero__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  animation: heroFloat 10s ease-in-out 1.2s infinite;
  will-change: transform;
}

.hero__image::before,
.hero__image::after {
  content: '';
  position: absolute;
  z-index: -1;
}

.hero__image::before {
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: var(--soft-peach);
  opacity: 0.3;
}

.hero__image::after {
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--soft-peach);
}

.hero__badge {
  position: absolute;
  left: -2.5rem;
  bottom: 18%;
  width: 130px;
  height: 130px;
  z-index: 2;
  pointer-events: none;
  animation: badgeFloat 7s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero__badge {
    left: -1rem;
    bottom: 10%;
    width: 110px;
    height: 110px;
  }
}

.hero__badge svg {
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
  transform-origin: 50% 50%;
}

.hero__badge .badge-bg {
  fill: #111;
}

.hero__badge .badge-text {
  font-size: 12px;
  letter-spacing: 3px;
  fill: #f5e6dc;
  text-transform: uppercase;
}

.hero__badge .badge-icon {
  transform-origin: 100px 100px;
}

.hero__image::before {
  animation: driftA 9s ease-in-out infinite;
}

.hero__image::after {
  animation: driftB 10s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -10px); }
}

@keyframes driftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 12px); }
}

/* ============================================
   BRAND ORNAMENTS (STARS / LASHES)
   ============================================ */

.hero__text,
.services-hero__content,
.hero-centered__content,
.page-header__content,
.contact-hero__grid > :first-child,
.hero-slab__grid > :last-child,
.footer__brand {
  position: relative;
}

.hero__text::before,
.services-hero__content::before,
.hero-centered__content::before,
.page-header__content::before,
.contact-hero__grid > :first-child::before,
.hero-slab__grid > :last-child::before {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  background-image: var(--ornament-star);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
}

.hero__text::before {
  top: -1.15rem;
  right: clamp(0rem, 3vw, 2rem);
}

.services-hero__content::before {
  top: -0.95rem;
  right: 0.35rem;
}

.hero-centered__content::before {
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.page-header__content::before {
  top: -0.95rem;
  left: 0.25rem;
}

.contact-hero__grid > :first-child::before {
  top: -0.85rem;
  right: 0.75rem;
}

.hero-slab__grid > :last-child::before {
  top: -0.85rem;
  left: 0.6rem;
}

.services-hero__content::after,
.hero-slab__grid > :last-child::after {
  content: none;
}

.footer__brand::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1.8rem;
  margin-top: 0.9rem;
  background-image: var(--ornament-lashes);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.74;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: var(--section-padding) 0;
}

.section--tight {
  padding-top: 3.5rem;
}

@media (min-width: 1024px) {
  .section--tight {
    padding-top: 4rem;
  }
}

.section--beige {
  background: var(--warm-beige);
}

.section--dark {
  background: var(--deep-espresso);
  color: var(--cream);
}

.section--peach {
  background: var(--soft-peach);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  padding-top: 0.95rem;
}

.section__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.9rem;
  height: 0.9rem;
  background-image: var(--ornament-star-soft);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
}

.section--dark .section__header::before {
  background-image: var(--ornament-star);
  opacity: 0.9;
}

.section__title {
  margin-bottom: 1rem;
}

.section--dark .section__title {
  color: var(--cream);
}

.section__subtitle {
  font-size: 1.125rem;
}

/* ============================================
   PARALLAX SPLIT + STORY
   ============================================ */

.parallax-split {
  background: var(--warm-beige);
  position: relative;
}

[data-parallax] {
  will-change: transform;
}

.parallax-split__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .parallax-split__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.parallax-split__content {
  position: relative;
}

.parallax-split__content > * {
  position: relative;
  z-index: 1;
}

.parallax-split__list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  color: var(--warm-gray);
}

.parallax-split__ghost {
  position: absolute;
  top: -2rem;
  right: -1rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(63, 53, 87, 0.08);
  pointer-events: none;
  z-index: 0;
}

.parallax-split__media {
  position: relative;
  align-self: start;
}

@media (min-width: 1024px) {
  .parallax-split__media {
    position: sticky;
    top: 6rem;
  }
}

.parallax-split__frame {
  position: absolute;
  inset: 1.5rem -1rem -1rem 1.5rem;
  border: 2px solid rgba(149, 149, 210, 0.6);
  border-radius: 1.5rem;
  z-index: -1;
}

.parallax-story__grid {
  gap: 4rem;
}

.parallax-story__content {
  position: sticky;
  top: 6rem;
}

.parallax-story__steps {
  margin: 2rem 0 2.5rem;
  gap: 1rem;
}

.parallax-story__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.9rem 0 0.9rem 0.75rem;
  border-left: 2px solid rgba(149, 149, 210, 0.3);
  color: var(--warm-gray);
  transition: all 0.35s var(--transition-smooth);
}

.parallax-story__index {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--soft-peach);
  opacity: 0.6;
  line-height: 1.2;
}

.parallax-story__copy {
  display: grid;
  gap: 0.35rem;
}

.parallax-story__copy strong {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.parallax-story__copy span {
  font-size: 0.95rem;
}

.parallax-story__step.is-active {
  border-left-color: var(--soft-peach);
  background: linear-gradient(90deg, rgba(149, 149, 210, 0.18) 0%, rgba(149, 149, 210, 0.06) 55%, rgba(149, 149, 210, 0) 100%);
  color: var(--charcoal);
  transform: translateX(8px);
}

.parallax-story__step.is-active .parallax-story__index {
  opacity: 1;
  color: var(--charcoal);
}

.parallax-story__media {
  display: grid;
  gap: 3.5rem;
}

.parallax-story__image {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(63, 53, 87, 0.08);
  aspect-ratio: 3 / 4;
  opacity: 0.3;
  transform: translateY(45px) scale(0.96);
  transition: opacity 0.5s var(--transition-smooth),
              transform 0.5s var(--transition-smooth),
              box-shadow 0.5s var(--transition-smooth),
              filter 0.5s var(--transition-smooth);
  filter: saturate(0.78);
  background: var(--cream);
}

.parallax-story__image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  z-index: 2;
  box-shadow: 0 30px 70px rgba(63, 53, 87, 0.18);
  filter: saturate(1);
}

.parallax-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

@media (max-width: 1023px) {
  .parallax-story__content {
    position: relative;
    top: auto;
  }

  .parallax-story__step.is-active {
    transform: none;
  }

  .parallax-story__media {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .parallax-story__steps {
    margin-bottom: 1.5rem;
  }

  .parallax-story__step {
    padding: 0.9rem 1rem;
  }

  .parallax-story__image {
    opacity: 1;
    transform: none;
  }
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--soft-peach);
  z-index: -1;
}

.about__content {
  space-y: 1.5rem;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.about__list {
  margin-bottom: 2rem;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about__check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(149, 149, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__check svg {
  width: 1rem;
  height: 1rem;
  color: var(--soft-peach);
}

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

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  overflow: hidden;
  transition: transform 0.4s var(--transition-smooth),
              box-shadow 0.4s var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.14);
}

.service-card__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__content {
  padding: 1.5rem;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(149, 149, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--soft-peach);
}

.service-card__title {
  font-size: 1.25rem;
}

.service-card__description {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card__price {
  font-weight: 600;
  color: var(--charcoal);
}

.service-card__duration {
  font-size: 0.875rem;
  color: var(--light-gray);
}

/* ============================================
   SERVICE BUNDLES
   ============================================ */

.bundle-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bundle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bundle-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(63, 53, 87, 0.08);
  box-shadow: 0 18px 38px rgba(63, 53, 87, 0.08);
  transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth);
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(63, 53, 87, 0.14);
}

.bundle-card__tag {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(149, 149, 210, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 1rem;
}

.bundle-card__title {
  margin-bottom: 0.75rem;
}

.bundle-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
  color: var(--warm-gray);
}

.bundle-card__price {
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.bundle-card__price span {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 400;
}

/* ============================================
   MAINTENANCE PLAN
   ============================================ */

.maintenance-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .maintenance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.maintenance-card {
  background: rgba(149, 149, 210, 0.12);
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.maintenance-card__step {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.maintenance-card__title {
  margin-bottom: 0.5rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process__item {
  text-align: center;
}

.process__number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process__badge {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--soft-peach);
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid rgba(149, 149, 210, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--soft-peach);
}

.process__title {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process__description {
  color: var(--light-gray);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(63, 53, 87, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(63, 53, 87, 0.06);
  transition: transform 0.35s var(--transition-smooth),
              box-shadow 0.35s var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(63, 53, 87, 0.18);
}

.testimonial-card__quote {
  width: 2rem;
  height: 2rem;
  color: var(--soft-peach);
  margin-bottom: 1.5rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card__star {
  width: 1rem;
  height: 1rem;
  color: var(--soft-peach);
  fill: currentColor;
}

.testimonial-card__text {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-card__service {
  font-size: 0.875rem;
  color: var(--light-gray);
}

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */

.ba-gallery {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ba-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ba-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ba-gallery__item {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(63, 53, 87, 0.08);
  box-shadow: 0 18px 36px rgba(63, 53, 87, 0.1);
}

.ba-gallery__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.ba-gallery__label {
  position: absolute;
  top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
}

.ba-gallery__label--before {
  left: 0.75rem;
}

.ba-gallery__label--after {
  right: 0.75rem;
}

.ba-gallery__caption {
  padding: 1rem 1.25rem 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

.rating-display {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.rating-display__stars {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.rating-display__star {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--soft-peach);
  fill: currentColor;
}

.rating-display__text {
  color: var(--charcoal);
  font-size: 1rem;
}

.rating-card {
  background: white;
  border: 1px solid rgba(63, 53, 87, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(63, 53, 87, 0.08);
}

.rating-card__note {
  margin-top: 1rem;
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.rating-card .btn {
  margin-top: 1.5rem;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.instagram__item:hover img {
  transform: scale(1.03);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 53, 87, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram__item:hover .instagram__overlay {
  opacity: 1;
}

.instagram__overlay svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  text-align: center;
}

.cta__title {
  margin-bottom: 1rem;
}

.cta__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

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

.footer {
  background: var(--deep-espresso);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__tagline {
  color: var(--light-gray);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__title {
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__link {
  color: var(--light-gray);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--cream);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--soft-peach);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer__contact-text {
  color: var(--light-gray);
  font-size: 0.9375rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copyright {
  color: var(--light-gray);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  color: var(--light-gray);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer__legal-link:hover {
  color: var(--cream);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  z-index: 999;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
}

.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* ============================================
   SCROLL ANIMATIONS (CSS Only)
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.is-visible {
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .animate-on-scroll {
    opacity: 1;
  }

  .hero__tagline,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__image {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
  padding: 8rem 0 4rem;
  background: var(--cream);
  text-align: center;
}

.page-header--tight {
  padding: 6.5rem 0 3rem;
}

.page-header--split {
  text-align: left;
}

.page-header__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-header__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.page-header__content {
  max-width: 640px;
}

.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.page-header__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 149, 210, 0.5);
  background: rgba(221, 218, 232, 0.55);
  color: var(--brand-violet);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-header__title {
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header--split .page-header__subtitle {
  margin-left: 0;
  margin-right: 0;
}

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

.services-hero {
  padding: 8.5rem 0 5.5rem;
  background: linear-gradient(120deg, #f1edf8 0%, #e7e2f2 55%, #efebf6 100%);
  position: relative;
  overflow: hidden;
}

.services-hero::after {
  content: "";
  position: absolute;
  top: -10rem;
  right: -12rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(149, 149, 210, 0.35) 0%, rgba(149, 149, 210, 0) 70%);
  pointer-events: none;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(63, 53, 87, 0.05) 0%, rgba(63, 53, 87, 0) 45%);
  pointer-events: none;
}

.services-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.services-hero__content {
  max-width: 620px;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.services-hero__stats {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .services-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-hero__stat {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 28px rgba(63, 53, 87, 0.1);
}

.services-hero__stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.services-hero__stat span {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.services-hero__media {
  position: relative;
}

.services-hero--reverse .services-hero__media {
  order: -1;
}

.services-hero__frame {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(63, 53, 87, 0.2);
  transform: translateY(10px);
}

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

.services-hero__badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--deep-espresso);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  box-shadow: 0 12px 24px rgba(63, 53, 87, 0.25);
}

.services-hero__note {
  position: absolute;
  bottom: -1.25rem;
  right: 1.5rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 18px 38px rgba(63, 53, 87, 0.18);
  font-size: 0.9rem;
  color: var(--warm-gray);
}

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

.service-menu {
  display: grid;
  gap: 1.25rem;
}

.service-menu__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(63, 53, 87, 0.08);
  box-shadow: 0 14px 30px rgba(63, 53, 87, 0.08);
}

.service-menu__title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.service-menu__meta {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.service-menu__price {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.1rem;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(63, 53, 87, 0.08);
  box-shadow: 0 16px 34px rgba(63, 53, 87, 0.08);
  transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(63, 53, 87, 0.16);
}

.product-card__image {
  height: 180px;
  background: radial-gradient(circle at top, rgba(149, 149, 210, 0.35), rgba(239, 235, 246, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-peach);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__content {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-card__desc {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card__price {
  font-weight: 600;
  color: var(--charcoal);
}

.product-card__cta {
  margin-top: 1rem;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 149, 210, 0.4);
  background: rgba(149, 149, 210, 0.18);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

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

.products-hero {
  padding: 9rem 0 5.5rem;
  background: linear-gradient(130deg, #efebf6 0%, #f7f4fb 45%, #e3ddf0 100%);
  position: relative;
  overflow: hidden;
}

.products-hero::after {
  content: "";
  position: absolute;
  top: -9rem;
  left: -12rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(149, 149, 210, 0.35) 0%, rgba(149, 149, 210, 0) 70%);
  pointer-events: none;
}

.products-hero::before {
  content: "";
  position: absolute;
  right: -15rem;
  top: 10rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(149, 149, 210, 0.28) 0%, rgba(149, 149, 210, 0) 70%);
  pointer-events: none;
}

.products-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .products-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.products-hero__media {
  position: relative;
}

.products-hero__panel {
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 28px 55px rgba(63, 53, 87, 0.16);
}

.products-hero__panel h2 {
  margin-bottom: 1rem;
}

.products-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--warm-gray);
}

.products-hero--stacked .products-hero__grid {
  grid-template-columns: 1fr;
}

.products-hero--stacked .products-hero__panel {
  max-width: 520px;
  margin-left: auto;
}

.products-hero--media {
  background: linear-gradient(130deg, #efebf6 0%, #f7f4fb 45%, #e3ddf0 100%);
}

.products-hero__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.products-hero__image {
  max-width: min(360px, 75vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(63, 53, 87, 0.18));
  transform: rotate(-4deg);
}

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

.hero-centered {
  padding: 8rem 0 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f7f4fb 0%, #efebf6 100%);
}

.hero-centered--ring {
  position: relative;
  overflow: hidden;
}

.hero-centered--ring::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(149, 149, 210, 0.35);
  border-radius: 50%;
  top: -10rem;
  right: -6rem;
}

.hero-centered__content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-centered__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-centered__meta span {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 149, 210, 0.5);
  background: rgba(221, 218, 232, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-violet);
}

.hero-centered .services-hero__actions {
  justify-content: center;
}

/* ============================================
   LASH ACCENT
   ============================================ */

.hero-divider {
  width: min(180px, 60%);
  height: 2px;
  margin: 1.25rem auto 1.5rem;
  background: linear-gradient(90deg, transparent 0%, rgba(63, 53, 87, 0.35) 45%, rgba(63, 53, 87, 0.35) 55%, transparent 100%);
  position: relative;
}

.hero-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(149, 149, 210, 0.8);
}

.hero-slab {
  padding: 8.5rem 0 5rem;
  background: var(--cream);
}

.hero-slab__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-slab__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.hero-slab__image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(63, 53, 87, 0.18);
}

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

.hero-quote {
  padding: 8.5rem 0 5rem;
  background: linear-gradient(135deg, #efebf6 0%, #f7f4fb 55%, #e3ddf0 100%);
}

.hero-quote__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-quote__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.hero-quote__panel {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(63, 53, 87, 0.15);
}

.hero-quote--stacked .hero-quote__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-quote--stacked .hero-quote__panel {
  max-width: 520px;
  margin: 0 auto;
}

.hero-slab--accent {
  position: relative;
  overflow: hidden;
}

.hero-slab--accent::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  right: -10rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(63, 53, 87, 0.08) 0%, rgba(63, 53, 87, 0) 70%);
  pointer-events: none;
}

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

.contact-hero {
  padding: 9rem 0 5rem;
  background: radial-gradient(circle at top left, rgba(149, 149, 210, 0.3) 0%, rgba(239, 235, 246, 0.9) 55%, #f7f4fb 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -12rem;
  left: -10rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(63, 53, 87, 0.08) 0%, rgba(63, 53, 87, 0) 70%);
  pointer-events: none;
}

.contact-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.contact-hero__media {
  position: relative;
}

.contact-hero--reverse .contact-hero__media {
  order: -1;
}

.contact-hero__image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 28px 55px rgba(63, 53, 87, 0.18);
}

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

.contact-hero__floating {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 18px 38px rgba(63, 53, 87, 0.18);
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.page-header__panel {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(63, 53, 87, 0.12);
}

.page-header__panel-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.page-header__panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  color: var(--warm-gray);
}

.page-header__panel-note {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

.contact-details {
  display: grid;
  gap: 1.75rem;
}

.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(63, 53, 87, 0.08);
}

.contact-card--light {
  background: rgba(149, 149, 210, 0.18);
  box-shadow: none;
}

.contact-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.contact-card__text {
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.contact-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.contact-card__list li {
  display: grid;
  gap: 0.35rem;
  color: var(--charcoal);
}

.contact-card__list li span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-gray);
}

.contact-card__list a {
  color: var(--charcoal);
  font-weight: 500;
}

.contact-card__actions {
  display: grid;
  gap: 0.75rem;
}

.contact-card__tag {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(63, 53, 87, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(63, 53, 87, 0.1);
}

.contact-form__title {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--soft-peach);
  box-shadow: 0 0 0 3px rgba(149, 149, 210, 0.2);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.form-submit {
  width: 100%;
  padding: 1.05rem;
  font-size: 0.95rem;
}

.map-embed {
  width: 100%;
  height: 420px;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(63, 53, 87, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   ARRIVAL INFO
   ============================================ */

.arrival-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .arrival-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arrival-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(63, 53, 87, 0.08);
  box-shadow: 0 14px 30px rgba(63, 53, 87, 0.08);
}

.arrival-card__title {
  margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE QA PASS (2026-02-07)
   ============================================ */

html,
body {
  overflow-x: clip;
}

/* Ensure touch-friendly controls across breakpoints */
.btn {
  min-height: 46px;
}

@media (max-width: 1023px) {
  /* Keep header compact on tablet/mobile */
  .nav {
    height: 4rem;
  }

  .nav__actions .btn--small {
    display: none;
  }

  /* Avoid menu clipping on short mobile screens */
  .nav__menu--open {
    padding: 5.25rem 1.25rem 6rem;
    gap: 1.35rem;
    overflow-y: auto;
  }

  .nav__menu--open .nav__link {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  }

  .services-hero__grid,
  .contact-hero__grid,
  .hero-slab__grid,
  .hero-quote__grid,
  .products-hero__grid,
  .contact-layout {
    gap: 2.25rem;
  }
}

@media (max-width: 768px) {
  /* Keep primary message visible quickly on first paint */
  .hero {
    padding-top: 4.9rem;
    padding-bottom: 2.75rem;
  }

  .hero__content {
    gap: 1.6rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }

  /* Reduce overlap risk on small screens */
  .hero__badge {
    display: none;
  }

  .hero-centered,
  .hero-slab,
  .hero-quote,
  .services-hero,
  .contact-hero,
  .products-hero,
  .page-header {
    padding-top: 6.4rem;
    padding-bottom: 3rem;
  }

  .services-hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }

  .services-hero__badge,
  .services-hero__note,
  .contact-hero__floating {
    position: static;
    margin-top: 1rem;
  }

  .services-hero__badge {
    display: inline-flex;
  }

  .services-hero__frame,
  .hero-slab__image,
  .contact-hero__image,
  .map-embed {
    border-radius: 1.25rem;
  }

  .map-embed {
    height: 320px;
  }

  .hero__text::before,
  .hero__text::after,
  .services-hero__content::before,
  .services-hero__content::after,
  .hero-centered__content::before,
  .page-header__content::before,
  .contact-hero__grid > :first-child::before,
  .hero-slab__grid > :last-child::before,
  .hero-slab__grid > :last-child::after {
    opacity: 0.5;
  }

  .hero-centered__content::before {
    transform: translateX(-50%) scale(0.9);
  }

  .section__header {
    padding-top: 0.8rem;
  }

  .section__header::before {
    width: 0.78rem;
    height: 0.78rem;
  }

  .footer__brand::after {
    width: 4.8rem;
    height: 1.6rem;
  }
}
