/* =========================================================
   Salón de Belleza Aurora — Premium Professional Styles
   ========================================================= */

:root {
  --bg: #f8f5f0;
  --bg-warm: #f0ebe3;
  --bg-dark: #0c0a09;
  --bg-card: #ffffff;
  --gold: #b8954a;
  --gold-light: #d4b56a;
  --gold-dark: #8a6d2f;
  --rose: #d4b8b0;
  --rose-soft: #ede4df;
  --text: #1a1614;
  --text-muted: #6e635a;
  --text-light: #f5f1ec;
  --border: rgba(184, 149, 74, 0.14);
  --border-strong: rgba(184, 149, 74, 0.28);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --shadow-xs: 0 1px 3px rgba(12, 10, 9, 0.04);
  --shadow-sm: 0 4px 20px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 10, 9, 0.1);
  --shadow-lg: 0 24px 64px rgba(12, 10, 9, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.4s var(--ease);
  --topbar-height: 38px;
  --header-height: 76px;
  --nav-total: calc(var(--topbar-height) + var(--header-height));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-total);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: clamp(80px, 10vw, 130px) 0;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader__inner {
  text-align: center;
}

.preloader__mark {
  display: block;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  animation: pulse 1.5s ease infinite;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.preloader__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  animation: lineGrow 1.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes lineGrow {
  0%, 100% { width: 30px; opacity: 0.4; }
  50% { width: 80px; opacity: 1; }
}

/* ---- Topbar ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
}

.topbar__item:hover { color: var(--gold-light); }

.topbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.topbar__social {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.topbar__social:hover { color: var(--gold-light); }

.topbar__booksy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(184, 149, 74, 0.15);
  border: 1px solid rgba(184, 149, 74, 0.3);
  border-radius: 50px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.topbar__booksy:hover {
  background: var(--gold);
  color: #fff;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(184, 149, 74, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184, 149, 74, 0.45);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--gold-dark);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--bg);
  transform: translateY(-3px);
  color: var(--gold-dark);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.btn--large {
  padding: 18px 42px;
  font-size: 0.82rem;
}

/* ---- Section headers ---- */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.8;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__header--light .section__title { color: var(--text-light); }
.section__header--light .section__tag { color: var(--gold-light); }
.section__header--light .section__tag::before { background: var(--gold-light); }

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: var(--shadow-xs);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.nav__logo-mark {
  font-size: 1.4rem;
  color: var(--gold);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-text strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__logo-text small {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__cta {
  padding: 11px 26px;
  background: var(--bg-dark);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  padding: 12px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}

.nav__toggle.active span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav__toggle.active span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-total);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=85') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.65) 45%, rgba(12, 10, 9, 0.35) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 149, 74, 0.15) 0%, transparent 50%);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 500;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__panel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
}

.hero__panel-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__rating-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.hero__rating-source {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.hero__panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__highlights li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero__highlights strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  min-width: 110px;
}

.hero__highlights span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__panel-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 181, 106, 0.4);
  padding-bottom: 4px;
}

.hero__panel-link:hover {
  color: #fff;
  border-color: #fff;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero__scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--gold-light);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(32px); opacity: 0; }
}

/* ---- Marquee ---- */
.marquee {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  font-style: italic;
}

.marquee__dot {
  color: var(--gold) !important;
  font-style: normal !important;
  font-size: 0.8rem !important;
}

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

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about__image-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow-md);
}

.about__image-secondary img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--bg-card);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-left: 3px solid var(--gold);
}

.about__badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.about__lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__metric-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about__metric-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.about__metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ---- Experience ---- */
.experience {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 149, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experience__card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.experience__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 149, 74, 0.25);
  transform: translateY(-4px);
}

.experience__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: rgba(184, 149, 74, 0.25);
  line-height: 1;
  margin-bottom: 20px;
}

.experience__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 12px;
}

.experience__card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ---- Services ---- */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.services__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.services__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.services__filter {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}

.services__filter:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.services__filter.active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}

.services__count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.hidden { display: none; }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  background: rgba(184, 149, 74, 0.08);
  border-radius: 50px;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose);
  font-weight: 600;
}

.service-card__featured {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 50px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__list {
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-card__list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 7px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card__list li:last-child { border-bottom: none; }

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--transition);
  align-self: flex-start;
}

.service-card__btn svg {
  transition: transform var(--transition);
}

.service-card__btn:hover {
  color: var(--gold);
  gap: 12px;
}

.service-card__btn:hover svg { transform: translateX(4px); }

.services__cta {
  margin-top: 56px;
}

.services__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 52px);
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  color: var(--text-light);
}

.services__cta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.services__cta-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 8px;
}

.services__cta-inner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Gallery ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(12, 10, 9, 0.75));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover figcaption { transform: translateY(0); }

.gallery__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--text);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.gallery__item:hover .gallery__zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 9, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.gallery__cta {
  text-align: center;
  margin-top: 40px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.gallery__cta a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--border-strong);
}

.gallery__cta a:hover { color: var(--gold); }

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--bg-dark) 0%, #1a1512 40%, var(--gold-dark) 100%);
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8954a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-banner__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 440px;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Reviews ---- */
.reviews {
  background: var(--bg-warm);
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.reviews__scores {
  display: flex;
  gap: 32px;
}

.reviews__score {
  text-align: center;
  padding: 20px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.reviews__score-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.reviews__score-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
  display: block;
}

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

.review-card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.review-card__header strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.review-card__source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact__intro {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.contact__card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.contact__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-soft);
  border-radius: 12px;
  color: var(--gold-dark);
}

.contact__card strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact__card a {
  color: var(--text-muted);
}

.contact__card a:hover { color: var(--gold); }

.contact__map {
  position: relative;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.contact__map-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-card);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  color: var(--text);
}

.contact__map-link:hover {
  background: var(--bg-dark);
  color: #fff;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.footer__col strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.footer__col a,
.footer__col span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  padding-top: 28px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ---- FAB ---- */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(184, 149, 74, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.fab:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(184, 149, 74, 0.55);
  color: #fff;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__panel { max-width: 420px; margin: 0 auto; }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item--wide,
  .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery__item { height: 260px; }

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

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

@media (max-width: 768px) {
  .topbar__left span:not(.topbar__sep):last-of-type,
  .topbar__social { display: none; }

  .section { padding: 72px 0; }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--nav-total);
    left: 0;
    right: 0;
    background: rgba(248, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 28px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-main img { height: 380px; }
  .about__image-secondary { display: none; }
  .about__badge { left: 16px; top: 16px; }
  .about__metrics { grid-template-columns: 1fr; gap: 20px; }

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

  .services__grid { grid-template-columns: 1fr; }
  .services__cta-inner { flex-direction: column; text-align: center; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { height: 240px; }

  .reviews__header { flex-direction: column; align-items: flex-start; }
  .reviews__scores { width: 100%; justify-content: center; }

  .contact__cards { grid-template-columns: 1fr; }
  .contact__map { height: 360px; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { width: 100%; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .fab__text { display: none; }
  .fab { padding: 18px; border-radius: 50%; }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .hero__highlights strong { min-width: 90px; font-size: 1.1rem; }
}
