/* =========================================================================
   Roxane Beauty Lab — public site styles
   Palette: rose gold #c9956c · blush pink #f5d6d6 · cream #fffaf7 · charcoal #2d2d2d
   Fonts:   Playfair Display (headings) · Lato (body)
   ========================================================================= */

:root {
  --rose-gold: #c9956c;
  --rose-gold-dark: #a9764f;
  --blush: #f5d6d6;
  --blush-soft: #fbe9e9;
  --cream: #fffaf7;
  --charcoal: #2d2d2d;
  --charcoal-soft: #5a5a5a;
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 12px 30px rgba(45, 45, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(201, 149, 108, 0.18);

  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1140px;
  --nav-height: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 15px 38px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.btn--primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(201, 149, 108, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(201, 149, 108, 0.45);
}
.btn--primary:active { transform: translateY(-1px); }

/* Instagram gradient button (nav, contact, footer) */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(220, 39, 67, 0.4);
}

/* Botón de TikTok (negro, junto al de Instagram) */
.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  background: #010101;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-tiktok:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4); }
.tt-icon { width: 17px; height: 17px; flex: 0 0 auto; display: inline-block; }
.contact__tiktok { justify-content: center; margin-top: 10px; }
.contact__item .tt-icon { width: 22px; height: 22px; }

/* Simple Instagram glyph drawn with CSS (no external icon) */
.ig-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
  flex: 0 0 auto;
}
.ig-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ig-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2.5px;
  height: 2.5px;
  background: currentColor;
  border-radius: 50%;
}

/* --------------------------- Navigation -------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 250, 247, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav__logo-mark { color: var(--rose-gold); font-size: 1.1rem; }
.nav__logo-text em { color: var(--rose-gold); font-style: italic; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  position: relative;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--charcoal);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--rose-gold); }
.nav__link:hover::after { width: 100%; }

.nav__instagram { font-size: 0.85rem; padding: 9px 18px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--blush-soft), transparent 60%),
    linear-gradient(180deg, var(--blush) 0%, var(--cream) 70%);
  overflow: hidden;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.blob--1 {
  width: 360px; height: 360px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.45), transparent 70%);
}
.blob--2 {
  width: 420px; height: 420px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(245, 214, 214, 0.8), transparent 70%);
  animation-delay: -5s;
}
.blob--3 {
  width: 240px; height: 240px;
  top: 30%; right: 18%;
  background: radial-gradient(circle, rgba(201, 149, 108, 0.25), transparent 70%);
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -28px) scale(1.07); }
}

.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--rose-gold-dark);
  margin: 14px 0 36px;
}
.hero__cta { font-size: 1.05rem; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(169, 118, 79, 0.5);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--rose-gold-dark);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(14px); }
}

/* ----------------------------- Sections -------------------------------- */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 14px;
}
.section__title { font-size: clamp(2rem, 5vw, 3rem); }
.section__sub {
  margin-top: 16px;
  color: var(--charcoal-soft);
  font-size: 1.08rem;
  font-weight: 300;
}

/* ----------------------------- Services -------------------------------- */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 149, 108, 0.12);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rose-gold), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--nails { background: linear-gradient(180deg, var(--white), var(--blush-soft)); }

.service-card__icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border-radius: 50%;
  background: var(--blush-soft);
  margin-bottom: 22px;
}
.service-card--nails .service-card__icon { background: var(--white); }
.service-card__title { font-size: 1.7rem; margin-bottom: 12px; }
.service-card__desc {
  color: var(--charcoal-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.service-card__list { display: grid; gap: 12px; }
.service-card__list li {
  position: relative;
  padding-left: 30px;
  font-weight: 400;
}
.service-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--rose-gold);
  font-size: 0.9rem;
}

/* ------------------------------ Gallery -------------------------------- */
.gallery { background: linear-gradient(180deg, var(--cream), var(--blush-soft)); }

/* Masonry via CSS columns */
.gallery__grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  animation: tileIn 0.6s var(--ease) forwards;
}
@keyframes tileIn { to { opacity: 1; transform: translateY(0); } }

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: auto;
  display: block;
}
.gallery__item--image { cursor: zoom-in; }
.gallery__item--image img { transition: transform 0.5s var(--ease); }
.gallery__item--image:hover img { transform: scale(1.05); }
.gallery__item--image::after {
  content: '🔍';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item--image:hover::after { opacity: 1; transform: scale(1); }

/* Shimmer placeholders */
.gallery__placeholder {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, #f3e7e1 30%, #fbf3ef 50%, #f3e7e1 70%);
  background-size: 220% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.gallery__placeholder:nth-child(3n + 1) { height: 240px; }
.gallery__placeholder:nth-child(3n + 2) { height: 320px; }
.gallery__placeholder:nth-child(3n + 3) { height: 200px; }
@keyframes shimmer {
  0% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}

/* Empty + error states */
.gallery__empty {
  column-span: all;
  text-align: center;
  padding: 70px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed rgba(201, 149, 108, 0.4);
  box-shadow: var(--shadow-sm);
}
.gallery__empty-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.gallery__empty h3 { font-size: 1.5rem; margin-bottom: 6px; }
.gallery__empty p { color: var(--charcoal-soft); font-weight: 300; }

/* ------------------------------ Contact -------------------------------- */
.contact { background: var(--cream); }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__info { display: grid; gap: 16px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 149, 108, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact__item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact__item-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-soft);
  border-radius: 50%;
}
.contact__item-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose-gold);
  font-weight: 700;
}
.contact__item-value { display: block; font-weight: 400; word-break: break-word; }
.contact__instagram { justify-content: center; margin-top: 6px; }

.contact__form {
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 149, 108, 0.1);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 13px 16px;
  border: 1.5px solid rgba(201, 149, 108, 0.25);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 4px rgba(201, 149, 108, 0.14);
}
.contact__submit { width: 100%; margin-top: 6px; }

/* ------------------------------ Footer --------------------------------- */
.footer { background: var(--charcoal); color: #f2eae4; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 36px;
}
.footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer__name em { color: var(--rose-gold); font-style: italic; }
.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--rose-gold);
  margin-top: 4px;
}
.footer__contact { display: grid; gap: 8px; }
.footer__contact a {
  color: #d9cfc8;
  transition: color 0.25s var(--ease);
  font-weight: 300;
}
.footer__contact a:hover { color: var(--white); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #b6aaa2;
  font-weight: 300;
}

/* ----------------------------- Lightbox -------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 24, 22, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.35s var(--ease);
}
@keyframes zoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__close {
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }

/* ------------------------------- Toast --------------------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 140%);
  z-index: 300;
  background: var(--charcoal);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  max-width: calc(100vw - 40px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast--success { background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark)); }
.toast--error { background: linear-gradient(135deg, #c0392b, #922b21); }

/* --------------------- Scroll reveal animation ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------- Responsive -------------------------------- */
@media (max-width: 980px) {
  .gallery__grid { column-count: 2; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - var(--nav-height));
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 32px 28px;
    background: var(--cream);
    box-shadow: -10px 0 40px rgba(45, 45, 45, 0.12);
    transform: translateX(110%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { width: 100%; padding: 12px 0; font-size: 1.1rem; }
  .nav__instagram { margin-top: 12px; }

  .services__grid { grid-template-columns: 1fr; gap: 24px; }
  .contact__layout { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .gallery__grid { column-count: 1; }
  .service-card { padding: 36px 28px; }
  .contact__form { padding: 28px 22px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

/* ------------------------------ Reseñas -------------------------------- */
.reviews { background: linear-gradient(180deg, var(--blush-soft), var(--cream)); }
.reviews__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.reviews__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 149, 108, 0.18);
}
.reviews__avg {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  line-height: 1;
}
.reviews__avg-stars { color: var(--rose-gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews__count { color: var(--charcoal-soft); font-weight: 300; width: 100%; font-size: 0.95rem; }

.reviews__list { display: grid; gap: 16px; }
.review {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 149, 108, 0.1);
  animation: tileIn 0.5s var(--ease) both;
}
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.review__name { font-weight: 700; }
.review__stars { color: var(--rose-gold); letter-spacing: 1px; font-size: 0.95rem; white-space: nowrap; }
.review__text { color: var(--charcoal-soft); font-weight: 300; word-break: break-word; }
.review__date { font-size: 0.78rem; color: var(--charcoal-soft); margin-top: 8px; }
.reviews__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--charcoal-soft);
  font-weight: 300;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed rgba(201, 149, 108, 0.4);
}

.reviews__form {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 149, 108, 0.1);
}
.reviews__form-title { font-size: 1.4rem; margin-bottom: 18px; }
.stars-input { display: flex; gap: 6px; }
.stars-input .star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #e7d8cd;
  padding: 0 2px;
  transition: transform 0.15s var(--ease), color 0.15s var(--ease);
}
.stars-input .star:hover { transform: scale(1.18); }
.stars-input .star.on { color: var(--rose-gold); }
.reviews__submit { width: 100%; margin-top: 6px; }
.reviews__note { font-size: 0.82rem; color: var(--charcoal-soft); text-align: center; margin-top: 12px; font-weight: 300; }

@media (max-width: 860px) {
  .reviews__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------------ Respect reduced-motion preference ------------------ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
