/* =========================================================
   Aelux — Luxury Landing Page
   ========================================================= */

:root {
  --bg: #0f0f10;
  --bg-alt: #151517;
  --bg-light: #faf7f2;
  --bg-light-alt: #f2ede4;
  --gold: #b8976b;
  --gold-2: #d4b483;
  --gold-dark: #8a7148;
  --line: #2a2a2d;
  --line-light: #e2dcd0;
  --ink: #151517;
  --ink-soft: #2a2a2d;
  --muted: #7a7a80;
  --muted-dark: #b8b8bd;
  --white: #ffffff;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 2px;
  --radius-lg: 8px;
  --trans: 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: 0.01em; }
p { margin: 0; }

/* ========================= NAVBAR ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(226, 220, 208, 0.5);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 4px 30px -10px rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.4s ease;
}
/* Elegant logo underline */
.nav__logo::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav__logo:hover { color: var(--gold-dark); }
.nav__logo:hover::after { width: 100%; }

.nav__menu { display: flex; gap: 8px; align-items: center; }
.nav__menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 10px 18px;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: 2px;
}
/* Elegant background pill on hover */
.nav__menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 151, 107, 0.08) 0%, rgba(184, 151, 107, 0.03) 100%);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Bottom gold line */
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav__menu a:hover { color: var(--gold-dark); }
.nav__menu a:hover::before { opacity: 1; transform: scale(1); }
.nav__menu a:hover::after { transform: scaleX(1); }

/* Active state */
.nav__menu a.is-active {
  color: var(--gold-dark);
}
.nav__menu a.is-active::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* Decorative side elements */
.nav__logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo-wrap::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transition: width 0.5s ease, opacity 0.5s ease;
}
.nav__logo-wrap:hover::before {
  width: 50px;
  opacity: 0.8;
}

.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  padding: 0;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.nav__toggle:hover { background: rgba(184, 151, 107, 0.1); }
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav__toggle span:nth-child(2) { width: 16px; }
.nav__toggle span:nth-child(3) { width: 22px; }
.nav__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 22px; }

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--trans), background var(--trans), color var(--trans), box-shadow var(--trans);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 20px 44px; font-size: 13px; }

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  gap: 12px;
  box-shadow: 0 8px 30px -10px rgba(37, 211, 102, 0.55),
              0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.btn--whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}
.btn--whatsapp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 1;
}
.btn--whatsapp span {
  position: relative;
  z-index: 1;
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5b 0%, #0e6f63 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(37, 211, 102, 0.75),
              0 4px 10px rgba(0, 0, 0, 0.12);
}
.btn--whatsapp:hover::before { transform: translateX(100%); }

/* ========================= SECTION HEAD ========================= */
section { padding: 120px 32px; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 70px; }
.section-head__line {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
  position: relative;
}
.section-head__line::before,
.section-head__line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.section-head__line::before { left: -14px; }
.section-head__line::after { right: -14px; }
.section-head__title {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head__desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
}

.section-head--light .section-head__title { color: var(--white); }
.section-head--light .section-head__desc { color: var(--muted-dark); }

/* ========================= 1. HERO ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.7) 100%),
    radial-gradient(ellipse at 30% 20%, #2a2a2d 0%, #0f0f10 60%);
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
}
/* Corner diamond accents */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid rgba(184, 151, 107, 0.2);
  z-index: 2;
}
.hero::before {
  top: 90px; left: 40px;
  border-right: 0; border-bottom: 0;
  transform: rotate(-45deg);
}
.hero::after {
  bottom: 90px; right: 40px;
  border-left: 0; border-top: 0;
  transform: rotate(-45deg);
}
/* Gold accent line top-left corner */
.hero__corner-accent {
  position: absolute;
  top: 0; left: 0;
  width: 200px; height: 200px;
  z-index: 1;
  pointer-events: none;
}
.hero__corner-accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__corner-accent::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 60px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 140px 32px 80px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 32px;
  opacity: 0.95;
}
.hero__title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--white);
}
.hero__sub {
  color: #cfcfd4;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ========================= 2. CRAFT ========================= */
.craft {
  background: var(--bg-light);
  position: relative;
}
/* Decorative diamond separator */
.craft::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--bg-light);
  border: 1px solid var(--line-light);
  z-index: 2;
}
.craft__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border: 0;
}

.craft-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.craft-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.craft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
  border-color: var(--gold);
}
.craft-card:hover::before { opacity: 1; }

.craft-card__inner {
  padding: 50px 40px 48px;
  position: relative;
  z-index: 1;
}

.craft-card__icon {
  width: 64px; height: 64px;
  margin-bottom: 28px;
  color: var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.craft-card__icon svg {
  width: 48px; height: 48px;
}
.craft-card:hover .craft-card__icon {
  transform: scale(1.1);
}
/* Decorative circle behind icon */
.craft-card__icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.5s ease;
}
.craft-card:hover .craft-card__icon::before {
  opacity: 0.6;
  inset: -14px;
}

.craft-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(184, 151, 107, 0.08);
  font-weight: 600;
  line-height: 1;
  transition: color 0.5s ease;
}
.craft-card:hover .craft-card__num {
  color: rgba(184, 151, 107, 0.15);
}

.craft-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--ink);
  transition: color 0.4s ease;
}
.craft-card:hover h3 { color: var(--gold-dark); }

.craft-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Bottom accent line on hover */
.craft-card__accent {
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.craft-card:hover .craft-card__accent { width: 80%; }

/* Corner decorative element */
.craft-card__inner::after {
  content: "";
  position: absolute;
  bottom: 16px; right: 16px;
  width: 24px; height: 24px;
  border-right: 1px solid rgba(184, 151, 107, 0.2);
  border-bottom: 1px solid rgba(184, 151, 107, 0.2);
  transition: all 0.5s ease;
}
.craft-card:hover .craft-card__inner::after {
  width: 40px; height: 40px;
  border-color: var(--gold);
}

/* ========================= 3. LINEUP / MARQUEE ========================= */
.lineup {
  background: linear-gradient(180deg, #0f0f10 0%, #1a1a1c 100%);
  color: var(--white);
  padding-top: 0;
}

.lineup__marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  border-bottom: 1px solid #2a2a2d;
  margin-bottom: 70px;
}
.lineup__marquee-wrap::before,
.lineup__marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.lineup__marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0f0f10 0%, transparent 100%);
}
.lineup__marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #0f0f10 0%, transparent 100%);
}
.lineup__marquee-inner {
  display: flex;
  overflow: hidden;
}
.lineup__marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  flex-shrink: 0;
}
.lineup__marquee-track span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-2);
  letter-spacing: 0.1em;
  padding: 0 22px;
  flex-shrink: 0;
}
.lineup__marquee-track .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  padding: 0;
  flex-shrink: 0;
  opacity: 0.6;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lineup__marquee-wrap:hover .lineup__marquee-track {
  animation-play-state: paused;
}

.lineup__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 34px;
  margin-top: 18px;
}
.lineup__brands span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.lineup__tabs {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lineup-tab {
  background: transparent;
  border: 1px solid rgba(184, 151, 107, 0.35);
  color: var(--muted-dark);
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: var(--sans);
  transition: all var(--trans);
}
.lineup-tab:hover { color: var(--white); border-color: var(--gold); }
.lineup-tab.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.lineup__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #1c1c1e;
  border: 1px solid #2a2a2d;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans);
  border-radius: var(--radius);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.product-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #252527;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 20px 22px 24px; }
.product-card__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.product-card__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.product-card__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--trans);
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}
.product-card__cta img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.product-card__cta:hover { color: #fff; background: linear-gradient(135deg, #25D366, #128C7E); border-color: transparent; }

/* ========================= 4. SERVICES ========================= */
.services {
  background: var(--bg-light-alt);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0, transparent 40px,
      rgba(184, 151, 107, 0.025) 40px, rgba(184, 151, 107, 0.025) 80px
    );
  pointer-events: none;
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  padding: 54px 48px;
  border: 1px solid var(--line-light);
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
/* Corner decoration accent */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 10px; right: 10px;
  width: 30px; height: 30px;
  border-right: 1px solid rgba(184, 151, 107, 0.3);
  border-bottom: 1px solid rgba(184, 151, 107, 0.3);
  transition: all var(--trans);
}
.service-card:hover::after {
  width: 50px; height: 50px;
  border-color: var(--gold);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -30px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

/* ========================= 5. REVIEWS ========================= */
.reviews {
  background: #151517;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* Subtle diagonal texture */
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

/* Auto-scrolling gallery */
.reviews__shots-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
.reviews__shots {
  display: flex;
  gap: 20px;
  animation: reviews-scroll 30s linear infinite;
  padding: 10px 0;
}
.reviews__shots:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reviews__shots img {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #2a2a2d;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
/* Golden frame on hover */
.reviews__shots img::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 0.4s ease;
}
.reviews__shots img:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6);
  z-index: 2;
}
.reviews__shots img:hover::before { border-color: var(--gold-2); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  backdrop-filter: blur(8px);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  line-height: 1;
  border-radius: 4px;
}
.lightbox__close {
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__prev, .lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.reviews__list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reviews__list blockquote {
  background: #1c1c1e;
  border: 1px solid #2a2a2d;
  border-left: 2px solid var(--gold);
  padding: 32px 28px;
  margin: 0;
  font-size: 14.5px;
  color: #d8d8dc;
  line-height: 1.8;
  font-style: italic;
  font-family: var(--serif);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}
/* Large decorative quote mark */
.reviews__list blockquote::before {
  content: "\201C";
  position: absolute;
  top: -12px; left: 20px;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.15;
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
}
.reviews__list blockquote:hover { transform: translateY(-3px); }
.reviews__list blockquote footer {
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ========================= 6. CTA ========================= */
.cta {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-alt) 100%);
  padding: 140px 32px;
  position: relative;
}
/* Decorative border frame */
.cta::before, .cta::after {
  content: "";
  position: absolute;
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.cta::before {
  top: 60px; left: 40px;
  border-right: 0; border-bottom: 0;
}
.cta::after {
  bottom: 60px; right: 40px;
  border-left: 0; border-top: 0;
}
.cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.cta__sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta__stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-light);
  padding-top: 60px;
}
.cta__stats > div {
  text-align: center;
  padding: 0 16px;
}
.cta__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--gold-dark);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
}
.cta__stats span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ========================= FOOTER ========================= */
.footer {
  background: var(--bg);
  color: var(--muted-dark);
  padding: 52px 32px;
  text-align: center;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__links a { transition: color var(--trans); color: var(--muted-dark); }
.footer__links a:hover { color: var(--gold-2); }
.footer__links span { color: #3a3a3d; }
.footer__copy {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5d;
  font-family: var(--serif);
}

/* ========================= FLOATING WA ========================= */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.65),
              0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 40;
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse-wa 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.float-wa img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform var(--trans);
}
.float-wa:hover { transform: scale(1.1); }
.float-wa:hover img { transform: scale(1.05); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.65),
                          0 4px 10px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 10px 44px -2px rgba(37, 211, 102, 0.9),
                         0 4px 14px rgba(0, 0, 0, 0.15); }
}

/* ========================= ANIMATIONS ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 980px) {
  section { padding: 90px 24px; }
  .section-head { margin-bottom: 54px; }
  .nav__inner { padding: 0 24px; height: 70px; }
  .nav__menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-bottom: 1px solid var(--line-light);
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 12px;
    text-align: center;
  }
  .nav__menu a::before { display: none; }
  .nav__menu a::after { display: none; }
  .nav__menu a:hover { background: rgba(184, 151, 107, 0.05); }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__toggle { display: flex; }
  .nav__logo-wrap::before { display: none; }

  .craft__grid { grid-template-columns: 1fr; gap: 20px; }
  .craft-card { border-right: 0; }
  .craft::after { display: none; }
  .craft-card__inner { padding: 40px 32px 44px; }
  .craft-card__num { font-size: 40px; }

  .lineup { padding-top: 0; }
  .lineup__marquee-wrap { margin-bottom: 50px; }
  .lineup__marquee-track span { font-size: 16px; padding: 0 16px; }
  .lineup__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 30px; }
  .service-card::before { left: 30px; right: 30px; }
  .service-card::after { display: none; }

  .reviews__shots-wrap { margin-bottom: 50px; }
  .reviews__shots img { width: 200px; height: 200px; }
  .reviews__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }

  .cta { padding: 90px 24px; }
  .cta::before, .cta::after { display: none; }
  .cta__stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; margin-top: 60px; padding-top: 44px; }
  .cta__stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); padding-bottom: 22px; }

  .hero::before, .hero::after { display: none; }
  .hero__inner { padding: 120px 24px 60px; }
  .hero__sub { font-size: 15px; }
  .btn--lg { padding: 18px 32px; font-size: 12px; }
}
@media (max-width: 560px) {
  .nav__logo { font-size: 24px; }
  .lineup__grid { grid-template-columns: 1fr; }
  .reviews__shots { grid-template-columns: repeat(3, 1fr); }
  .lineup-tab { padding: 10px 16px; font-size: 10px; }
  .cta__stats { grid-template-columns: 1fr; }
  .cta__stats > div { border-bottom: 1px solid var(--line-light); padding-bottom: 18px; margin-bottom: 14px; }
  .float-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .float-wa img { width: 28px; height: 28px; }
}
