/* =========================================================
   Susan's Hair — Design System
   Paleta: Nude & Dourado
   ========================================================= */
   :root {
    --bg: #fbf7f2;
    --bg-alt: #f3ebe1;
    --surface: #ffffff;
    --ink: #2a2118;          /* marrom escuro */
    --ink-soft: #5a4a3a;
    --muted: #8a7a6a;
    --line: #e7dccd;
    --gold: #b89668;         /* dourado suave */
    --gold-deep: #946f3f;
    --gold-light: #d9bf95;
    --rose: #e8d4c0;
    --shadow-sm: 0 6px 20px rgba(74, 55, 35, 0.06);
    --shadow-md: 0 18px 50px rgba(74, 55, 35, 0.10);
    --shadow-lg: 0 30px 80px rgba(74, 55, 35, 0.18);
    --radius: 6px;
    --radius-lg: 18px;
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --container: 1240px;
    --ease: cubic-bezier(.22,.61,.36,1);
  }
  
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  #servicos,
  #galeria,
  #agendamento,
  #depoimentos,
  #contato,
  [id^="agendamento-service-"] {
    scroll-margin-top: 5.5rem;
  }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  
  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 1rem;
  }
  h2 em { font-style: italic; color: var(--gold-deep); }
  
  .eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.25rem;
  }
  
  /* ===== Sections ===== */
  section { padding: clamp(5rem, 10vw, 8rem) 1.5rem; }
  .section__head {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
  }
  .section__head p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
  }
  .section__head--light .eyebrow { color: var(--gold-light); }
  .section__head--light h2,
  .section__head--light p { color: #fff; }
  .section__head--light h2 em { color: var(--gold-light); }
  
  /* ===== Buttons ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .btn--primary {
    background: var(--ink);
    color: #fff;
  }
  .btn--primary:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn--outline:hover {
    background: var(--ink);
    color: #fff;
  }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn--lg { padding: 1.15rem 2.4rem; font-size: 0.9rem; }
  
  /* ===== Nav ===== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 1.5rem;
    transition: all 0.45s var(--ease);
    background: transparent;
  }
  .nav.is-scrolled {
    background: rgba(251, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.5rem;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  }
  .nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .nav__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    transition: color 0.4s var(--ease);
  }
  .nav.is-scrolled .nav__brand { color: var(--ink); }
  .nav__brand-mark {
    width: 38px; height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
  }
  .nav__brand-text {
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: 0.02em;
  }
  .nav__links {
    display: flex;
    gap: 2.2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.4s var(--ease);
  }
  .nav.is-scrolled .nav__links { color: var(--ink); }
  .nav__links a {
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
  }
  .nav__links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
  }
  .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav__cta {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
  }
  .nav.is-scrolled .nav__cta { color: var(--ink); border-color: var(--ink); }
  .nav.is-scrolled .nav__cta:hover { color: #fff; }
  
  .nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav__burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: #fff;
    transition: all 0.3s var(--ease);
  }
  .nav.is-scrolled .nav__burger span { background: var(--ink); }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  
  .nav__mobile {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg);
    padding: 6rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: var(--serif);
    font-size: 1.8rem;
    transform: translateY(-110%);
    transition: transform 0.5s var(--ease);
    z-index: 90;
    box-shadow: var(--shadow-md);
  }
  .nav__mobile.is-open { transform: translateY(0); }
  
  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
  }
  .hero__bg {
    position: absolute;
    inset: -10% 0;
    background: url("/images/templates/elegance/banner.jpg") center/cover no-repeat;
    will-change: transform;
    z-index: 0;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(20, 14, 8, 0.55) 0%,
      rgba(20, 14, 8, 0.35) 40%,
      rgba(20, 14, 8, 0.7) 100%);
    z-index: 1;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  .hero__eyebrow {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
  }
  .hero__title {
    font-family: var(--serif);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
    color: #fff;
  }
  .hero__title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }
  .reveal-line {
    display: block;
    overflow: hidden;
  }
  .reveal-line > span {
    display: inline-block;
    transform: translateY(110%);
  }
  .hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
  }
  .hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero .btn--outline { color: #fff; border-color: rgba(255,255,255,0.7); }
  .hero .btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
  .hero__scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .hero__scroll span {
    display: block;
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 0.6rem;
    position: relative;
    overflow: hidden;
  }
  .hero__scroll span::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--gold-light);
    animation: scrollPulse 2.2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0% { top: -100%; } 100% { top: 100%; }
  }
  
  /* ===== INTRO ===== */
  .intro { background: var(--bg); }
  .intro__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .intro__text h2 { margin-bottom: 1.5rem; }
  .intro__text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2rem; }
  .intro__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .intro__chips li {
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--ink-soft);
  }
  .intro__image { position: relative; }
  .intro__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
  }
  .intro__img-wrap img {
    width: 100%; height: 110%;
    object-fit: cover;
    will-change: transform;
  }
  .intro__image::before {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
  }
  
  /* ===== SERVIÇOS ===== */
  .services { background: var(--bg-alt); }
  .services__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .services__grid {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, calc((100% - 3rem) / 3)), 1fr));
    }
  }
  .service-card {
    background: var(--surface);
    padding: 2.2rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transform: translate(0px, 0px) !important;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
  }
  .service-card > * { position: relative; z-index: 1; }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
  }
  .service-card__icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--bg);
    display: grid; place-items: center;
    color: var(--gold-deep);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s var(--ease);
  }
  .service-card:hover .service-card__icon { background: var(--ink); color: var(--gold-light); }
  .service-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  .service-card__desc {
    color: var(--muted);
    font-size: 0.92rem;
    flex: 1;
  }
  .service-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0.5rem 0;
    font-size: 0.85rem;
  }
  .service-card__price {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--ink);
  }
  .service-card__time {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .service-card__btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  /* ===== GALERIA ===== */
  .gallery { background: var(--bg); }
  .gallery__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
  }
  /* Layouts adaptativos por contagem */
  .gallery__grid[data-count="1"] { grid-template-columns: 1fr; max-width: 800px; }
  .gallery__grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid[data-count="5"],
  .gallery__grid[data-count="6"] { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid[data-count="7"],
  .gallery__grid[data-count="8"] { grid-template-columns: repeat(4, 1fr); }
  
  .gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--bg-alt);
  }
  /* destaques ocasionais p/ ritmo visual */
  .gallery__grid[data-count="5"] .gallery__item:nth-child(1),
  .gallery__grid[data-count="6"] .gallery__item:nth-child(1),
  .gallery__grid[data-count="7"] .gallery__item:nth-child(1),
  .gallery__grid[data-count="8"] .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
  }
  .gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter 0.6s var(--ease);
    will-change: transform;
  }
  .gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,14,8,0.65) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
  }
  .gallery__item:hover img { transform: scale(1.08); }
  .gallery__item:hover::after { opacity: 1; }
  .gallery__item span {
    position: absolute;
    left: 1.2rem; bottom: 1rem;
    color: #fff;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease);
  }
  .gallery__item:hover span { opacity: 1; transform: translateY(0); }
  
  /* ===== AGENDAMENTO ===== */
  .booking {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: clamp(6rem, 12vw, 9rem) 1.5rem;
  }
  .booking__bg {
    position: absolute;
    inset: -10% 0;
    background: url("/images/templates/elegance/g6.jpg") center/cover no-repeat;
    will-change: transform;
  }
  .booking__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,14,8,0.85), rgba(20,14,8,0.92));
  }
  .booking__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
.booking__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(6px);
}
.booking__empty {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin: 0;
}
.elegance-booking-stepper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0 0.25rem;
  position: relative;
  gap: 0.25rem;
}
.elegance-booking-stepper::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.elegance-booking-stepper__item {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}
.elegance-booking-stepper__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.elegance-booking-stepper__label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  max-width: 5.5rem;
  transition: color 0.2s ease;
}
.elegance-booking-stepper__item.is-complete .elegance-booking-stepper__num,
.elegance-booking-stepper__item.is-active .elegance-booking-stepper__num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-light);
}
.elegance-booking-stepper__item.is-complete .elegance-booking-stepper__label,
.elegance-booking-stepper__item.is-active .elegance-booking-stepper__label {
  color: #fff;
}
.elegance-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.elegance-booking-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.elegance-booking-service-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.elegance-booking-service-card--cta {
  display: grid;
  cursor: default;
}
.elegance-booking-service-card__book {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.elegance-booking-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.elegance-booking-service-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
}
.elegance-booking-service-card__badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
}
.elegance-booking-service-card__desc {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}
.elegance-booking-service-card__price {
  margin-top: 0.75rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-light);
}
.elegance-booking-label,
.elegance-booking-detail-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.elegance-booking-date-input,
.elegance-booking-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
}
.elegance-booking-date-input:focus,
.elegance-booking-textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}
.elegance-booking-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.elegance-booking-slots-frame {
  display: block;
  min-height: 2rem;
}
.elegance-booking-slots-frame .pro-booking-slots-inner {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.elegance-booking-slots-frame .pro-booking-slots__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  text-transform: none;
  color: #fff;
  padding-bottom: 1rem;
}
.elegance-booking-slots-frame .pro-booking-slots__hint {
  color: rgba(255, 255, 255, 0.68);
}
.elegance-booking-slots-frame .pro-booking-slots__btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px;
}
.elegance-booking-slots-frame .pro-booking-slots__btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.elegance-booking-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.elegance-booking-details__full {
  grid-column: 1 / -1;
}
.elegance-booking-detail-value {
  color: #fff;
  font-size: 0.95rem;
  min-height: 1.2rem;
}
.elegance-booking-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.elegance-booking-auth-actions .btn {
  width: auto;
}
.elegance-booking-actions {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.elegance-booking-actions .btn {
  width: auto;
}
  .booking__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 3rem;
  }
  .booking-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem 1.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    cursor: pointer;
  }
  .booking-row:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-light);
    transform: translateX(6px);
  }
  .booking-row__name {
    font-family: var(--serif);
    font-size: 1.35rem;
  }
  .booking-row__time {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
  }
  .booking-row__price {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    white-space: nowrap;
  }
  .booking-row__arrow {
    color: var(--gold-light);
    transition: transform 0.3s var(--ease);
  }
  .booking-row:hover .booking-row__arrow { transform: translateX(4px); }
  .booking__cta { text-align: center; }
  .booking__cta .btn--primary {
    background: var(--gold);
    color: var(--ink);
  }
  .booking__cta .btn--primary:hover {
    background: var(--gold-light);
    color: var(--ink);
  }
  .booking__note {
    display: block;
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
  }
  
  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--bg-alt); }
  .testimonials__carousel {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
  }
  .testimonials__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .testimonials__track {
    display: flex;
    transition: transform 0.7s var(--ease);
  }
  .t-card {
    flex: 0 0 100%;
    padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
    background: var(--surface);
    text-align: center;
  }
  .t-card__quote {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 2rem;
    position: relative;
  }
  .t-card__quote::before {
    content: '“';
    display: block;
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
  }
  .t-card__stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
  }
  .t-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .t-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold-light);
    background: var(--bg-alt);
    color: var(--gold-deep);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .t-card__meta { text-align: left; }
  .t-card__name { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
  .t-card__role { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; }
  
  .t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    display: grid; place-items: center;
    color: var(--ink);
    transition: all 0.3s var(--ease);
    z-index: 2;
  }
  .t-arrow:hover { background: var(--ink); color: #fff; }
  .t-arrow--prev { left: -24px; }
  .t-arrow--next { right: -24px; }
  .testimonials__dots {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 2rem;
  }
  .testimonials__dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition: all 0.3s var(--ease);
  }
  .testimonials__dots button.is-active {
    background: var(--gold-deep);
    width: 28px;
    border-radius: 999px;
  }
  
  /* ===== CONTACT ===== */
  .contact { background: var(--bg); }
.contact__layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}
.contact__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
  .contact__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
  }
  .contact__card {
    padding: 2rem 1.8rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
  }
  .contact__card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
  }
  .contact__icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: grid; place-items: center;
    color: var(--gold-deep);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s var(--ease);
  }
  .contact__card:hover .contact__icon {
    background: var(--ink);
    color: var(--gold-light);
  }
  .contact__card h3 {
    font-size: 1.15rem;
    font-family: var(--serif);
  }
  .contact__card p {
    color: var(--muted);
    font-size: 0.95rem;
  }
.contact__map-column {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact__map-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 0.9rem;
}
.contact__map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--bg-alt);
}
.contact__map-frame--osm {
  padding: 0;
}
.contact__leaflet-root {
  width: 100%;
  min-height: 320px;
}
.contact__map-link-wrap {
  margin-top: 0.85rem;
}
.contact__map-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
}
.contact__map-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
  
  /* ===== FOOTER ===== */
  .footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 1.5rem;
  }
  .footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }
  .footer__brand {
    display: flex; align-items: center; gap: 0.6rem;
    color: #fff;
  }
  .footer__social { display: flex; gap: 1rem; }
  .footer__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: grid; place-items: center;
    transition: all 0.3s var(--ease);
  }
  .footer__social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  
  /* ===== Reveal base ===== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
  }
  .reveal.is-visible,
  .no-js .reveal {
    opacity: 1;
    transform: none;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
    .gallery__grid[data-count="7"],
    .gallery__grid[data-count="8"] { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid[data-count="5"] .gallery__item:nth-child(1),
    .gallery__grid[data-count="6"] .gallery__item:nth-child(1),
    .gallery__grid[data-count="7"] .gallery__item:nth-child(1),
    .gallery__grid[data-count="8"] .gallery__item:nth-child(1) {
      grid-column: span 2; grid-row: span 1;
    }
    .gallery__grid[data-count="5"],
    .gallery__grid[data-count="6"] { grid-template-columns: repeat(2, 1fr); }
  .elegance-booking-stepper {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .elegance-booking-stepper__item {
    flex: 0 0 auto;
    min-width: 3.4rem;
  }
  .elegance-booking-service-grid,
  .elegance-booking-details {
    grid-template-columns: 1fr;
  }
  .contact__layout {
    grid-template-columns: 1fr;
  }
  .contact__channels {
    grid-template-columns: 1fr;
  }
    .booking-row {
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "name price"
        "time arrow";
      gap: 0.5rem 1rem;
    }
    .booking-row__name { grid-area: name; }
    .booking-row__price { grid-area: price; text-align: right; }
    .booking-row__time { grid-area: time; }
    .booking-row__arrow { grid-area: arrow; justify-self: end; }
    .t-arrow--prev { left: 8px; }
    .t-arrow--next { right: 8px; }
  }
  @media (max-width: 540px) {
    section { padding: 4.5rem 1.25rem; }
    .hero__title { font-size: clamp(3.2rem, 18vw, 5rem); }
  }
  
  a:hover {
    text-decoration: none !important;
  }