:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --pink-600: #db2777;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #fff;
  --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius: 1rem;
  --radius-full: 9999px;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 5rem;
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

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

a {
  color: inherit;
}

.shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--sm {
  width: 1.125rem;
  height: 1.125rem;
}

.icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--lg {
  width: 2rem;
  height: 2rem;
}

.icon--xl {
  width: 1.75rem;
  height: 1.75rem;
}

.icon--star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--rose-500);
  display: block;
  flex-shrink: 0;
}

.text-rose {
  color: var(--rose-500);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

.brand__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.brand__tag {
  font-size: 0.75rem;
  color: var(--rose-500);
}

.brand__tag--footer {
  color: var(--rose-400);
}

.nav__desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* User menu (avatar + dropdown) */
.user-menu-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.user-name {
  max-width: 10rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-trigger:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.user-menu-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(244 63 94 / 0.18);
}

.user-avatar,
.user-avatar-fallback {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.user-avatar {
  object-fit: cover;
  border: 2px solid var(--rose-100);
}

.user-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--rose-700);
  background: rgb(244 63 94 / 0.12);
  border: 2px solid rgb(244 63 94 / 0.18);
}

.user-menu-arrow {
  color: var(--gray-700);
  opacity: 0.9;
}

.user-menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  width: min(18rem, 86vw);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  z-index: 60;
}

.user-menu-dropdown[aria-hidden="true"] {
  display: none;
}

.user-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-menu-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--rose-100);
  flex-shrink: 0;
}

.user-menu-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--rose-700);
  background: rgb(244 63 94 / 0.12);
  border: 2px solid rgb(244 63 94 / 0.18);
}

.user-menu-info {
  min-width: 0;
}

.user-menu-username {
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-email {
  font-size: 0.8125rem;
  color: var(--gray-600);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.75rem 0;
}

.user-menu-form {
  margin: 0;
}

.user-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--gray-900);
  transition: background 0.15s, border-color 0.15s;
}

.user-menu-item:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

/* Match photography header: compact rounded rects for Book Now / Sign In */
.nav__cta-group .btn {
  border-radius: 0.5rem;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--rose-500);
}

.nav__link--block {
  display: block;
  padding: 0.25rem 0;
}

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
}

.nav__toggle:hover {
  background: var(--gray-100);
}

.nav__mobile {
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav__mobile .btn {
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .nav__desktop {
    display: flex;
  }

  .nav__toggle {
    display: none;
  }

  .nav__mobile {
    display: none !important;
  }
}

.site-header.is-open .nav__icon-open {
  display: none;
}

.site-header.is-open .nav__icon-close {
  display: block !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--rose-500);
  color: var(--white);
  border-color: var(--rose-500);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--rose-600);
  border-color: var(--rose-600);
}

/* Outline nav button — same role as photography `btn-outline btn-nav-signin` (light header variant) */
.btn--outline-nav {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-200);
  box-shadow: none;
}

.btn--outline-nav:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

.btn--outline-light {
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
  border-color: var(--white);
  backdrop-filter: blur(6px);
}

.btn--outline-light:hover {
  background: rgb(255 255 255 / 0.2);
}

.btn--light {
  background: var(--white);
  color: var(--rose-600);
  border-color: var(--white);
  box-shadow: var(--shadow);
}

.btn--light:hover {
  background: var(--gray-100);
}

.btn--dark-rose {
  background: var(--rose-700);
  color: var(--white);
  border-color: var(--rose-700);
  box-shadow: var(--shadow);
}

.btn--dark-rose:hover {
  background: #9f1239;
  border-color: #9f1239;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.5) 45%, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 6rem 5rem;
}

.hero__inner {
  max-width: 40rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e5e7eb;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge--glass {
  background: rgb(244 63 94 / 0.2);
  color: var(--rose-300);
  backdrop-filter: blur(6px);
}

.badge--soft {
  background: var(--rose-100);
  color: var(--rose-600);
}

/* Sections */
.section {
  padding-block: 5rem;
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--gray-900);
}

.section__title--left {
  text-align: left;
}

.section__sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 40rem;
  margin: 0 auto;
}

.section__lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 0 0 2rem;
}

.section--services {
  background: linear-gradient(to bottom, var(--white), rgb(255 241 242 / 0.35));
}

.section--book-appointment {
  background: linear-gradient(to bottom, rgb(255 241 242 / 0.35), var(--white));
}

.section--contact {
  background: linear-gradient(to bottom, var(--white), rgb(255 241 242 / 0.35));
}

/* Services grid */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.card--service {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card--service:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgb(254 205 211);
}

.card__icon-wrap {
  margin-bottom: 1.5rem;
}

.card__icon-wrap .icon {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.875rem;
  border-radius: var(--radius-full);
  background: var(--rose-50);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

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

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.service-list li + li {
  margin-top: 0.5rem;
}

.service-list__tick {
  color: var(--rose-500);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-list__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.service-list__link:hover {
  color: var(--rose-500);
}

/* Why */
.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.why__visual {
  position: relative;
}

.why__frame {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

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

.why__stat {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  background: var(--rose-500);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 12rem;
}

@media (min-width: 640px) {
  .why__stat {
    right: -1.5rem;
    bottom: -1.5rem;
  }
}

.why__stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.why__stat-label {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.95;
}

.grid--features {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.feature__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.feature__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* Homepage — Our Beautiful Work (marquee layout aligned with /bridal-hd-makeup “Our Recent Work”) */
.home-section-gallery {
  background: var(--gray-50);
}

.home-section-header-gallery {
  text-align: center;
  margin-bottom: 3rem;
}

.home-section-header-gallery .badge--soft {
  margin-bottom: 1rem;
}

.home-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  background: linear-gradient(to right, var(--rose-600), var(--rose-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-section-header-gallery .section__sub {
  margin: 0 auto;
  max-width: 42rem;
}

.home-section-gallery-home .gallery-marquee-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin: 0 -1rem;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-section-gallery-home .gallery-marquee-wrap::-webkit-scrollbar {
  display: none;
}

.home-section-gallery-home .gallery-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.home-section-gallery-home .gallery-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
}

.home-section-gallery-home .gallery-marquee-track .gallery-item {
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
}

.home-section-gallery-home .gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: grab;
}

.home-section-gallery-home .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.home-section-gallery-home .gallery-item:hover img {
  transform: scale(1.08);
}

.home-section-gallery-home .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 40%, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.home-section-gallery-home .gallery-item:hover::after {
  opacity: 1;
}

.home-section-gallery-home .gallery-item-cat {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: var(--white);
  font-size: 0.875rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}

.home-section-gallery-home .gallery-item-location {
  font-size: 0.75rem;
  opacity: 0.9;
}

.home-section-gallery-home .gallery-item-location::before {
  content: '·';
  margin-right: 0.35rem;
  opacity: 0.8;
}

.home-section-gallery-home .gallery-item:hover .gallery-item-cat {
  opacity: 1;
}

@media (max-width: 640px) {
  .home-section-gallery-home .gallery-marquee-wrap {
    margin: 0 max(-1rem, calc(-1 * env(safe-area-inset-left)));
    padding-left: max(1rem, env(safe-area-inset-left));
  }

  .home-section-gallery-home .gallery-marquee-track .gallery-item {
    width: 220px;
    min-width: 220px;
  }
}

/* Testimonials — horizontal marquee (content drifts left → right) */
.section--testimonials {
  position: relative;
}

.testimonials-marquee-shell {
  overflow: hidden;
  width: 100%;
  padding-block: 0.25rem 1.25rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-marquee {
  overflow: hidden;
}

.testimonials-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-marquee-ltr 90s linear infinite;
}

.testimonials-marquee:hover .testimonials-marquee__track {
  animation-play-state: paused;
}

@keyframes testimonials-marquee-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 0 0 auto;
  width: min(100vw - 3rem, 22rem);
  margin: 0;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(to bottom right, var(--rose-50), var(--white));
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.testimonial-card__photo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-100);
  flex-shrink: 0;
}

.testimonial-card__aside {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding-top: 0.1rem;
}

.testimonial-card__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.testimonial-card__stars {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.testimonial-card__text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-top: 0.125rem;
  border-top: 1px solid rgb(244 63 94 / 0.12);
}

.testimonial-card__name {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--gray-900);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--rose-500);
  margin: 0;
  line-height: 1.3;
}

/* Screen-reader copy of testimonials (marquee row is aria-hidden) */
.testimonials-static {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-shell {
    display: none;
  }

  .testimonials-marquee__track {
    animation: none;
  }

  .testimonials-static {
    position: static;
    width: 100%;
    max-width: var(--max);
    height: auto;
    margin-inline: auto;
    margin-top: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-inline: clamp(1rem, 4vw, 2rem);
    padding-bottom: 0.5rem;
  }

  .testimonials-static .testimonial-card {
    width: 100%;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 768px) {
  .testimonials-static {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1024px) {
  .testimonials-static {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Visit Our Studio / showroom map (same pattern as used-cars location section) */
.section-showroom {
  padding: 2.5rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-showroom {
    padding: 3rem 0;
  }
}

.showroom-narrow {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.showroom-head {
  text-align: center;
  margin-bottom: 2rem;
}

.showroom-chips {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 0.75rem;
}

.showroom-chip {
  appearance: none;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.showroom-chip:hover {
  background: var(--gray-100);
}

.showroom-chip.is-active {
  background: rgb(244 63 94 / 0.12);
  border-color: rgb(244 63 94 / 0.28);
  color: var(--rose-700);
  box-shadow: 0 8px 18px rgb(244 63 94 / 0.08);
}

.showroom-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(244 63 94 / 0.18);
}

.showroom-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.showroom-desc {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.showroom-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.showroom-map-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.showroom-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.showroom-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.showroom-address {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.45;
  flex: 1;
  min-width: 12rem;
}

.btn--showroom-dir {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.showroom-dir-icon {
  flex-shrink: 0;
}

/* Contact */
.grid--contact {
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

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

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.15s;
}

.contact-card:hover .contact-card__icon {
  background: var(--rose-100);
}

.contact-card__title {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.contact-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.cta-banner {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 1.25rem;
  background: linear-gradient(to right, var(--rose-500), var(--pink-600));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.cta-banner__sub {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-banner__actions {
    flex-direction: row;
  }
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-block: 3rem 2rem;
}

.site-footer__inner {
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.brand--footer .brand__name {
  color: var(--white);
}

.footer-brand__blurb {
  font-size: 0.875rem;
  margin: 1rem 0 1.25rem;
  max-width: 22rem;
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--gray-800);
  color: var(--gray-400);
  transition: color 0.15s, background 0.15s;
}

.social-btn:hover {
  color: var(--rose-400);
  background: var(--gray-700);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li + li {
  margin-top: 0.5rem;
}

.footer-list a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--gray-400);
  transition: color 0.15s;
}

.footer-list a:hover {
  color: var(--rose-400);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact li + li {
  margin-top: 0.75rem;
}

.footer-contact a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--rose-400);
}

.footer-contact__address {
  white-space: pre-line;
  line-height: 1.45;
}

.sticky-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sticky-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
}

.sticky-whatsapp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bar {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--rose-400);
}

/* Error pages — generic (500, etc.) */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding-block: 4rem;
}

/* Legal pages (Terms, Privacy, etc.) */
.legal-page {
  background: var(--gray-50);
  min-height: 100vh;
}

.legal-main {
  padding-top: var(--header-h);
}

.legal-hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.legal-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--rose-100);
  border: 1px solid rgb(244 63 94 / 0.22);
  border-radius: var(--radius-full);
  color: var(--rose-600);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .legal-title {
    font-size: 2.5rem;
  }
}

.legal-title .gradient-text {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-hero-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin: 0 auto;
  max-width: 42rem;
  line-height: 1.65;
}

.legal-updated {
  margin: 0.9rem 0 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.legal-section {
  padding: 0 0 4rem;
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .legal-content {
    padding: 2rem 2.5rem;
  }
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gray-700);
}

.legal-list li {
  margin-bottom: 1.5rem;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.legal-list p {
  margin: 0 0 0.75rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.legal-list ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--gray-700);
}

.legal-list a {
  color: var(--rose-600);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.legal-list a:hover {
  color: var(--rose-700);
  border-bottom-color: rgb(190 18 60 / 0.35);
}

.legal-back {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.legal-back .btn {
  border-radius: 0.5rem;
}

.error-page__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0;
}

.error-page__text {
  color: var(--gray-600);
  margin: 0 0 1rem;
}

/* Branded error pages (404 & 500) — shared shell */
.site-error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--white) 0%, var(--rose-50) 42%, #fdf2f4 100%);
  position: relative;
  overflow-x: hidden;
}

.site-error-page--server {
  background: linear-gradient(165deg, #fafafa 0%, #fff5f6 40%, #f8f4f6 100%);
}

.site-error-top {
  position: relative;
  z-index: 2;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgb(244 63 94 / 0.08);
  background: rgb(255 255 255 / 0.72);
  backdrop-filter: blur(10px);
}

.site-error-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.15s;
}

.site-error-brand:hover {
  color: var(--rose-600);
}

.site-error {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) 3rem;
  position: relative;
  z-index: 1;
}

.site-error__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.45;
}

.site-error__glow--1 {
  width: min(90vw, 28rem);
  height: min(90vw, 28rem);
  background: radial-gradient(circle, var(--rose-300) 0%, transparent 70%);
  top: -5%;
  right: -10%;
}

.site-error__glow--2 {
  width: min(80vw, 22rem);
  height: min(80vw, 22rem);
  background: radial-gradient(circle, #fbcfe8 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
  opacity: 0.35;
}

.site-error__glow--3 {
  width: min(60vw, 16rem);
  height: min(60vw, 16rem);
  background: radial-gradient(circle, var(--rose-100) 0%, transparent 65%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.site-error-page--server .site-error__glow--1 {
  background: radial-gradient(circle, #e9d5ff 0%, transparent 70%);
  opacity: 0.4;
}

.site-error-page--server .site-error__glow--2 {
  background: radial-gradient(circle, #fce7f3 0%, transparent 70%);
  opacity: 0.38;
}

.site-error-page--server .site-error__glow--3 {
  background: radial-gradient(circle, var(--rose-100) 0%, transparent 65%);
}

.site-error__inner {
  position: relative;
  z-index: 2;
  max-width: 32rem;
  text-align: center;
}

.site-error__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-600);
  background: var(--white);
  border: 1px solid rgb(244 63 94 / 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgb(244 63 94 / 0.08);
}

.site-error__code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--rose-500) 0%, var(--pink-600) 45%, var(--rose-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px rgb(244 63 94 / 0.15);
}

.site-error-page--server .site-error__code {
  background: linear-gradient(135deg, #a855f7 0%, var(--rose-500) 50%, var(--pink-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-error__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.site-error__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 0 2rem;
}

.site-error__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .site-error__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.site-error__btn-primary {
  border-radius: 0.5rem;
  min-width: 11rem;
}

.site-error__btn-secondary {
  border-radius: 0.5rem;
  background: var(--white);
  min-width: 11rem;
}

.site-error__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-size: 0.875rem;
}

.site-error__links a {
  color: var(--rose-600);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}

.site-error__links a:hover {
  color: var(--rose-700);
  border-bottom-color: rgb(190 18 60 / 0.35);
}

.site-error__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-300);
  display: inline-block;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .site-error__glow {
    filter: blur(40px);
    opacity: 0.22;
  }
}
