/* Alangaaram Bridal Jewels — design system */

:root {
  --bg: #fdfbf7;
  --bg-elevated: #ffffff;
  --text: #222222;
  --text-muted: #5c5c5c;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.14);
  --royal: #3d2463;
  --royal-soft: rgba(61, 36, 99, 0.08);
  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 14px;
  --shadow-sm: 0 4px 20px rgba(34, 34, 34, 0.06);
  --shadow: 0 12px 40px rgba(34, 34, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(34, 34, 34, 0.12);
  --font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --footer-dark: #0b0a0c;
  --footer-muted: #a8a4ad;
  --header-h: 4.75rem;
  --section-pad: clamp(5rem, 11vw, 7.5rem);
  --container: min(1120px, calc(100% - 2.5rem));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.09375rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 2000;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), backdrop-filter 0.45s var(--ease-out);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(34, 34, 34, 0.06);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  width: var(--container);
  margin-inline: auto;
  padding-block: 0.625rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.brand__logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(61, 36, 99, 0.14);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.35rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease;
}

.nav__list a:not(.nav__cta):hover {
  color: var(--royal);
}

.nav__cta {
  padding: 0.6rem 1.25rem !important;
  background: linear-gradient(145deg, #e8c85c, var(--accent) 45%, #b8922a);
  color: #141414 !important;
  font-weight: 700 !important;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, filter 0.2s ease;
}

.nav__cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
  .mobile-nav.is-open {
    display: block;
  }
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__list a {
  display: block;
  padding: 1rem 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.mobile-nav__list a:hover {
  background: var(--royal-soft);
}

.mobile-nav__cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--accent) !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
}

@media (max-width: 767px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    width: calc(100% - 1.5rem);
  }
}

@media (min-width: 768px) {
  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__name {
    font-size: 1.4rem;
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), filter 0.2s ease;
  text-align: center;
}

.btn--large {
  min-height: 3.25rem;
  padding-inline: 1.75rem;
  font-size: 1.0625rem;
}

@media (max-width: 767px) {
  .btn--large {
    min-height: 3.5rem;
    width: 100%;
    max-width: 100%;
  }
}

.btn--primary {
  background: linear-gradient(145deg, #e8c85c, var(--accent) 45%, #b8922a);
  color: #141414;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.38);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.btn--hero {
  letter-spacing: 0.02em;
  padding-inline: 2rem !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn--hero:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--lux {
  background: linear-gradient(145deg, #f0d875, var(--accent) 40%, #b8891f);
  color: #141414 !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(212, 175, 55, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, filter 0.2s ease;
}

.btn--lux:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 8px 24px rgba(212, 175, 55, 0.5);
}

.btn--lux-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}

.btn--lux-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text) !important;
  font-weight: 700 !important;
  border: 2px solid rgba(34, 34, 34, 0.18);
  box-shadow: none;
}

.btn--outline-dark:hover {
  border-color: var(--royal);
  color: var(--royal) !important;
  transform: translateY(-2px);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -10%;
  will-change: transform;
  pointer-events: none;
}

.hero__media-inner {
  width: 100%;
  height: 100%;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media-inner {
    animation: heroKenBurns 32s ease-in-out infinite alternate;
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.14);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(4, 2, 10, 0.88) 0%, rgba(16, 10, 26, 0.62) 42%, rgba(28, 14, 48, 0.85) 100%),
    radial-gradient(ellipse 95% 75% at 50% 38%, rgba(61, 36, 99, 0.42) 0%, transparent 62%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  padding-inline: 1.35rem;
  color: #fff;
  margin-inline: auto;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5e6bc;
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.85rem, 8.2vw, 5rem);
  line-height: 1.08;
  margin: 0 0 1.15rem;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: heroFade 1.15s var(--ease-out) 0.1s both;
}

.hero__lead {
  font-size: clamp(1.2rem, 2.75vw, 1.55rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1.25rem;
  max-width: 38rem;
  margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  animation: heroFade 1.15s var(--ease-out) 0.25s both;
}

.hero__trust {
  margin: 0 0 2.25rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  animation: heroFade 1.15s var(--ease-out) 0.32s both;
}

.hero__trust strong {
  color: #fff7d6;
  font-weight: 700;
}

.hero__trust-stars {
  display: inline-block;
  margin-right: 0.35rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.95em;
  vertical-align: middle;
}

.hero__urgent {
  margin: 0 0 2rem;
  max-width: 34rem;
  margin-inline: auto;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 248, 220, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  animation: heroFade 1.15s var(--ease-out) 0.38s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: heroFade 1.15s var(--ease-out) 0.45s both;
}

@media (max-width: 767px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */

.section {
  padding-block: var(--section-pad);
}

.section__header {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.15rem, 4.8vw, 3rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__subtitle {
  margin: 0;
  font-size: 1.15625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section--about {
  background: var(--bg-elevated);
}

.section--collections {
  background: linear-gradient(180deg, var(--bg) 0%, #f7f3ec 100%);
}

.section--featured {
  background: var(--bg);
}

.section--faq {
  background: var(--bg-elevated);
}

.section--steps {
  background: var(--bg-elevated);
}

.section--gallery {
  background: var(--bg);
}

.section--cta {
  padding-block: var(--section-pad);
}

/* ——— About ——— */

.about-block {
  max-width: 48rem;
  margin-inline: auto;
}

.about-block__header {
  margin-bottom: 1.75rem;
}

.about-block__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-block__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-block__content p {
  margin: 0 0 1.25rem;
  font-size: 1.09375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-block__content p:last-child {
  margin-bottom: 0;
}

.about-block__highlight {
  color: var(--royal);
  font-weight: 700;
}

.about-block__seo {
  font-size: 1.03125rem !important;
}

/* ——— Collections (jewellery) ——— */

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
}

.collection-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(34, 34, 34, 0.1);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.collection-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    185deg,
    rgba(8, 5, 16, 0.12) 0%,
    rgba(20, 12, 32, 0.38) 45%,
    rgba(45, 22, 68, 0.9) 100%
  );
  pointer-events: none;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out);
}

.collection-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.collection-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}

.collection-card__desc {
  margin: 0;
  font-size: 0.96875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.btn--collection {
  margin-top: 0.35rem;
  align-self: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(145deg, #e8c85c, var(--accent) 45%, #b8922a);
  color: #141414;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.btn--collection:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(34, 34, 34, 0.16);
  }

  .collection-card:hover .collection-card__media img {
    transform: scale(1.06);
  }
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
}

.btn--secondary-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--royal);
  border-radius: 999px;
  border: 2px solid rgba(61, 36, 99, 0.25);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn--secondary-inline:hover {
  background: var(--royal-soft);
  border-color: var(--royal);
}

/* ——— Featured products ——— */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(34, 34, 34, 0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.btn--product {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--royal);
  color: #fff !important;
  transition: transform 0.2s var(--ease-out), filter 0.2s ease;
}

.btn--product:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ——— Gallery CTA strip ——— */

.gallery-cta {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(61, 36, 99, 0.06) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1px solid rgba(34, 34, 34, 0.08);
  text-align: center;
}

.gallery-cta__text {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.gallery-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— FAQ ——— */

.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item__q {
  padding: 1.15rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--accent);
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(34, 34, 34, 0.06);
}

.faq-item__a p {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ——— Categories (legacy) ——— */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
}

.category-card {
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: 0 16px 48px rgba(34, 34, 34, 0.1);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.category-card__link {
  display: block;
  color: inherit;
  border-radius: inherit;
}

.category-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    185deg,
    rgba(8, 5, 16, 0.15) 0%,
    rgba(20, 12, 32, 0.35) 42%,
    rgba(45, 22, 68, 0.88) 100%
  );
  pointer-events: none;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out);
}

.category-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 2rem;
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}

.category-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(34, 34, 34, 0.16);
  }

  .category-card:hover .category-card__media img {
    transform: scale(1.07);
  }
}

/* ——— How it works ——— */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  padding-top: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid rgba(34, 34, 34, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }
}

.step__index {
  position: absolute;
  top: 0.15rem;
  left: 0.5rem;
  right: auto;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 11vw, 6.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(61, 36, 99, 0.07);
  pointer-events: none;
  user-select: none;
}

.step__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--royal);
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 1;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  position: relative;
  z-index: 1;
}

.step__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.03125rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ——— Gallery ——— */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  grid-auto-rows: 72px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: 0 10px 36px rgba(34, 34, 34, 0.09);
}

.gallery-item__media {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item--tall,
  .gallery-item--medium,
  .gallery-item--short {
    grid-row: auto;
  }

  .gallery-item__media {
    aspect-ratio: 3 / 4;
    min-height: 280px;
  }
}

@media (min-width: 768px) {
  .gallery-item--tall {
    grid-row: span 5;
  }

  .gallery-item--medium {
    grid-row: span 4;
  }

  .gallery-item--short {
    grid-row: span 3;
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover .gallery-item__media img {
    transform: scale(1.06);
  }
}

/* ——— CTA panel ——— */

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.75rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(61, 36, 99, 0.97) 0%, #1a0d2e 48%, #2d1a14 100%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 55%);
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.cta-panel__copy {
  max-width: 40rem;
}

.cta-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}

.cta-panel__text {
  margin: 0;
  font-size: 1.09375rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.9);
}

.cta-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 22rem;
}

.cta-panel .btn--lux,
.cta-panel .btn--lux-secondary {
  min-width: 0;
  width: 100%;
}

@media (min-width: 520px) {
  .cta-panel__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .cta-panel .btn--lux,
  .cta-panel .btn--lux-secondary {
    width: auto;
    min-width: min(100%, 240px);
  }
}

@media (max-width: 767px) {
  .cta-panel .btn--large {
    width: 100%;
    max-width: 100%;
  }
}

/* ——— Location ——— */

.section--location {
  background: var(--bg-elevated);
}

.location-grid {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 2rem;
  }
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  background: #e8e4dc;
}

.location-map__iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 0;
}

.location-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid rgba(34, 34, 34, 0.07);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card__label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location-card__address {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.location-card__hint {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

@media (min-width: 480px) {
  .location-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .location-card__actions .btn {
    flex: 1;
    min-width: 140px;
  }
}

/* ——— Google-style reviews marquee ——— */

.section--reviews {
  padding-bottom: calc(var(--section-pad) * 0.85);
  background: linear-gradient(180deg, var(--bg) 0%, #f3eee6 55%, var(--bg) 100%);
  overflow: hidden;
}

.reviews-intro {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.reviews-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.45rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: var(--shadow-sm);
}

.reviews-intro__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.reviews-intro__sub {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.reviews-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--royal);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.reviews-intro__cta:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.reviews-marquee {
  position: relative;
  margin-bottom: 1.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.reviews-marquee__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 6vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee__edge--left {
  left: 0;
  background: linear-gradient(90deg, #f3eee6 20%, transparent);
}

.reviews-marquee__edge--right {
  right: 0;
  background: linear-gradient(270deg, #f3eee6 20%, transparent);
}

.reviews-marquee__viewport {
  overflow: hidden;
  padding-block: 0.35rem;
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: reviewsMarquee 55s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-marquee__track,
.reviews-marquee:focus-within .reviews-marquee__track {
  animation-play-state: paused;
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 1.35rem;
  padding-inline: 0.675rem;
  flex-shrink: 0;
}

.review-card {
  flex: 0 0 min(340px, calc(100vw - 3rem));
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid rgba(34, 34, 34, 0.07);
  box-shadow: 0 12px 36px rgba(34, 34, 34, 0.08);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
  transform-style: preserve-3d;
}

.review-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-card__stars {
  display: flex;
  gap: 0.1rem;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.35));
}

.review-card__time {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.review-card__text {
  margin: 0 0 1rem;
  font-size: 1.015rem;
  line-height: 1.58;
  color: var(--text);
}

.review-card__author {
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--royal);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    box-shadow: 0 20px 48px rgba(61, 36, 99, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
  }
}

.reviews-disclaimer {
  margin: 0 auto;
  padding-inline: 1.25rem;
  max-width: 52rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
  }

  .reviews-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem;
  }

  .reviews-marquee__group:last-child {
    display: none;
  }

  .reviews-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .reviews-marquee__edge {
    display: none;
  }

  .review-card[data-tilt] {
    transform: none !important;
  }
}

/* ——— Footer (dark luxury — reference layout) ——— */

.site-footer--dark {
  background: var(--footer-dark);
  color: #fff;
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

.site-footer__col--brand {
  max-width: 26rem;
}

.site-footer__brandmark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
  color: inherit;
  transition: opacity 0.2s ease;
}

.site-footer__brandmark:hover {
  opacity: 0.92;
}

.site-footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.site-footer__brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-footer__brandline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: 0.02em;
}

.site-footer__brandsub {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer__desc {
  margin: 0;
  font-size: 0.96875rem;
  line-height: 1.7;
  color: var(--footer-muted);
}

.site-footer__heading {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__links a {
  font-size: 0.96875rem;
  font-weight: 500;
  color: var(--footer-muted);
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
  display: inline-block;
}

.site-footer__links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer__reach {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__reach li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96875rem;
  color: var(--footer-muted);
}

.site-footer__reach a {
  color: var(--footer-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer__reach a:hover {
  color: #fff;
}

.site-footer__reach-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 48px;
  min-height: 48px;
  line-height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: transform 0.25s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
}

.social-icon--dark svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-icon--dark:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
  color: #fff;
  box-shadow: none;
}

.social-icon--dark[aria-label="WhatsApp"]:hover {
  color: #aff5d0;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  flex: 1;
  min-width: min(100%, 280px);
}

@media (min-width: 768px) {
  .site-footer__copy {
    text-align: left;
  }
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
}

.site-footer__top:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.site-footer__top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ——— Floating WhatsApp ——— */

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1100;
  width: 3.875rem;
  height: 3.875rem;
  min-width: 56px;
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fe676, #25d366);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 0 0 3px rgba(212, 175, 55, 0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55), 0 0 0 3px rgba(212, 175, 55, 0.5);
}

.wa-float:active {
  transform: scale(0.98);
}

/* ——— Scroll reveal ——— */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
